-
Notifications
You must be signed in to change notification settings - Fork 10
Home
You need to figure out the dimension id. You can find it in your F3 screen or in the dimensions suggestion list of the /execute in <dimension> command.
You also need to figure a list of all ores that you want to be hidden (you may be able to use the #c:ores block tag if the ores are in that tag). If you want to use engine mode 2/3 you also have to figure out all common blocks used underground and add them to the replacementBlocks list to make sure they get replaced with fake ores!
The aether dimension id is aether:the_aether, which results in the following configuration.
["aether:the_aether"]
enabled = true
engineMode = 3
maxBlockHeight = 128
updateRadius = 2
lavaObscures = true
hiddenBlocks = ["aether:ambrosium_ore", "aether:zanite_ore", "aether:gravitite_ore"]
replacementBlocks = ["aether:holystone", "aether:aether_dirt", "aether:icestone"]Example the aether config section
If you want to switch the default nether engine mode you need to change engineMode and add replacementBlocks.
[the_nether]
enabled = true
engineMode = 3
maxBlockHeight = 128
updateRadius = 2
lavaObscures = true
hiddenBlocks = ["ancient_debris", "nether_quartz_ore", "nether_gold_ore", "gold_block", "gilded_blackstone"]
replacementBlocks = ["basalt", "blackstone", "gravel", "netherrack", "soul_sand", "soul_soil"]Example nether engine mode 3 config section
This is most likely caused by an incorrect installation. You can check if antixray loaded by looking for the antixray.toml file in your configs folder. If the file doesn't exist after starting your client / server you didn't correctly install the mod.
Make sure you have:
- Installed an appropriate mod loader: fabric or neoforge
- Downloaded the correct mod version (make sure the supported game version matches your minecraft version) for the correct loader. Fabric won't work on neoforge and vice-versa. Click here to go to fabric / neoforge download page.
- Copied the jar into the correct folder (
modsfolder) of your server directory / minecraft instance
Make sure to read the next section if you think it doesn't work in the nether!
AntiXray in the nether uses engine mode 1 by default, which works different to engine mode 3 (default in the overworld). It will only hide ores that aren't next to air, but not add any fake ores to distract players. Check out switching-nether-engine-mode for details on switching the nether engine mode.