A spigot plugin for easily creating and customizing mazes in Minecraft. With a WorldEdit like wand you can visually select areas to build a maze in. This way you have full control over the shape (and dimensions) of your mazes!
For downloads & more information: https://www.spigotmc.org/resources/tangled-maze.59284/
- Building mazes from rectangles, circles and triangles
- Maze generation that adapts to height differences in the terrain
- Highly customizable maze settings for sizes of paths, walls and composition of building blocks
- Ability to set multiple entrances and exits for a maze
- Possibility to add a roof and change the floor of the maze
- Maze solving feature to see the path connecting all exits in a maze
To compile the jar directly to the server/plugins folder, the pom.xml makes use of a user specific maven property defined in ~/.m2/settings.xml:
<settings>
<profiles>
<profile>
<id>local-build</id>
<properties>
<plugin.output.dir>path/to/server/plugins</plugin.output.dir>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>local-build</activeProfile>
</activeProfiles>
</settings>To be able to compile the plugin with the LootChest dependency, you need to install the LootChest jar file in your local maven repository:
mvn install:install-file \
-Dfile=path/to/lootchest.jar \
-DgroupId=fr.black_eyes.lootchest \
-DartifactId=LootChest \
-Dversion=X.X.X \
-Dpackaging=jar \
-DgeneratePom=truemvn clean package to generate plugin jar in previously set directory