Advertisement
Guest User

Untitled

a guest
Jun 30th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. # _ _
  2. # /\ (_) | |
  3. # / \ _ __ _ _ __ ___ __ _| |
  4. # / /\ \ | '_ \| | '_ ` _ \ / _` | |
  5. # / ____ \| | | | | | | | | | (_| | |
  6. # /_/ \_\_|_|_|_|_| |_| |_|\__,_|_|
  7. # | __ \| |
  8. # | |__) | | __ _ __ _ _ _ ___
  9. # | ___/| |/ _` |/ _` | | | |/ _ \
  10. # | | | | (_| | (_| | |_| | __/
  11. # |_| |_|\__,_|\__, |\__,_|\___|
  12. # __/ |
  13. # |___/
  14. # ____ _
  15. # | _ \ _ /\ (_)
  16. # | |_) |_ _(_) / \ _ __ ___ ____ _ _ __
  17. # | _ <| | | | / /\ \ | |/ _` \ \/ / _` | '_ \
  18. # | |_) | |_| |_ / ____ \| | (_| |> < (_| | | | |
  19. # |____/ \__, (_) /_/ \_\ |\__,_/_/\_\__,_|_| |_|
  20. # __/ | _/ |
  21. # |___/ |__/
  22. #
  23. ###----------------------- Config ------------------------###
  24. ### Here are the configurable options for the plugin ###
  25. ### For help, contact me on my Bukkit page ###
  26. ### http://dev.bukkit.org/bukkit-plugins/animal-plague/ ###
  27. ### Suggestions are welcome! ###
  28. ###-------------------------------------------------------###
  29.  
  30. ### DESCRIPTION ###
  31. # The animal plague is designed to do two things.
  32. # 1) Make the game harder by making it possible to lose herds
  33. # of animals.
  34. # 2) Keep lag down by killing animals when there are too many.
  35. #
  36. # Depending on the settings below, you can create an unstoppable
  37. # plague that wipes out all animals in its path, or a small
  38. # control plague that will only kill newly spawned animals when
  39. # a herd gets too large. It is highly recommended that you
  40. # configure your plague before setting it loose on the world.
  41. # They currently configured plague is very contagious and will
  42. # appear after only 20 animals are found inside a 20 x 20 x 20
  43. # cube.
  44.  
  45. # This list is all animals that can catch the plague. All animals
  46. # are effected equally. When ever I refer to "animals" I am
  47. # refering to this list.
  48. PlagueAnimals:
  49. - SHEEP
  50. - COW
  51. - PIG
  52. - CHICKEN
  53. - MushroomCow
  54.  
  55. # Put the name of the cure item here.
  56. # This item will cure an infected animal of the plague.
  57. CureItem: MILK
  58.  
  59. # Enabling this option will cause infected animals to drop
  60. # only rotten flesh upon death.
  61. FleshDecay: true
  62.  
  63. # The plague works in stages.
  64. # 1) Symptoms and weakness: During this stage the animal
  65. # becomes weaker and symptoms will start to appear.
  66. # 2) Spreading: During this stage the infected animal will
  67. # start to infect others.
  68. # 3) Death: In this stage the animal is killed.
  69.  
  70.  
  71. # leave this off unless the plugin is not working.
  72. # Use this to help report errors to me or fix them yourself.
  73. Debug: false
  74.  
  75. ### STAGE ZERO ###
  76.  
  77. # The amount of animals that need to be within a certain area for
  78. # a plague to start.
  79. AnimalAmount: 10
  80. # This radius is centered at the newly spawned Animal.
  81. Radius: 20 # This means a 20 x 20 x 20 cube
  82.  
  83. ### STAGE ONE ###
  84.  
  85. # Use this setting to set the time between when an infected animal
  86. # spawns and when its first visible symptoms appear. This time is
  87. # measured in ticks. 20 ticks = 1 second
  88. PlagueStartTime: 1200 # 1200 ticks = 60 seconds
  89.  
  90. ### STAGE TWO ###
  91.  
  92. # The infection chance. The plague will try to infect a new animal
  93. # every five seconds. This is the chance that an infection will
  94. # occur. 0 means no chance and 100 means 100% chance.
  95. InfectionChance: 100
  96.  
  97. ### STAGE THREE ###
  98.  
  99. # The amount of time an animal will survive after having its
  100. # first noticeable symptoms. An animals life span with the plague
  101. # can be measured by adding the PlagueStartTime and
  102. # the PlagueKillDelay.
  103. #Measured in intervals of 5 seconds.
  104. PlagueKillDelay: 9 # so 9 * 5 = 45 seconds delay.
  105. # 45 + 60(PlagueStartTime) = 1 min and 45 sec life span.
  106.  
  107.  
  108. # Congrats! You can now go watch you plague at work.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement