AmbleLabsAmbleLabs Wiki
Addons & Datapacks

Unlockable Dimensions

You can use this if you want to make certain dimensions locked behind items.

  1. Create a new .json file in the path below.

data/namespace/locked_dimension/dimension_name.json

  1. Inside this new .json file, type the following:
{
 "dimension": "dimension:id",
 "stack": "item stack codec"
}
  1. Replace dimension:id with whatever dimension you want to lock (make sure it is the exact dimension id, you can check by doing /execute in in 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
  }
}