Advertisement
Guest User

Untitled

a guest
Dec 19th, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.80 KB | None | 0 0
  1. ##################################################
  2. ## ##
  3. ## _____ _ _ _____ _____ _ ##
  4. ## / ____| | | |_ _|/ ____| | ##
  5. ##| | __| | | | | | | (___ | |__ ___ _ __ ##
  6. ##| | |_ | | | | | | \___ \| '_ \ / _ \| '_ \ ##
  7. ##| |__| | |__| |_| |_ ____) | | | | (_) | |_) |##
  8. ## \_____|\____/|_____|_____/|_| |_|\___/| .__/ ##
  9. ## | | ##
  10. ## |_| ##
  11. ##################################################
  12.  
  13.  
  14.  
  15. ##################################################
  16. # Looking for Item Names? #
  17. ##################################################
  18. # https://tinyurl.com/okqdcvo #
  19. ##################################################
  20.  
  21. ## Tag in chat before text in chat from shop. e.g [GUIShop] Purchase Successful.
  22. prefix: '[&cGUIShop&f]'
  23.  
  24. ## Command used to open shop, DON'T PUT A /
  25. buy-commands:
  26. - 'buy'
  27. - 'shop'
  28.  
  29. ## Command to open sell inventory, DON'T PUT A /
  30. sell-commands:
  31. - 'sell'
  32.  
  33. ## Command registration options
  34. ##
  35. ## If 'INTERCEPT', the commands will be intercepted and executed.
  36. ## Will not conflict with other plugins' commands, but does not support tab completion.
  37. ##
  38. ## If 'REGISTER', the commands will be registered with the server and will be formally recognised.
  39. ## Tab completion supported. Possibility of conflicts with plugins with the same commands.
  40. ##
  41. ## If 'NONE', neither of the above will happen. Intended for users who wish to use the commands.yml.
  42. ## Of course, the /guishopuser commands will still work.
  43. commands-mode: 'REGISTER'
  44.  
  45. ############ Language settings ###############
  46.  
  47. #No permission message
  48. no-permission: '&cNo Permission!'
  49.  
  50. #Disabled world message
  51. disabled-world: '&cYou cannot use the shop from this world!'
  52.  
  53. #Use the escape key to close the shop instead of the back button.
  54. escape-only: false
  55.  
  56. #Rightclick an item in the shop to open an alternate sell GUI
  57. alternate-sell-enable: false
  58.  
  59. #The message for the amount you lose, E.G Cost, Or Price
  60. cost: '&7Price'
  61.  
  62. #The message for the amount you get back AKA. Sell or Returned
  63. return: '&7Sell'
  64.  
  65. #The 1st line of the message on shop items
  66. line1: '&8To sell, click the item in your inv.'
  67.  
  68. #The 2nd line of the message on shop items
  69. line2: '&6Must be the same quantity!'
  70.  
  71. #The 3rd line of the message on shop items
  72. line3: 'Click to buy item of quantity'
  73.  
  74. #The 4th line of the message on shop items
  75. line4: 'Shift+Click to buy 1 item'
  76.  
  77. #The text back button in the shops
  78. back: '&cBack'
  79.  
  80. #The item the back button will be!
  81. back-button-item: 'BARRIER'
  82.  
  83. #The messaged displayed before the item amount.
  84.  
  85. purchased: '&fA purchase was made, and &c$'
  86.  
  87. ## The second message displayed when you purchase an item.
  88.  
  89. ## E.G 54$ Taken from your account.
  90. taken: '&f was taken from your account.'
  91.  
  92. ## The words displayed before the amount needed.
  93. not-enough-pre: '&fYou need &c$'
  94.  
  95. ## The words displayed AFTER the amount needed.
  96. not-enough-post: '&f to purchase this!'
  97.  
  98. ## Text displayed before item name.
  99. sold: '&fYour items were sold, and &a$'
  100.  
  101. ##Second message when buying, Words AFTER the amount
  102. ## E.G 54$ "Added to your account"
  103. added: '&f was added to your account.'
  104.  
  105. #When something magical goes wrong?
  106. something-wrong: '&fSomething went wrong, contact an admin.'
  107.  
  108. #Message displayed when a player tries to sell blocks not matching the quantity.
  109. in-stacks: '&fPlease sell in stacks of &c'
  110.  
  111. #Message when a player cannot sell a certain item.
  112. #{count} can be used to display the amount of non sellable, returned items.
  113. cant-sell: '&f({count}) item(s) failed to sell and have been returned to your inventory.'
  114.  
  115. #Message when a player cannot buy a certain item.
  116. cant-buy: '&fSorry, you are not able to buy that item.'
  117.  
  118. #When a player has a full inventory
  119. full-inventory: '&cPlease empty your inventory!'
  120.  
  121. #The currency symbol
  122. currency: '£'
  123.  
  124. #The suffix after the currency. E.G Dollars. Yen, etc.
  125. currency-suffix: ''
  126.  
  127. #The title of a sign that players can click to open shop
  128. sign-title: '[&cGUIShop&f]'
  129.  
  130. #Do want players to be able to access the shop ONLY using the sign?
  131. signs-only: false
  132.  
  133. signs-only-message: '&cYou can only access the shop by clicking a [&cGUIShop&f] sign!'
  134.  
  135. #Menu row count
  136. menu-rows: 3
  137.  
  138. #Enable sound on purchase
  139. enable-sound: true
  140.  
  141. #Purchase sound effect (You can find them here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html)
  142. purchase-sound: 'ENTITY_PLAYER_LEVELUP'
  143.  
  144. #Enable in-game creator.
  145. ingame-config: true
  146.  
  147. #Enable dynamic pricing
  148. dynamic-pricing: false
  149.  
  150. #Enable DEBUG mode
  151. debug-mode: false
  152.  
  153. #The overall shop menu title
  154. menu-title: "Menu"
  155.  
  156. #The title of a specific shop inventory
  157. shop-title: "Menu &f> &r{shopname}"
  158.  
  159. #The title of the sell inventory
  160. sell-title: "Menu &f> &rSell"
  161.  
  162. #The title of the quantity inventory.
  163. qty-title: "&4Select Amount"
  164.  
  165. #The title of the alternate sell GUI, if enabled
  166. alt-sell-title: "Menu &f> &rSell"
  167.  
  168. access-to: "&aAccess to Commands:"
  169.  
  170. buy-lore: "&fBuy: &c{amount}"
  171.  
  172. sell-lore: "&fSell: &c{amount}"
  173.  
  174. free-lore: "&fBuy: &aFREE"
  175.  
  176. cannot-buy: "&cCannot Purchase"
  177.  
  178. cannot-sell: "&cCannot Sell"
  179.  
  180. forward-page-button-name: "&rNext page"
  181.  
  182. backward-page-button-name: "&rLast page"
  183.  
  184. #Used in the alternate sell GUI
  185. alt-sell-indicator-material: 'GOLD_INGOT'
  186.  
  187. alt-sell-add-material: 'GREEN_STAINED_GLASS_PANE'
  188. alt-sell-remove-material: 'RED_STAINED_GLASS_PANE'
  189.  
  190. alt-sell-quantity-1: 1
  191. alt-sell-quantity-2: 10
  192. alt-sell-quantity-3: 64
  193.  
  194. alt-sell-confirm-material: 'EMERALD_BLOCK'
  195. alt-sell-cancel-material: 'REDSTONE_BLOCK'
  196.  
  197. alt-sell-confirm-name: '&a&lConfirm'
  198. alt-sell-cancel-name: '&c&lCancel'
  199.  
  200. alt-sell-not-enough: '&cYou do not have {amount} such items to sell.'
  201.  
  202. DisabledWorlds:
  203. -'Test'
  204.  
  205. ## Items to disable quantity stacking.
  206. ## This will force these items to only have
  207. ## a quantity of 1. Good for swords, armor, etc.
  208. ##
  209. ## This is an item SEARCH. Meaning it is not the full item name.
  210. ## E.G CHESTPLATE blocks ALL chestplates because all items contain
  211. ## the word CHESTPLATE.
  212. disabled-qty-items:
  213. - "CHESTPLATE"
  214. - "LEGGINGS"
  215. - "BOOTS"
  216. - "HELMET"
  217. - "BOW"
  218. - "FISHING_ROD"
  219. - "SHEARS"
  220. - "NAME_TAG"
  221. - "SWORD"
  222. - "AXE"
  223. - "PICKAXE"
  224. - "SHOVEL"
  225. - "SPADE"
  226. - "HOE"
  227. - "LEAD"
  228. - "LEASH"
  229. - "HORSE_ARMOR"
  230. - "SADDLE"
  231. - "BARDING"
  232.  
  233. ##Menu Items
  234. Rows: 3
  235.  
  236. menu-items:
  237. Pane0:
  238. Type: 'DUMMY'
  239. Item: 'BLUE_STAINED_GLASS_PANE'
  240. Pane1:
  241. Type: 'DUMMY'
  242. Item: 'RED_STAINED_GLASS_PANE'
  243. Pane2:
  244. Type: 'DUMMY'
  245. Item: 'BLUE_STAINED_GLASS_PANE'
  246. Pane3:
  247. Type: 'DUMMY'
  248. Item: 'RED_STAINED_GLASS_PANE'
  249. Pane4:
  250. Type: 'DUMMY'
  251. Item: 'BLUE_STAINED_GLASS_PANE'
  252. Pane5:
  253. Type: 'DUMMY'
  254. Item: 'RED_STAINED_GLASS_PANE'
  255. Pane6:
  256. Type: 'DUMMY'
  257. Item: 'BLUE_STAINED_GLASS_PANE'
  258. Pane7:
  259. Type: 'DUMMY'
  260. Item: 'RED_STAINED_GLASS_PANE'
  261. PaneCornerRight:
  262. Type: 'DUMMY'
  263. Item: 'BLUE_STAINED_GLASS_PANE'
  264. Pane8:
  265. Type: 'DUMMY'
  266. Item: 'RED_STAINED_GLASS_PANE'
  267. Raiding:
  268. Type: 'SHOP'
  269. Enabled: true
  270. Item: 'TNT'
  271. Desc: '&8(&cBlow them up!&8)'
  272. Name: '&4Raiding'
  273. Ores:
  274. Type: 'SHOP'
  275. Enabled: true
  276. Item: 'EMERALD'
  277. Desc: '&8(&fOres&8)'
  278. Name: '&aOres'
  279. FarmingDrops:
  280. Type: 'SHOP'
  281. Enabled: true
  282. Item: 'WHEAT_SEEDS'
  283. Desc: '&8(&fFarming&8)'
  284. Name: '&eFarming/Drops'
  285. Brewing:
  286. Type: 'SHOP'
  287. Enabled: true
  288. Item: 'EXPERIENCE_BOTTLE'
  289. Desc: '&8(&fBrewing&8)'
  290. Name: '&2Brewing'
  291. Gear:
  292. Type: 'SHOP'
  293. Enabled: true
  294. Item: 'DIAMOND_HELMET'
  295. Desc: '&8(&fGear&8)'
  296. Name: '&bGear'
  297. Spawners:
  298. Type: 'SHOP'
  299. Enabled: true
  300. Item: 'SPAWNER'
  301. Desc: '&8(&fSpawners&8)'
  302. Name: '&6Spawners'
  303. Blocks:
  304. Type: 'SHOP'
  305. Enabled: true
  306. Item: 'STONE'
  307. Desc: '&8(&fBlocks&8)'
  308. Name: '&6Blocks'
  309. Pane9:
  310. Type: 'DUMMY'
  311. Item: 'RED_STAINED_GLASS_PANE'
  312. PaneCornerBottomLeft:
  313. Type: 'DUMMY'
  314. Item: 'BLUE_STAINED_GLASS_PANE'
  315. Pane10:
  316. Type: 'DUMMY'
  317. Item: 'RED_STAINED_GLASS_PANE'
  318. Pane11:
  319. Type: 'DUMMY'
  320. Item: 'BLUE_STAINED_GLASS_PANE'
  321. Pane12:
  322. Type: 'DUMMY'
  323. Item: 'RED_STAINED_GLASS_PANE'
  324. Pane13:
  325. Type: 'DUMMY'
  326. Item: 'BLUE_STAINED_GLASS_PANE'
  327. Pane14:
  328. Type: 'DUMMY'
  329. Item: 'RED_STAINED_GLASS_PANE'
  330. Pane15:
  331. Type: 'DUMMY'
  332. Item: 'BLUE_STAINED_GLASS_PANE'
  333. Pane16:
  334. Type: 'DUMMY'
  335. Item: 'RED_STAINED_GLASS_PANE'
  336. Pane17:
  337. Type: 'DUMMY'
  338. Item: 'BLUE_STAINED_GLASS_PANE'
  339.  
  340. ################################
  341. ## Developed by pablo67340 ##
  342. ## If you need any support ##
  343. ## https://discord.gg/v7D6pCm ##
  344. ################################
  345.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement