Advertisement
gravvy

Untitled

Jul 6th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. # Extra money based on percentage per level of looting e.g 0.05 means 5% extra money per looting level so looting 10 gives 50% more money
  2. # Set to 0 if you don't want looting to affect the amount of money dropped
  3. MoneyAddedPerLevel: 0.05
  4.  
  5. # Whether the money goes straight into the players inventory or drops on the ground as an item.
  6. MoneyDropsOnGround:
  7. Enabled: true
  8. Item: GOLD_INGOT
  9.  
  10. # Sounds list: https://www.digminecraft.com/lists/sound_list_pc.php
  11. # Sound = sound played on pickup. Change to "NONE" if you don't want a sound to be played
  12. Sound: entity.item.pickup
  13.  
  14. # Particles list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Particle.html
  15. # ParticleEffect = Particle effect spawned on pickup. Change to "NONE" if you dont want a particle to spawn.
  16. ParticleEffect: VILLAGER_HAPPY
  17. AmountOfParticles: 5
  18.  
  19. # Disable the plugin in a certain world by adding the world name to this list
  20. DisabledWorlds:
  21. - world1
  22. - world2
  23.  
  24. # if set to false the message will show above the players action bar
  25. ShowMessageInChat: false
  26.  
  27. # Message to be sent when a player picks up money. %amount% is the placeholder for the amount to be given
  28. Message: "&a$%amount% dropped from the mob you killed!"
  29.  
  30.  
  31. # Money = Money to be dropped from each mob
  32. # DropChance = Percentage chance for the player to be given money e.g 25 = 25% chance for mob to drop money
  33. # You can add more mobs but the name must be the entity type name
  34. CHICKEN:
  35. Enabled: true
  36. Money: 5
  37. DropChance: 25
  38. PIG:
  39. Enabled: true
  40. Money: 5
  41. DropChance: 25
  42. SHEEP:
  43. Enabled: true
  44. Money: 5
  45. DropChance: 25
  46. COW:
  47. Enabled: true
  48. Money: 5
  49. DropChance: 25
  50. MUSHROOM_COW:
  51. Enabled: true
  52. Money: 5
  53. DropChance: 25
  54. PARROT:
  55. Enabled: true
  56. Money: 5
  57. DropChance: 25
  58. WOLF:
  59. Enabled: true
  60. Money: 5
  61. DropChance: 25
  62. SILVERFISH:
  63. Enabled: true
  64. Money: 9
  65. DropChance: 25
  66. ZOMBIE:
  67. Enabled: true
  68. Money: 9
  69. DropChance: 25
  70. SPIDER:
  71. Enabled: true
  72. Money: 9
  73. DropChance: 25
  74. CAVE_SPIDER:
  75. Enabled: true
  76. Money: 9
  77. DropChance: 25
  78. SKELETON:
  79. Enabled: true
  80. Money: 9
  81. DropChance: 25
  82. PIG_ZOMBIE:
  83. Enabled: true
  84. Money: 9
  85. DropChance: 25
  86. MAGMA_CUBE:
  87. Enabled: true
  88. Money: 9
  89. DropChance: 25
  90. WITCH:
  91. Enabled: true
  92. Money: 9
  93. DropChance: 25
  94. ENDERMAN:
  95. Enabled: true
  96. Money: 9
  97. DropChance: 25
  98. BLAZE:
  99. Enabled: true
  100. Money: 9
  101. DropChance: 25
  102. CREEPER:
  103. Enabled: true
  104. Money: 9
  105. DropChance: 25
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement