You can download MCDungeon directly from the Github repository. This requires Python and dependencies. (see below)
Since MCDungeon uses submodules, the best way to get it is to clone the repository recursively:
$ git clone --recursive https://github.com/orphu/mcdungeon.git
If you’d like to play around with the development version, you can switch to the development branch:
$ git checkout development
$ git submodule sync
$ git submodule update
If you’d rather not mess with git, you can also download packaged archives of MCDungeon from the Github releases page:
If you already have Python installed, this is the recommended version.
The standalone versions contain everything you need to run MCDungeon without having to mess with installing Python.
launcher.bat
to start interactive mode, or see command line methods below.launcher.command
to start interactive mode, or see command line methods below.Basic help for all command line options is available via the --help
switch:
$ ./mcdungeon.py --help
Help for a sub-command::
$ ./mcdungeon.py delete --help
Interactive mode will prompt you for the basics. You can add, list, regenerate, or delete dungeons or treasure hunts from this mode with basic options. For more advanced usage, you’ll want to call these subcommands directly:
$ ./mcdungeon.py interactive
Add mode will add dungeons to a map. For example, add a single 8 x 8 chunk dungeon with four levels to a map named myworld:
$ ./mcdungeon.py add myworld 8 8 4 --write
Add three dungeons with random sizes:
$ ./mcdungeon.py add myworld 4-8 4-8 2-5 --write
New in version 0.14.0.
Addth will add one or more treasure hunts to the map. You can chose the maximum number of steps and distance between landmarks. For example, add one hunt of a maximum of five steps, where the landmarks are 5-10 chunks apart:
$ ./mcdungeon.py addth myworld 5-10 5 --write
List all known dungeons and treasure hunts in a map and their locations:
$ ./mcdungeon.py list myworld
Delete all the chunks that contain a specific dungeon and let Minecraft regenerate the chunks:
$ ./mcdungeon.py delete myworld -d 176 -112
New in version 0.14.0.
Generate point of interest data for Minecraft Overviewer:
$ ./mcdungeon.py genpoi myworld -outputdir "/path/to/my/overviewer/maps"