Update Dungeon Config authored by MarcatoSound's avatar MarcatoSound
...@@ -13,6 +13,13 @@ Here is current default config provided by the plugin for your reference. _This ...@@ -13,6 +13,13 @@ Here is current default config provided by the plugin for your reference. _This
General: General:
# Do not change! Used to track the config version when major updates happen. # Do not change! Used to track the config version when major updates happen.
Version: 1 Version: 1
DungeonType: CLASSIC
# The generator to use for chunks in this dungeon. These can also be provided by other plugins.
# natural = Default superflat.
# mythicdungeons:void = Classic void generator, provided by Mythic Dungeons.
# mythicdungeons:block.[BLOCKTYPE] = Generates entire chunks of a specific block. (For example, mythicdungeons:block.STONE would generate chunks at full height of all stone.)
ChunkGenerator: natural
# The pretty name of this dungeon that'll appear when it's finished and started.
DisplayName: "&bA Dungeon" DisplayName: "&bA Dungeon"
# Whether to show the display name above in a title message to the players when the dungeon begins. # Whether to show the display name above in a title message to the players when the dungeon begins.
ShowTitleOnStart: false ShowTitleOnStart: false
...@@ -58,6 +65,8 @@ General: ...@@ -58,6 +65,8 @@ General:
TimeLimit: 0 TimeLimit: 0
# How long in ticks to wait before cleaning up a dungeon when all players have left it. 0 will clean up the dungeon instantly. # How long in ticks to wait before cleaning up a dungeon when all players have left it. 0 will clean up the dungeon instantly.
CleanupDelay: 0 CleanupDelay: 0
# The maximum number of players that can be in this dungeon. Used by the CONTINUOUS dungeon type.
MaxPlayers: 0
# When set to 'true', when players take items from reward functions, they'll be put in a rewards list. # When set to 'true', when players take items from reward functions, they'll be put in a rewards list.
# Upon finishing the dungeon, the players will be given the rewards. # Upon finishing the dungeon, the players will be given the rewards.
... ...
......