Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.42 KB | None | 0 0
  1. # Type of the economy which will handle all transactions.
  2. # Supported economies:
  3. # - EXP (default Minecraft experience points)
  4. # - VAULT (requires http://dev.bukkit.org/bukkit-plugins/vault/)
  5. # - MYSQL_TOKENS (requires https://www.spigotmc.org/resources/mysql-tokens.7535/)
  6. # - PLAYER_POINTS (requires https://dev.bukkit.org/projects/playerpoints)
  7. # - TOKEN_MANAGER (requires https://www.spigotmc.org/resources/tokenmanager.8610/)
  8. economyType: VAULT
  9. # Name of the main GUI
  10. shopMenuName: "&6&lSklep MyCrafty.net"
  11. # Size of the main GUI, valid values are 9, 18, 27, 36, 45 and 54
  12. shopMenuSize: 45
  13. # Choose an item to fill the empty slots of menu with
  14. shopMenuFillItem:
  15. material: LIGHT_GRAY_STAINED_GLASS_PANE
  16. name: " "
  17. # Define whether selling all with middle mouse button is enabled
  18. enableSellAll: true
  19. # Define whether the buy GUI with option to select quantity is enabled
  20. enableBuyGUI: true
  21. # Define whether the sell GUI with option to select quantity is enabled
  22. enableSellGUI: true
  23. # Define whether sell all button in SellGUI is enabled (enableSellGUI has to be enabled too)
  24. enableSellGUISellAll: true
  25. # Define whether after closing/buying/selling the shop GUI should be opened again
  26. returnToShop: true
  27. # Define whether the quick buy/sell option should be enabled (amount selection gui will stay open until player closes it)
  28. quickBuySell: false
  29. # Define whether lines containing the %buy% placeholder should be hidden for unbuyable items
  30. hideBuyPriceForUnbuyable: true
  31. # Define whether lines containing the %sell% placeholder should be hidden for unsellable items
  32. hideSellPriceForUnsellable: true
  33. # Define whether buy and sell buttons should be inverted (false - LMB buy, RMB sell / true - LMB sell, RMB buy)
  34. invertBuySell: false
  35. # Maximum amount of enchantments players can add to an item, set to -1 for no limit
  36. maxEnchantments: 3
  37. # Choose whether players should be able to buy enchantments only 1 level higher than current (eg. player has sword with Sharpness 1, they could buy only Sharpness 2)
  38. limitEnchantmentLevelDiff: false
  39. # Define whether the amount selection double click bug fix should be enabled
  40. enableAmountSelectionFix: true
  41. # Define whether players should be able to use sell all option to sell all their items (allowAllSellAllStackSizes = true) or only amount multiplied by the original stack size of the shop item (allowAllSellAllStackSizes = false)
  42. allowAllSellAllStackSizes: false
  43. # Define whether all prices should be rounded up, down, to the nearest whole number or not rounded (valid values are UP, DOWN, NEAREST and NONE)
  44. roundPrices: none
  45. # Define whether main menu (/shop command) should be disabled. The only way to access shops will be to use /shop <id> when you disable it.
  46. disableMainMenu: false
  47. # Choose if different messages should be sent when someone buy/sell items for $0 (MSG_ITEM_BOUGHTFREE, MSG_ITEM_SOLDFREE, MSG_ITEM_SOLDALLFREE)
  48. useDifferentMessagesForFreeItems: true
  49. # Choose if item names should have first letters of their names capitalized, for instance nether brick would become Nether Brick
  50. capitalizeItemNames: true
  51. # Choose the type of price modifiers. (BOTH (permission modifiers have higher priority than command-ones), COMMAND, PERMISSION)
  52. priceModifiersType: BOTH
  53. # Choose if the gui shall be closed after using the Sell All feature
  54. closeGuiAfterSellAll: false
  55. # Choose if bulk buy/sell guis should be opened immediately after clicking an item (enableBuyGUI and enableSellGUI have to be enabled as well and players need the bulk buy/sell permissions)
  56. openBulkGuiImmediately: false
  57. # Choose which items stack size should be capped at 16 inside the amount selection GUI so players can't buy eg. oversized ender pearl stacks
  58. # Format is same as for regular items in shops.yml
  59. itemStackSizeCappedAt:
  60. 1:
  61. material: ENDER_PEARL
  62. size: 16
  63. 2:
  64. material: SNOWBALL
  65. size: 16
  66. 3:
  67. material: SIGN
  68. size: 16
  69. 4:
  70. material: EGG
  71. size: 16
  72. 5:
  73. material: BUCKET
  74. size: 1
  75. 6:
  76. material: LAVA_BUCKET
  77. size: 1
  78. 7:
  79. material: WATER_BUCKET
  80. size: 1
  81. 8:
  82. material: COD_BUCKET
  83. size: 1
  84. 9:
  85. material: SALMON_BUCKET
  86. size: 1
  87. 10:
  88. material: PUFFERFISH_BUCKET
  89. size: 1
  90. 11:
  91. material: TROPICAL_FISH_BUCKET
  92. size: 1
  93. # Choose what gamemodes will prevent players from accessing shops. Valid values: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
  94. disableShopsInGamemodes:
  95. - ADVENTURE
  96. - SPECTATOR
  97. # Choose in which worlds players won't be able to access the shop. Same list format as disableShopsInGamemodes
  98. disableShopsInWorlds: []
  99.  
  100. # Choose whether price modifiers should be displayed in percents instead of decimals (eg. 10% instead of 0.10), remember you will still have to use the decimal way in commands
  101. displayPriceModifiersInPercents: true
  102.  
  103. # Choose whether the world-specific permission to access shops should be omitted when player has a shop opened with /shop [player] [shop name]
  104. disableSudoWorldPermissionCheck: false
  105.  
  106. # Choose whether the shop-specific permission to access shops should be omitted when player has a shop opened with /shop [player] [shop name]
  107. disableSudoShopPermissionCheck: false
  108.  
  109. # Choose whether free items (with sell price of $0) should be excluded from being sold using /sell hand and /sell all
  110. sellHandAllExcludeFreeItems: true
  111.  
  112. # Choose predefined settings for all items (will be overriden when set explicitly for an item in shops.yml)
  113. defaultItemSettings:
  114. # Choose whether item meta (name, lore etc.) should be compared when players attempt to sell an item
  115. compareMeta: false
  116. # Choose whether item meta should be removed from an item when it's purchased by a player from the shop
  117. stripItemMeta: false
  118.  
  119. # Format of item lores in shops, %buy% will be replaced with the buy price and %sell% with sell price
  120. shopItemLoreFormat:
  121. # This lore will be applied to items
  122. item:
  123. - "&7Cena kupna: &a%buy%$"
  124. - "&7Cena sprzedaży: &c%sell%$"
  125. # This lore will be applied to items in the buy GUI (when enableBuyGUI is set to true)
  126. itemBuyGUI:
  127. - "&7Cena kupna: &a%buy%$"
  128. # This lore will be applied to items in the sell GUI (when enableSellGUI is set to true)
  129. itemSellGUI:
  130. - "&7Cena sprzedaży: &c%sell%$"
  131. # This lore will be applied to the sell all button in the sell GUI (when enableSellGUI and enableSellGUISellAll are set to true)
  132. itemSellGUISellAll:
  133. - "&7Sprzedaj wszystko za: &c%sell%$"
  134. # This one to permissions
  135. permission:
  136. - "&7Cena kupna: &a%buy%$"
  137. # And this one to enchantments
  138. enchantment:
  139. - "&7Cena kupna: &a%buy%$"
  140. # And the last one to commands
  141. command:
  142. - "&7Cena kupna: &a%buy%$"
  143.  
  144. # Logging settings
  145. log:
  146. # Define whether transactions will be logged to the console/main server log
  147. toConsole: false
  148. # Define whether transactions will be logged to a separate log
  149. toFile: false
  150. # Date format of transactions (http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
  151. formatDate: "dd/MM/yyy HH:mm:ss"
  152. # Log message for bought items
  153. formatBuy: "%player% bought %amount% x %item% for %price%$ from %shop% shop"
  154. # Log message for sold items
  155. formatSell: "%player% sold %amount% x %item% for %price%$ to %shop% shop"
  156. # Log message for sold all items
  157. formatSellAll: "%player% sold all %amount% x %item% for %price%$ to %shop% shop"
  158.  
  159. # Sell hand command settings
  160. sellHand:
  161. # When set to true, players will be able to sell any quantity of the item (the price will be calculated from the base price)
  162. allowAllQuantites: true
  163. # When set to true, /sell hand will work same way as /sell handall does
  164. sellsAllItems: false
  165.  
  166. # Sell all command settings
  167. sellAll:
  168. # When set to true, players will get a detailed summary with prices of each item stack sold
  169. detailedSummary: false
  170.  
  171. buttons:
  172. # "Go back button"
  173. goBack:
  174. item:
  175. # Material name, full list can be found here: http://wiki.brcdev.net/Materials
  176. material: BARRIER
  177. # Amount of the item
  178. amount: 1
  179. # (optional) Custom name
  180. name: "&c&lWróć do poprzedniej kategorii"
  181. # (optional) Lore, can contain multiple lines
  182. lore:
  183. - "&7Kliknij, aby wrócić do głównego menu!"
  184. # Slot in each shop's GUI
  185. slot: 49
  186. # "Previous page" button
  187. previousPage:
  188. item:
  189. material: PAPER
  190. quantity: 1
  191. name: "&c&lPoprzednia strona"
  192. slot: 48
  193. # "Next page" button
  194. nextPage:
  195. item:
  196. material: PAPER
  197. quantity: 1
  198. name: "&a&lNastępna strona"
  199. slot: 50
  200.  
  201. # Elements of the bulk buy GUI
  202. amountSelectionGUIBulkBuy:
  203. # Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  204. size: 18
  205. # Choose if buttons type should be replaced with the bought item's type
  206. replaceButtonsType: true
  207. # Buttons
  208. buttons:
  209. # "Buy 1 stack" button
  210. buy1:
  211. # When no material is specified it will be the type of the item being bought
  212. item:
  213. quantity: 1
  214. name: "&aKup 1 stack"
  215. lore:
  216. - "&7Cena: &6%buy%$"
  217. # Value indicated the amount of stacks
  218. value: 1
  219. slot: 0
  220. # "Buy 2 stacks" button
  221. buy2:
  222. item:
  223. quantity: 2
  224. name: "&aKup 2 stacki"
  225. lore:
  226. - "&7Cena: &6%buy%$"
  227. # Value indicated the amount of stacks
  228. value: 2
  229. slot: 1
  230. # "Buy 3 stacks" button
  231. buy3:
  232. item:
  233. quantity: 3
  234. name: "&aKup 3 stacki"
  235. lore:
  236. - "&7Cena: &6%buy%$"
  237. # Value indicated the amount of stacks
  238. value: 3
  239. slot: 2
  240. buy4:
  241. item:
  242. quantity: 4
  243. name: "&aKup 4 stacki"
  244. lore:
  245. - "&7Cena: &6%buy%$"
  246. value: 4
  247. slot: 3
  248. buy5:
  249. item:
  250. quantity: 5
  251. name: "&aKup 5 stacków"
  252. lore:
  253. - "&7Cena: &6%buy%$"
  254. value: 5
  255. slot: 4
  256. buy6:
  257. item:
  258. quantity: 6
  259. name: "&aKup 6 stacków"
  260. lore:
  261. - "&7Cena: &6%buy%$"
  262. value: 6
  263. slot: 5
  264. buy7:
  265. item:
  266. quantity: 7
  267. name: "&aKup 7 stacków"
  268. lore:
  269. - "&7Cena: &6%buy%$"
  270. value: 7
  271. slot: 6
  272. buy8:
  273. item:
  274. quantity: 8
  275. name: "&aKup 8 stacków"
  276. lore:
  277. - "&7Cena: &6%buy%$"
  278. value: 8
  279. slot: 7
  280. buy9:
  281. item:
  282. quantity: 9
  283. name: "&aKup 9 stacków"
  284. lore:
  285. - "&7Cena: &6%buy%$"
  286. value: 9
  287. slot: 8
  288. # "Cancel" button
  289. cancel:
  290. item:
  291. material: RED_STAINED_GLASS
  292. quantity: 1
  293. name: "&c&lAnuluj"
  294. slot: 13
  295.  
  296. # Elements of the bulk buy GUI
  297. amountSelectionGUIBulkSell:
  298. # Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  299. size: 18
  300. # Choose if buttons type should be replaced with the sold item's type
  301. replaceButtonsType: true
  302. # Buttons
  303. buttons:
  304. # "Sell 1 stack" button
  305. sell1:
  306. # When no material is specified it will be the type of the item being bought
  307. item:
  308. quantity: 1
  309. name: "&aSprzedaj 1 stack"
  310. lore:
  311. - "&7Cena: &6%sell%$"
  312. # Value indicated the amount of stacks
  313. value: 1
  314. slot: 0
  315. # "Sell 2 stacks" button
  316. sell2:
  317. item:
  318. quantity: 2
  319. name: "&aSprzedaj 2 stacki"
  320. lore:
  321. - "&7Cena: &6%sell%$"
  322. # Value indicated the amount of stacks
  323. value: 2
  324. slot: 1
  325. # "Sell 3 stacks" button
  326. sell3:
  327. item:
  328. quantity: 3
  329. name: "&aSprzedaj 3 stacki"
  330. lore:
  331. - "&7Cena: &6%sell%$"
  332. # Value indicated the amount of stacks
  333. value: 3
  334. slot: 2
  335. # "Sell 4 stacks" button
  336. sell4:
  337. item:
  338. quantity: 4
  339. name: "&aSprzedaj 4 stacki"
  340. lore:
  341. - "&7Cena: &6%sell%$"
  342. # Value indicated the amount of stacks
  343. value: 4
  344. slot: 3
  345. sell5:
  346. item:
  347. quantity: 5
  348. name: "&aSprzedaj 5 stacków"
  349. lore:
  350. - "&7Cena: &6%sell%$"
  351. # Value indicated the amount of stacks
  352. value: 5
  353. slot: 4
  354. sell6:
  355. item:
  356. quantity: 6
  357. name: "&aSprzedaj 6 stacków"
  358. lore:
  359. - "&7Cena: &6%sell%$"
  360. # Value indicated the amount of stacks
  361. value: 6
  362. slot: 5
  363. sell7:
  364. item:
  365. quantity: 7
  366. name: "&aSprzedaj 7 stacków"
  367. lore:
  368. - "&7Cena: &6%sell%$"
  369. # Value indicated the amount of stacks
  370. value: 7
  371. slot: 6
  372. sell8:
  373. item:
  374. quantity: 8
  375. name: "&aSprzedaj 8 stacków"
  376. lore:
  377. - "&7Cena: &6%sell%$"
  378. # Value indicated the amount of stacks
  379. value: 8
  380. slot: 7
  381. sell9:
  382. item:
  383. quantity: 9
  384. name: "&aSprzedaj 9 stacków"
  385. lore:
  386. - "&7Cena: &6%sell%$"
  387. # Value indicated the amount of stacks
  388. value: 9
  389. slot: 8
  390. # "Cancel" button
  391. cancel:
  392. item:
  393. material: RED_STAINED_GLASS
  394. quantity: 1
  395. name: "&c&lAnuluj"
  396. slot: 13
  397.  
  398. # Elements of the regular buy/sell GUI
  399. amountSelectionGUI:
  400. # Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  401. size: 54
  402. # Slot of the item being bought/sold
  403. itemSlot: 22
  404. # Buttons
  405. buttons:
  406. # "Set to 1" button
  407. set1:
  408. item:
  409. material: RED_STAINED_GLASS_PANE
  410. quantity: 1
  411. name: "&c&lWybierz 1"
  412. slot: 18
  413. # "Remove 10" button
  414. remove10:
  415. item:
  416. material: RED_STAINED_GLASS_PANE
  417. quantity: 10
  418. name: "&c&lUsuń 10"
  419. slot: 19
  420. # "Remove 1" button
  421. remove1:
  422. item:
  423. material: RED_STAINED_GLASS_PANE
  424. quantity: 1
  425. name: "&c&lUsuń 1"
  426. slot: 20
  427. # "Add 1" button
  428. add1:
  429. item:
  430. material: LIME_STAINED_GLASS_PANE
  431. quantity: 1
  432. name: "&a&lDodaj 1"
  433. slot: 24
  434. # "Add 10" button
  435. add10:
  436. item:
  437. material: LIME_STAINED_GLASS_PANE
  438. quantity: 10
  439. name: "&a&lDodaj 10"
  440. slot: 25
  441. # "Set to 16" button
  442. set16:
  443. item:
  444. material: LIME_STAINED_GLASS_PANE
  445. quantity: 16
  446. name: "&a&lUstaw 16"
  447. slot: 26
  448. # "Set to 64" button
  449. set64:
  450. item:
  451. material: LIME_STAINED_GLASS_PANE
  452. quantity: 64
  453. name: "&a&lUstaw 64"
  454. slot: 26
  455. # "Confirm" button
  456. confirm:
  457. item:
  458. material: LIME_STAINED_GLASS
  459. quantity: 1
  460. name: "&a&lPotwierdź"
  461. slot: 39
  462. # "Sell all" button
  463. sellAll:
  464. item:
  465. material: LIME_STAINED_GLASS
  466. quantity: 1
  467. name: "&a&lSprzedaj wszystko"
  468. slot: 40
  469. # "Buy more" button
  470. buyMore:
  471. item:
  472. material: LIME_STAINED_GLASS
  473. quantity: 64
  474. name: "&a&lKup więcej"
  475. slot: 49
  476. # "Sell more" button
  477. sellMore:
  478. item:
  479. material: LIME_STAINED_GLASS
  480. quantity: 64
  481. name: "&a&lSprzedaj więcej"
  482. slot: 49
  483. # "Cancel" button
  484. cancel:
  485. item:
  486. material: RED_STAINED_GLASS
  487. quantity: 1
  488. name: "&c&lAnuluj"
  489. slot: 41
  490.  
  491. shopMenuItems:
  492. # Has to be unique, value doesn't matter
  493. 1:
  494. item:
  495. material: GRASS_BLOCK
  496. quantity: 1
  497. name: "&e&lMateriały budowlane"
  498. shop: "bloki"
  499. slot: 10
  500. 2:
  501. item:
  502. material: TUBE_CORAL_BLOCK
  503. quantity: 1
  504. name: "&9&lOcean"
  505. shop: "ocean"
  506. slot: 12
  507. 3:
  508. item:
  509. material: OAK_WOOD
  510. quantity: 1
  511. name: "&6&lTartak"
  512. shop: "tartak"
  513. slot: 14
  514. 4:
  515. item:
  516. material: POTATO
  517. quantity: 1
  518. name: "&2&lFarma"
  519. shop: "farma"
  520. slot: 28
  521. 5:
  522. item:
  523. material: SPIDER_EYE
  524. quantity: 1
  525. name: "&c&lMyśliwy"
  526. shop: "mysliwy"
  527. slot: 16
  528. 6:
  529. item:
  530. material: GRASS
  531. quantity: 1
  532. name: "&a&lZielarz"
  533. shop: "zielarz"
  534. slot: 30
  535. 7:
  536. item:
  537. material: SADDLE
  538. quantity: 1
  539. name: "&7&lRóżne"
  540. shop: "rozne"
  541. slot: 32
  542. 8:
  543. item:
  544. material: SPAWNER
  545. quantity: 1
  546. name: "&7&lSpawnery"
  547. shop: "spawnery"
  548. slot: 34
  549. 9:
  550. item:
  551. material: DIAMOND
  552. quantity: 1
  553. name: "&b&lSurowce"
  554. shop: "surowce"
  555. slot: 22
  556. specialElements:
  557. balance:
  558. item:
  559. material: GOLD_INGOT
  560. quantity: 1
  561. name: "&6&lTwój stan konta"
  562. lore:
  563. - "&7$%balance%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement