Advertisement
Guest User

Untitled

a guest
May 3rd, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. ##################################################
  2. # Global configuration
  3. ##################################################
  4. config:
  5. # Whether or not a mob's lifespan resets when
  6. # they are interacted with (damaged, etc.)
  7. reset_on_interaction: true
  8.  
  9. # Whether or not mobs killed by this plugin are
  10. # allowed to drop items.
  11. allow_drops: false
  12.  
  13.  
  14. ##################################################
  15. # Entity configuration
  16. ##################################################
  17. # Example:
  18. # <source>.<entity>.lifespan: <ticks>
  19. # natural.spider.lifespan: 6000
  20. # natural.ANY.lifespan: 5000
  21. # ANY.zombie.lifespan: 2500
  22. #
  23. # For a list of supported entity types, see the list here:
  24. # http://jd.bukkit.org/apidocs/org/bukkit/entity/EntityType.html
  25. #
  26. # For a list of entity sources is, see the list here:
  27. # http://jd.bukkit.org/apidocs/org/bukkit/event/entity/CreatureSpawnEvent.SpawnReason.html
  28. #
  29. # Since the configuration seems to be case sensitive (sigh), everything must
  30. # be entered in lower case, with the exception of "ANY" which must be in
  31. # upper case.
  32. #
  33. # Also note that the lifespan is in ticks, not seconds (or milliseconds).
  34. # 20 ticks represents 1 second (roughly speaking).
  35. #
  36. # Any source/entity combination that isn't matched here defaults to 0. Any
  37. # mob with a lifespan of 0 or lower will be unmanaged by the MobTimer module.
  38.  
  39.  
  40. ANY:
  41. # ANY.lifespan: 6000
  42. zombie.lifespan: 12000
  43. skeleton.lifespan: 12000
  44. spider.lifespan: 12000
  45. cave_spider.lifespan: 12000
  46. slime.lifespan: 12000
  47. creeper.lifespan: 12000
  48. enderman.lifespan: 12000
  49.  
  50. spawner_egg:
  51. ANY.lifespan: 60
  52.  
  53. spawner:
  54. ANY.lifespan: 6000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement