Disclaimer: This plugin is not affiliated with Mojang or the original Aether mod in any way. Please visit https://www.curseforge.com/minecraft/mc-mods/aether for the original mod.
This plugin is still in early development. Expect bugs and incomplete features including items, blocks, and mobs.
The plugins is a basic recreation of the popular Minecraft Java Edition mod, The Aether, but for Minecraft Bedrock Edition. It adds a new dimension, the Aether, which is a sky-themed world filled with new blocks, items, and mobs.
- New Dimension: The Aether, a sky-themed world with floating islands and unique terrain.
- New Blocks: Including holystone, skyroot wood, and zanite ore.
- Download the latest release from the releases tab.
- Place the
.pluginfile into your server'spluginsdirectory. - Restart your server to load the plugin.
To generate the Aether dimension, you must modify your world settings to include the Aether generator. This can done by modifying your world's properties.json file.
{
"identifier": "default",
"seed": 4125897965,
"gamemode": "survival",
"difficulty": "normal",
"saveInterval": 5,
"dimensions": [
{
"identifier": "overworld",
"type": 0,
"generator": "superflat",
"viewDistance": 20,
"simulationDistance": 10,
"spawnPosition": [0, -60, 0]
},
{
"identifier": "aether", // Dimension name
"type": 0,
"generator": "the-aether", // Generator name
"viewDistance": 20,
"simulationDistance": 10,
"spawnPosition": [-120, 80, 330]
}
],
"gamerules": { /** Game Rules... */ }
}