Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. #########################################################
  2. ## ##
  3. ## WildChests Configuration ##
  4. ## Developed by Ome_R ##
  5. ## ##
  6. #########################################################
  7.  
  8. # How much time should be passed between sell and crafting notifies? (in ticks)
  9. # Set 0 to disable this feature.
  10. notifier-interval: 20
  11.  
  12. # When enabled, a gui will be popped to confirm chest expand purchase. Otherwise, it will be done in chat.
  13. confirm-gui: false
  14.  
  15. # Specify a command to be executed when a sell is running.
  16. # {player-name} - use as the player's name
  17. # {price} - use as the price of item
  18. # Set to '' in order to disable the feature.
  19. sell-command: ''
  20.  
  21. # Should the chest item be dropped on explosions?
  22. # Set a chance of it to get dropped between 0 and 100.
  23. explode-drop-chance: 100
  24.  
  25. # The plugin checks if ShopGUIPlus or Essentials is installed.
  26. # If both are not installed, it will use this list for the sell-chest
  27. # prices list. If both are installed, ShopGUIPlus's prices will be used.
  28. prices-list:
  29. - STONE:5
  30. - LOG:0:5
  31. - DIAMOND:1
  32.  
  33. # What prices provider should the plugin use? (ShopGUIPlus, Essentials, WildChests)
  34. prices-provider: WildChests
  35.  
  36. # All settings related to database.
  37. database:
  38. # Automatically delete data from invalid worlds.
  39. invalid-world-delete: false
  40.  
  41. # The plugin brings tons of new custom and unique chests to your server. All the chests are configurable, and
  42. # you can create and mix between them. You can create chests that stores infinite amount of items, chests that
  43. # are connected to player vaults or factions, linked chests and many more!
  44. #
  45. # *** Chest Mode ***
  46. # Chests in this mode react like regular chests. This is the base mode, and used for creating
  47. # sell chests and larger chests.
  48. #
  49. # *** Linked Mode ***
  50. # Chests in this mode are all linked together, and work like ender chests, but globally.
  51. #
  52. # *** Storage Units Mode ***
  53. # Chests in this mode will have unlimited amount of storage, but only for one specific item.
  54. # Note: Auto sell & auto craft modes doesn't work for this mode!
  55. #
  56. # There are sections that can be applied to all of the chests:
  57. # size: Amount of rows the chest will have (INTEGER) (Will be overridden by pages' size)
  58. # title: Global title for all pages. Will be overridden by page's title (STRING)
  59. # sell-chest: Should items in this chest will be sold to the chest placer? (BOOLEAN)
  60. # crafter-chest: List of recipes that will take action in this chest (LIST)
  61. # Please follow "TYPE" and "TYPE:DATA" formats
  62. # hopper-filter: When enabled, only craftable items will go into hoppers below (BOOLEAN)
  63. # pages: Section that handles all settings for pages
  64. # pages.default: Default amount of pages (INTEGER) [REQUIRED FOR PAGES]
  65. # pages.<#>: Section that handles all settings for a specific page
  66. # pages.<#>.price: Price for upgrading to that page (DOUBLE) [REQUIRED]
  67. # pages.<#>.title: Custom title for that page.
  68. # item.name: Custom name for the chest (STRING)
  69. # item.lore: Custom lore for the chest (LIST)
  70. # multiplier: Money multiplier for sell chests. (BOOLEAN)
  71. # auto-collect: Should items get directly into inventory after breaking? (BOOLEAN)
  72. # auto-suction.range: Should items inside the specified range will get suctioned into the chest? (INTEGER)
  73. # auto-suction.chunk: Should items inside the chunk will get suctioned into the chest? (BOOLEAN)
  74. # If you set it to true, the range will be checked as y-range only.
  75. # blacklist: A list of items that won't be picked up by the chests (only works for auto-suction for now)
  76. # whitelist: A list of items that will be picked up by the chests (only works for auto-suction for now)
  77.  
  78. chests:
  79. linked_chest:
  80. chest-mode: LINKED_CHEST
  81. title: Linked Chest
  82. item:
  83. name: '&6Linked Chest &7(Place to active)'
  84. large_chest:
  85. chest-mode: CHEST
  86. size: 6
  87. sell-mode: true
  88. item:
  89. name: '&aLarge Chest &7(Place to active)'
  90. pages:
  91. default: 1
  92. '2':
  93. price: 500000.0
  94. title: 'Chest #2'
  95. '3':
  96. price: 1000000.0
  97. title: 'Chest #3'
  98. '4':
  99. price: 2000000.0
  100. title: 'Chest #4'
  101. '5':
  102. price: 3000000.0
  103. title: 'Chest #5'
  104. sell_chest:
  105. chest-mode: CHEST
  106. size: 6
  107. title: Drop your items here to sell them.
  108. item:
  109. name: '&dSell Chest &7(Place to active)'
  110. sell-mode: true
  111. multiplier: 0.5
  112. auto_crafter:
  113. chest-mode: CHEST
  114. size: 6
  115. title: Drop your items here to auto-craft them.
  116. item:
  117. name: '&cAuto Crafter &7(Place to active)'
  118. crafter-chest:
  119. - GOLD_INGOT
  120. storage_unit:
  121. chest-mode: STORAGE_UNIT
  122. size: 3
  123. title: Storage Unit {0}
  124. item:
  125. name: '&bStorage Unit &7(Place to active)'
  126. chunk_collector:
  127. chest-mode: CHEST
  128. size: 6
  129. title: Chunk Collector
  130. item:
  131. name: '&eChunk Collector &7(Place to active)'
  132. auto-suction:
  133. range: 5
  134. chunk: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement