Advertisement
dvargas135

Untitled

Oct 29th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Name of the main GUI
  2. shopMenuName: "&3&lShop menu"
  3. #Size of the main GUI, valid values are 9, 18, 27, 36, 45 and 54
  4. shopMenuSize: 18
  5. #Define whether selling all with middle mouse button is enabled
  6. enableSellAll: true
  7. #Define whether the buy GUI with option to select quantity is enabled
  8. enableBuyGUI: true
  9. #Define whether the sell GUI with option to select quantity is enabled
  10. enableSellGUI: true
  11. #Define whether sell all button in SellGUI is enabled (enableSellGUI has to be enabled too)
  12. enableSellGUISellAll: true
  13. #Define whether after closing/buying/selling the shop GUI should be opened again
  14. returnToShop: true
  15. #Define whether lines containing the %buy% placeholder should be hidden for unbuyable items
  16. hideBuyPriceForUnbuyable: true
  17. #Define whether lines containing the %sell% placeholder should be hidden for unsellable items
  18. hideSellPriceForUnsellable: true
  19. #Define whether buy and sell buttons should be inverted (false - LMB buy, RMB sell / true - LMB sell, RMB buy)
  20. invertBuySell: false
  21. #Format of item lores in shops, %buy% will be replaced with the buy price and %sell% with sell price
  22. shopItemLoreFormat:
  23. #This lore will be applied to items
  24. item:
  25. - "&7Buy price: &c%buy%$"
  26. - "&7Sell price: &a%sell%$"
  27. - "&9Click with MMB to sell all"
  28. #This lore will be applied to items in the buy GUI (when enableBuyGUI is set to true)
  29. itemBuyGUI:
  30. - "&7Buy price: &c%buy%$"
  31. #This lore will be applied to items in the sell GUI (when enableSellGUI is set to true)
  32. itemSellGUI:
  33. - "&7Sell price: &a%sell%$"
  34. #This lore will be applied to the sell all button in the sell GUI (when enableSellGUI and enableSellGUISellAll are set to true)
  35. itemSellGUISellAll:
  36. - "&7Sell all for: &a%sell%$"
  37. #This one to permissions
  38. permission:
  39. - "&7Buy price: &c%buy%$"
  40. #And this one to enchantments
  41. enchantment:
  42. - "&7Buy price: &c%buy%$"
  43. #And the last one to commands
  44. command:
  45. - "&7Buy price: &c%buy%$"
  46.  
  47. #Logging settings
  48. log:
  49. #Define whether transactions will be logged to the console/main server log
  50. toConsole: true
  51. #Define whether transactions will be logged to a separate log
  52. toFile: false
  53. #Date format of transactions (http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
  54. formatDate: "yyyy/MM/dd HH:mm:ss"
  55. #Log message for bought items
  56. formatBuy: "%player% bought %amount% x %item% for %price%$ from %shop% shop"
  57. #Log message for sold items
  58. formatSell: "%player% sold %amount% x %item% for %price%$ to %shop% shop"
  59. #Log message for sold all items
  60. formatSellAll: "%player% sold all %amount% x %item% for %price%$ to %shop% shop"
  61.  
  62. #Define whether go back button is enabled in shops
  63. goBackButton:
  64. enable: true
  65. item:
  66. #Material name, full list can be found here: http://wiki.brcdev.net/Materials
  67. material: NETHER_STAR
  68. #Amount of the item
  69. amount: 1
  70. #(optional) Data value, for example 1 for WOOD:1 means spruce wood planks
  71. damage: 0
  72. #(optional) Custom name
  73. name: "&cBack to categories"
  74. #(optional) Lore, can contain multiple lines
  75. lore:
  76. - "&aClick here to return to the main menu"
  77. #Slot in each shop's GUI
  78. slot: 49
  79.  
  80. buttons:
  81. #"Previous page" button
  82. previousPage:
  83. item:
  84. material: PAPER
  85. quantity: 1
  86. name: "&e&lPrevious page"
  87. slot: 45
  88. #"Next page" button
  89. nextPage:
  90. item:
  91. material: PAPER
  92. quantity: 1
  93. name: "&e&lNext page"
  94. slot: 53
  95.  
  96. #Elements of the buy/sell GUI
  97. amountSelectionGUIItems:
  98. #"Remove 1" button
  99. remove1:
  100. material: STAINED_GLASS_PANE
  101. quantity: 1
  102. damage: 14
  103. name: "&c&lRemove 1"
  104. #"Remove 10" button
  105. remove10:
  106. material: STAINED_GLASS_PANE
  107. quantity: 10
  108. damage: 14
  109. name: "&c&lRemove 10"
  110. #"Add 1" button
  111. add1:
  112. material: STAINED_GLASS_PANE
  113. quantity: 1
  114. damage: 5
  115. name: "&a&lAdd 1"
  116. #"Add 10" button
  117. add10:
  118. material: STAINED_GLASS_PANE
  119. quantity: 10
  120. damage: 5
  121. name: "&a&lAdd 10"
  122. #"Confirm" button
  123. confirm:
  124. material: STAINED_GLASS
  125. quantity: 1
  126. damage: 5
  127. name: "&a&lConfirm"
  128. #"Cancel" button
  129. cancel:
  130. material: STAINED_GLASS
  131. quantity: 1
  132. damage: 14
  133. name: "&c&lCancel"
  134. #"Sell all" button
  135. sellAll:
  136. material: STAINED_GLASS
  137. quantity: 1
  138. damage: 5
  139. name: "&a&lSell all"
  140.  
  141. shopMenuItems:
  142. #Has to be unique, value doesn't matter
  143. 1:
  144. item:
  145. #The same rules apply for material, amount, damage and lore as for goBackButton
  146. material: 364
  147. quantity: 1
  148. damage: 0
  149. name: "&aFood"
  150. lore:
  151. - "&7Get some yummy food here!"
  152. #Shop ID from shops.yml
  153. shop: "food"
  154. #Slot in shops menu, counting from 0 to 53
  155. slot: 0
  156. 2:
  157. item:
  158. material: DIAMOND_AXE
  159. quantity: 1
  160. damage: 0
  161. name: "&2Tools"
  162. lore:
  163. - "&7Get your tools here!"
  164. shop: "tool"
  165. slot: 1
  166. 3:
  167. item:
  168. material: 295
  169. quantity: 1
  170. damage: 0
  171. name: "&eFarming"
  172. lore:
  173. - "&7Grow your crops easily with these seeds!"
  174. shop: "farming"
  175. slot: 2
  176. 4:
  177. item:
  178. material: WOOL
  179. quantity: 64
  180. damage: 4
  181. name: "&bWool Shop"
  182. shop: "wool"
  183. slot: 3
  184. 5:
  185. item:
  186. material: REDSTONE
  187. quantity: 1
  188. name: "&3Redstone"
  189. shop: "redstone"
  190. slot: 4
  191. 6:
  192. item:
  193. material: DIAMOND_SWORD
  194. quantity: 1
  195. name: "&eCombat"
  196. shop: "pvp"
  197. slot: 5
  198. 7:
  199. item:
  200. material: 117
  201. quantity: 1
  202. name: "&7Brewing"
  203. shop: "brewing"
  204. slot: 6
  205. 8:
  206. item:
  207. material: 1
  208. quantity: 1
  209. name: "&cBlocks"
  210. shop: "block"
  211. slot: 7
  212. 9:
  213. item:
  214. material: MOB_SPAWNER
  215. quantity: 1
  216. name: "&eSpawners"
  217. shop: "spawners"
  218. slot: 8
  219. 10:
  220. items:
  221. material: 351:5
  222. quantity: 1
  223. name: "&aDye Shop"
  224. shop: "dye"
  225. slot: 9
  226. 11:
  227. items:
  228. material: 57
  229. quantity: 1
  230. name: "&bMinerals/Mineral Blocks"
  231. shop: "mineral"
  232. slot: 10
  233. 12:
  234. items:
  235. material: 95:14
  236. quantity: 1
  237. name: "&4Glass/StainedGlass"
  238. shop: "glass"
  239. slot: 11
  240. 13:
  241. items:
  242. material: 403
  243. quantity: 1
  244. name: "&5Enchantments"
  245. shop: "enchantment"
  246. slot: 12
  247. 14:
  248. items:
  249. material: 171:1
  250. quantity: 1
  251. name: "&6Carpet"
  252. shop: "carpet"
  253. slot: 13
  254. 15:
  255. items:
  256. material: 6
  257. quantity: 1
  258. name: "&cLeaves/Tree"
  259. shop: "tree"
  260. slot: 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement