Welcome to the Access Denied Wiki

Learn how to gate dimensions, customize entry criteria, and control dimension access with this powerful Minecraft mod!

Get Started

Creating the Resource Pack

This mod requires a Data Pack to work! To add custom messages, you’ll also need a Resource Pack.

root
  ﹂pack.mcmeta
  ﹂assets
      ﹂accessdenied
          ﹂lang
              ﹂en_us.json
        
{ "accessdenied.message.version.text": "%s | %s", "accessdenied.warning.text" : "§c§oYou are forbidden from entering this realm...", "accessdenied.requirements.text" : "§6Requirements" }

Creating the Data Pack

Follow the structure below to create a Data Pack for restricting dimension access:

root
  ﹂pack.mcmeta
  ﹂data
      ﹂accessdenied
          ﹂dimensions
              ﹂name.json
        

The name.json file can be named after the dimension you're restricting.

{ "dimension": "minecraft:the_nether", "disabled": true, "messages": [ "You shall not pass!", "Access to this dimension is forbidden!" ] }

Examples

Kill 100 mobs to access The End:

{ "dimension": "minecraft:the_end", "requirements": { "mobs_killed": 100 } }

Disable access to The Nether:

{ "dimension": "minecraft:the_nether", "disabled": true }