2.7 KiB
A Minecraft Map Editor... that runs in-game!
- With selections, schematics, copy and paste, brushes, and scripting!
- Use it in creative, survival in single player or on your server.
- Use it on your Minecraft server to fix grieving and mistakes.
Java Edition required. WorldEdit is compatible with Forge, Fabric, Bukkit, Spigot, Paper, and Sponge.
Download WorldEdit
This place contains the Java code for WorldEdit, but if you want to just use WorldEdit, get the mod or plugin from these pages:
- For the mod: https://www.curseforge.com/minecraft/mc-mods/worldedit
- For the server plugin: https://dev.bukkit.org/projects/worldedit
Edit the Code
Want to add new features to WorldEdit yourself? Follow these somewhat-easy steps:
- Download WorldEdit's source code and put it somewhere. We recommend you use something called Git, but you can also just download a .zip file.
- Install the Java Development Kit (JDK) v8 and restart your computer for safe measure.
- Open terminal / command prompt / bash and navigate to the directory where you put the source code:
- Run one of the following commands:
- Mac OS X / Linux:
./gradlew :worldedit-fabric:runClient
- Windows - Command Prompt:
gradlew :worldedit-fabric:runClient
- Windows - PowerShell:
.\gradlew :worldedit-fabric:runClient
- Mac OS X / Linux:
That's it. 🎉 It takes a long time to compile all the code for WorldEdit. If it succeeds, the Minecraft game will open and you can create a single player world with WorldEdit.
⚠ However, if you get a Type javax.tools.JavaCompiler not present
error, you need to edit your environmental variables and add a new JAVA_HOME
variable. The value of the variable needs to be the path to where JDK 8 was installed.
For additional information about compiling WorldEdit, see COMPILING.md.
Submitting Your Changes
We happily accept contributions, especially through pull requests on GitHub. Submissions must be licensed under the GNU General Public License v3.
Please read CONTRIBUTING.md for important guidelines to follow.