Advertisement
RhythmicSys

Untitled

Oct 6th, 2022
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. # Nerf Farms Plugin
  2. # This plugin is intended to allow server owners to have more control over what types of mob farms their players can use.
  3. # For the purposes of this plugin, these rules will, by default, apply to mobs not killed by a player/player's pet. (Fall damage, crushing, drowning)
  4. # Additional config options are listed below.
  5. # References:
  6. # Entities: https://jd.papermc.io/paper/1.19/org/bukkit/entity/package-summary.html
  7. # Materials/Blocks: https://jd.papermc.io/paper/1.19/org/bukkit/Material.html
  8. # Spawn Reasons: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/event/entity/CreatureSpawnEvent.SpawnReason.html
  9. # Damage Types: https://purpurmc.org/javadoc/org/bukkit/event/entity/EntityDamageEvent.DamageCause.html
  10.  
  11. # only change this if asked
  12. debug: true
  13.  
  14. require-path: true
  15.  
  16. require-line-of-sight: false
  17.  
  18. only-nerf-hostiles: true
  19.  
  20. allow-projectile-damage: true
  21.  
  22. skeletons-can-damage-creepers: true
  23.  
  24. withers-can-damage-entities: true
  25.  
  26. # [DROPS|EXP|BOTH|NEITHER]
  27.  
  28. modification-type: BOTH
  29.  
  30. max-distance: 15
  31.  
  32. max-blacklisted-damage-percent: 75
  33.  
  34. bypass:
  35. - SILVERFISH
  36.  
  37. blacklisted-damage-types:
  38. - FALL
  39. - FALLING_BLOCK
  40. - LAVA
  41. - DROWNING
  42.  
  43. whitelisted-spawn-types:
  44. - CUSTOM
  45.  
  46. blacklisted-below:
  47. - MAGMA_BLOCK
  48. - HONEY_BLOCK
  49. - LAVA
  50.  
  51. blacklisted-in:
  52. - LAVA
  53. - BUBBLE_COLUMN
  54. - HONEY_BLOCK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement