Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. #It auto saves on disable, so in case of an crash, would recommend to save it every few. The value is in seconds!
  2. saveEvery: 60
  3.  
  4. Hoppers:
  5.  
  6. #There's 4 types of hopper: BREAK, CROP, GRIND, MOB
  7. #Break Upgradable values
  8. #limitPerChunk,
  9. #particle,
  10. #lore,
  11. #name,
  12. #breakEvery,
  13. #drops
  14.  
  15. #Grind Upgradable values
  16. #limitPerChunk,
  17. #lore,
  18. #name,
  19. #defaultMob,
  20. #damage,
  21. #time
  22.  
  23. #Crop Upgradable values
  24. #limitPerChunk,
  25. #lore,
  26. #name,
  27. #defaultMob,
  28. #crops
  29.  
  30. #Mob Upgradable values
  31. #limitPerChunk,
  32. #lore,
  33. #name,
  34. #defaultMob,
  35. #drops
  36.  
  37. "mob":
  38. type: Mob
  39. limitPerChunk: -1
  40. name: "&8[&aMob&8] &7Hopper"
  41. lore:
  42. - "&7This hopper picks up mob drops!"
  43. should_drop_from_explosions: true
  44. drops:
  45. - "ROTTEN_FLESH"
  46. "cactus":
  47. type: crop
  48. limitPerChunk: -1
  49. name: "&8[&aCactus&8] &7Hopper"
  50. should_drop_from_explosions: true
  51. lore:
  52. - "&7This hopper picks up cactus!"
  53. crops:
  54. - "CACTUS"
  55. "sugar":
  56. type: crop
  57. limitPerChunk: -1
  58. name: "&8[&aSugar Cane&8] &7Hopper"
  59. should_drop_from_explosions: true
  60. lore:
  61. - "&7This hopper picks up sugar cane!"
  62. crops:
  63. - "SUGAR_CANE"
  64. "ore":
  65. type: crop
  66. limitPerChunk: -1
  67. name: "&8[&6Ore&8] &7Hopper"
  68. should_drop_from_explosions: true
  69. lore:
  70. - "&7This hopper picks up sugar cane!"
  71. crops:
  72. - "IRON_ORE"
  73. - "GOLD_ORE"
  74. - "DIAMONDS"
  75. - "EMERALD_ORE"
  76. - "DIAMOND_ORE"
  77. - "EMERALDS"
  78. - "COAL"
  79. - "COAL_ORE"
  80. - "IRON_INGOT"
  81. - "GOLD_INGOT"
  82. - "COBBLESTONE"
  83.  
  84. MobGrind:
  85. convert-inventory:
  86. title: "&aChange your grinder mob!"
  87. item-placeholder:
  88. name: "&b%type%"
  89. lore:
  90. - "&7Change your grinder type to %type%"
  91. - "&b&l* &7Price: $%price%"
  92. default-price: 1000
  93.  
  94. #You can add own prices by specifying Entity name & price
  95. #Ex: COW;1500
  96. #Note: Entity names come from https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  97.  
  98. prices:
  99. - "COW;1500"
  100.  
  101. #Don't want an entity to show up in gui?
  102. #Add it below
  103. #Note: Entity names come from https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  104.  
  105. mob-blacklist:
  106. - "GIANT"
  107. - "WITHER"
  108.  
  109. UpgradeInventory:
  110. title: "&3&lUPGRADE HOPPER"
  111. infoItem:
  112. name: "&b&lINFO"
  113. material: PAPER
  114. lore:
  115. - "&b&l* &7Level: &b%lvl%"
  116. - "&b&l* &7Type: &b%type%"
  117. - "&b&l* &7Name: &b%name%"
  118. filler_color: "CYAN"
  119. upgradeItem:
  120. material: DIAMOND_BLOCK
  121. name: "&b&lUPGRADE"
  122. lore:
  123. - "&7Click to upgrade your hopper from level &b%lvl% &7to &b%nextlvl%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement