Advertisement
Guest User

config.yml

a guest
Jan 9th, 2014
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.53 KB | None | 0 0
  1. # MobManager v3.0.1 by Michael McKnight (ShadowDog007)
  2. # http://dev.bukkit.org/bukkit-mods/mobmanager/
  3. # Global Config
  4. #
  5. # Valid EntityTypes:
  6. # CREEPER, PIG, MUSHROOM_COW, CAVE_SPIDER, SKELETON, WITHER, PLAYER,
  7. # SKELETON_WITHER, PIG_ZOMBIE, CHICKEN, MAGMA_CUBE, HORSE, ENDERMAN, SQUID,
  8. # OCELOT, BLAZE, ENDER_DRAGON, COW, UNKNOWN, GHAST, IRON_GOLEM, VILLAGER, SPIDER,
  9. # WOLF, SILVERFISH, SLIME, GIANT, ZOMBIE, SNOWMAN, BAT, SHEEP, WITCH
  10. #
  11. # #######################################################################
  12. # EnableLimiter
  13. # #######################################################################
  14. # Enables the limiter component of MobManager
  15. #
  16. # MobManager's Limiter aims to reduce the number of mobs which spawn
  17. #      in places where players will never come across them.
  18. #      e.g. far below players in caves.
  19. #      
  20. # The Limiter is capable of massively reducing the number of mobs on
  21. #     your server without reducing the number of mobs which a player
  22. #     gets the chance to interact with.
  23. #     (Do your setup right and you can have less mobs in total, and
  24. #     have your players think there are actually more)
  25. #
  26. # #######################################################################
  27. # EnableAbilities
  28. # #######################################################################
  29. # Enables the abilities component of MobManager
  30. #
  31. # MobManager's Abilities aims to allow you to fully customize the
  32. #     strength of each mob to provide a more or less challenging
  33. #     environment for players.
  34. #    
  35. # Abilities all have chances, so you can have variety between mobs
  36. #     i.e. (You can have 1 in 100 zombies be very strong)
  37. #    
  38. # #######################################################################
  39. # EnableBounty
  40. # #######################################################################
  41. # Enables the Bounty component of MobManager
  42. #
  43. # MobMananger's Bounty allows you to provide players with rewards
  44. #     (Or fines) to players when they kill mobs.
  45. #    
  46. # Rewards can be Money, Items or Experience
  47. #
  48. # #######################################################################
  49. # EnableSpawner
  50. # #######################################################################
  51. # Enables the Spawner component of MobManager (Requires Limiter)
  52. #
  53. # MobMananger's Spawner allows you to have much more control over spawns
  54. #
  55. # You can use it to provide a more consistent experience for players
  56. #     by having a fixed number of mobs spawn around each player
  57. #     periodically. This means that groups of players will meet larger
  58. #     amounts of mobs.
  59. #
  60. # The Spawner hooks into both MobManager's Limiter and Abilities
  61. #     components.
  62. #     For limiter, it bypasses the normal spawn checks and completes
  63. #     them itself in a slightly more efficient manner.
  64. #     For abilities, it allows you to directly spawn mobs with chosen
  65. #     ability sets.
  66. #
  67. # The Spawner also uses Regions which allows even more power by allowing
  68. #     different mobs to spawn in different defined regions.
  69. #
  70. # The Spawner can also allow mobs to spawn in locations they normally
  71. #     wouldn't. Such as zombies in daylight, or have naturally spawning
  72. #     Giants
  73. #
  74. # #######################################################################
  75. # EnableVersionCheck
  76. # #######################################################################
  77. # If false /mm version will only provide the current version and not
  78. #     check for a new version
  79. #
  80. # #######################################################################
  81. # EnableAutoUpdater
  82. # #######################################################################
  83. # If true MobManager will check for new Approved Downloads from BukkitDev
  84. #     and automatically download and install them.
  85. #
  86. # A restart or /reload will be required to use them.
  87. # MobManager will automatically backup your configuration files for you
  88. #     before updating
  89. #
  90. # #######################################################################
  91. # Integration.EpicBossRecoded
  92. # #######################################################################
  93. # Enables integration of EpicBossRecoded to prevent EpicBosses from
  94. #     having their abilities messed up or from being de-spawned
  95. #    
  96. # EpicBoss-BukkitDev: http://dev.bukkit.org/server-mods/epicboss/
  97. #
  98. #
  99. # #######################################################################
  100.  
  101. EnableLimiter: true
  102. EnableAbilities: true
  103. EnableBounty: true
  104. EnableSpawner: true
  105. EnableVersionCheck: false
  106. EnableAutoUpdater: false
  107. Integration:
  108.   EpicBossRecoded: true
  109. Version: 3.0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement