Addons & Datapacks
Unlockable Dimensions
You can use this if you want to make certain dimensions locked behind items.
-
Create a new
.jsonfile in the path below. Note, that it must be a valid datapack.data/[namespace]/locked_dimension/[dimension_name].json -
Inside this new
.jsonfile, type the following:
{
"dimension": "dimension:id",
"stack": // item stack codec
}- Replace
dimension:idwith whatever dimension you want to lock (make sure it is the exact dimension id, you can check by doing/execute inin the in-game chat). The"stack"will be the item you use on the telepathic circuit control to unlock the defined dimension!
Example:
{
"dimension": "minecraft:the_nether",
"stack": {
"id": "minecraft:stick",
"Count": 1
}
}