Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. #general command message/permissions
  2. general:
  3. reload-permission: 'savagegen.reload'
  4. reloaded-message: '&5Genbuckets &8» &7Configuation files successfully reloaded.'
  5.  
  6.  
  7. # generation shop style
  8. generation-shop:
  9. background-glow: false
  10. # Use the 1.13 name for the item name and the plugin will automatically convert it to lower version names.
  11. background-item: WHITE_STAINED_GLASS_PANE
  12. no-lore: false
  13. blank-item:
  14. name: '&5Genbuckets'
  15. lore:
  16. - '&7Click a Genbucket to buy!'
  17. # This will only be used if the plugin is running on a server under the 1.13 API Level.
  18. background-item-durability: 0
  19. name: "&5Genbucket Shop"
  20. rows: 5
  21.  
  22. # This makes it so gen buckets will ignore blocks of their own type. So it makes repairing walls etc easier.
  23. psuedo: false
  24.  
  25. # Source Block
  26. sourceblock:
  27. # If this option is true, the source block will just be same type as the genbucket's block.
  28. # So a cobble genbucket will have a cobble sourceblock.
  29. no-source: false
  30. # Use the 1.13 name for the item name and the plugin will automatically convert it to lower version names.
  31. # Colors currently do not work for blocks due to the 1.13 API.
  32. item-name: WHITE_WOOL
  33.  
  34.  
  35.  
  36. # disable gen buckets with enemies nearby
  37. nearby-check: true
  38.  
  39. # radius distance for nearby player check
  40. radius: 50
  41.  
  42. # horizontal generation distance
  43. distance: 10
  44.  
  45. # delay between each block being generated
  46. # 20 equals 1 second (counting with ticks)
  47.  
  48. #####################################################
  49. # WARNING: ANY DELAY LESS THAN 5 IS NOT RECOMMENDED #
  50. #####################################################
  51.  
  52. delay: 15
  53.  
  54. # should genbuckets use buckets or blocks
  55. use-bucket: true
  56.  
  57. # should sponge check be enabled
  58. # cancels generation if sponge is within 3 blocks
  59. sponge-check: false
  60.  
  61. genbucket-lore:
  62. - '&5Type &8» &d %type%'
  63. - '&5Placement &8» &d $%price%'
  64.  
  65. # blocks you want the genbuckets to override.
  66.  
  67. #########################################
  68. # WARNING: SOLID BLOCKS NOT RECOMMENDED #
  69. #########################################
  70. # Use 1.13 ID's they will be converted to legacy item names automatically.
  71. replace-blocks:
  72. - AIR
  73. - TALL_GRASS
  74. - LARGE_FERN
  75.  
  76. VERTICAL:
  77. GRAVEL:
  78. direction: up
  79. name: '&5Gravel Scaffold'
  80. price: 200
  81. slot: 16
  82. SAND:
  83. direction: up
  84. name: '&5Sand Scaffold'
  85. price: 5000
  86. slot: 25
  87. COBBLESTONE:
  88. direction: down
  89. name: '&5Cobblestone Vertical'
  90. price: 10
  91. slot: 10
  92. OBSIDIAN:
  93. direction: down
  94. name: '&5Obsidian Vertical'
  95. price: 1000
  96. slot: 13
  97.  
  98. HORIZONTAL:
  99. COBBLESTONE:
  100. name: '&5Cobblestone Horizontal'
  101. price: 30
  102. slot: 19
  103. OBSIDIAN:
  104. name: '&5Obsidian Horizontal'
  105. price: 500
  106. slot: 22
  107. NETHERRACK:
  108. name: '&5Netherrack Horizontal'
  109. price: 20
  110. slot: 30
  111. DIRT:
  112. name: '&5Dirt Horizontal'
  113. price: 20
  114. slot: 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement