Advertisement
Guest User

Config.yml

a guest
Aug 29th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. # BossShopPro
  2. # by Felix Neubauer
  3. # Check out following page for more information: https://www.spigotmc.org/wiki/bossshoppro-addons
  4. #
  5. #
  6. # PriceMultiplier:
  7. # The price players need to pay to buy items = worth * PriceMultiplier.
  8. PriceMultiplier: 1.2
  9. #
  10. #
  11. # RewardMultiplier:
  12. # The rewards players get when selling items = worth * RewardMultiplier.
  13. RewardMultiplier: 0.6
  14. #
  15. #
  16. # WorthIsForOneUnit:
  17. # If enabled the given worth counts for one unit of the item only. If disabled the worth will count for the whole given item.
  18. # Examples:
  19. # Feature enabled: worth of 64 log = 64 * given value
  20. # Feature disabled: worth of 64 log = given value
  21. WorthIsForOneUnit: true
  22. #
  23. #
  24. # CurrencyType:
  25. # This is the kind of currency that is used for all items. Supported are all currencies that work with numbers (Money, Points, Exp).
  26. CurrencyType: money
  27. #
  28. #
  29. # UseAdvancedStyle:
  30. # If enabled each shopitem gets its own sub-shop where players can specify the amount of items they want to buy/sell.
  31. UseAdvancedStyle: true
  32. #
  33. #
  34. # AllowSell:
  35. # If disabled players can only buy but not sell items.
  36. # This is a general setting that can be overriden by items of your choice by simply adding the line "AllowSell: <true/false>" to that item.
  37. AllowSell: true
  38. #
  39. #
  40. # ShopItemLookSimple:
  41. # Here you can define the look of all shopitems when having the simple mode activated.
  42. ShopItemLookSimple:
  43. MenuItem:
  44. - 'lore:&eClick &2left &eto buy &b%reward% &efor &c%price%&e.'
  45. - 'lore:&eClick &2right &eto sell &c%price_right% &efor &b%reward_right%&e.'
  46. - 'lore:&eClick your &2mousewheel &eto sell &c%price_middle% &eeach for &b%reward_middle%&e.'
  47. MessageBuy: '&eYou''ve bought &3%reward% &efor &c%price%&e'
  48. MessageSell: '&eYou''ve sold &c%price_right% &efor &3%reward_right%&e.'
  49. MessageSellAll: '&eYou''ve sold &c%price_middle% &eeach for &3%reward_middle%&e.'
  50. #
  51. #
  52. # ShopItemLookAdvanced
  53. # Here you can define the look of all shopitems when having the advanced mode activated.
  54. ShopItemLookAdvanced:
  55. SubShop:
  56. Displayname: '&8ItemShop &8&l[right] &8%id%'
  57. Preview:
  58. MenuItem:
  59. - amount:%amount%
  60. Buy:
  61. MenuItem:
  62. - type:160:5
  63. - name:&aBuy
  64. - amount:1
  65. - 'lore:&fAmount: &e%amount%'
  66. - 'lore:&fCost: &e%price%'
  67. - 'lore:'
  68. - 'lore:&f&nClick to buy.'
  69. Message: '&eYou''ve bought &3%reward% &efor &3%price%&e.'
  70. Sell:
  71. MenuItem:
  72. - type:160:6
  73. - name:&cSell
  74. - amount:1
  75. - 'lore:&fAmount: &e%amount%'
  76. - 'lore:&fReward: &e%reward%'
  77. - 'lore:'
  78. - 'lore:&f&nClick to sell.'
  79. Message: '&eYou''ve sold &3%price% &efor &3%reward%&e.'
  80. SellAll:
  81. MenuItem:
  82. - type:BUCKET
  83. - 'name:&cSell All'
  84. - amount:1
  85. - 'lore:&fSell all'
  86. - 'lore:&fReceive &e%reward% &ffor each.'
  87. - 'lore:'
  88. - 'lore:&f&nClick to sell all.'
  89. Message: '&eYou''ve sold &3%price% &efor &3%reward%&e each.'
  90. Back:
  91. MenuItem:
  92. - type:REDSTONE
  93. - amount:1
  94. - name:&cBack
  95. - 'lore:&f&nClick to go back to the shop.'
  96. Message: ''
  97. Close:
  98. MenuItem:
  99. - type:BARRIER
  100. - amount:1
  101. - name:&cClose
  102. - 'lore:&f&nClick to close the menu.'
  103. Message: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement