Advertisement
Guest User

gui.yml [SignShop]

a guest
Mar 11th, 2020
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.91 KB | None | 0 0
  1. #
  2. # Variables (use anywhere):
  3. #
  4. # %trading-material% - Bukkit material name of the trading item (e.g. DIAMOND_SWORD)
  5. # %trading-data% - Numerical data value of the trading item (e.g. 0)
  6. # %trading-friendlyname% - EITHER the Bukkit material name in a camel case format (e.g. Diamond Sword) OR for custom items the display name of an item (e.g. &bPowerful Sword)
  7. # %trading-friendlytype% - The bukkit material name in a camel case format (e.g. Diamond Sword)
  8. # %amount% - The amount of items being traded (e.g. 16)
  9. # %price% - The trade price for the the amount of the item being traded (e.g. $1,000)
  10. # %price-singular% - The trade price for 1x the item being traded (e.g. $10)
  11. # %price-singular-buy% - The trade price for 1x the item being PURCHASED (e.g. $10) (For use in dummy items when %price-singular% returns 0)
  12. # %price-singular-sell% - The trade price for 1x the item being SOLD (e.g. $10) (For use in dummy items when %price-singular% returns 0)
  13. #
  14. # GUI Item Layout:
  15. # If a <DEFAULT: ...> tag is shown, then if the option isn't specified the plugin will use the value in the default tag
  16. #
  17. # <unique identifier>: -> A unique identifier for the item, can be anything. <REQUIRED>
  18. # type: -> The material of the item in the GUI. (Case insensitive, can use spaces instead of _) <DEFAULT: STONE>
  19. # data: -> The data of the item in the GUI. <DEFAULT: 0>
  20. # name: '&cClick to purchase' -> The display name of the item in the GUI. <DEFAULT: NONE>
  21. # stackamount: 1 -> The size of the stack in the GUI. <DEFAULT: 1>
  22. # tradeamount: 1 -> The size of the stack being traded with the player. <DEFAULT: STACK SIZE>
  23. # action: buy -> What the item will do when clicked. Buy, Sell, Buy All, Sell All or Dummy. (Dummy means it'll do nothing) (Case insensitive) <REQUIRED>
  24. # slot: 0 -> The slot to place this item in <REQUIRED>
  25. # lore: -> What the lore of the item will be <DEFAULT: NONE>
  26. # - ''
  27. # - '&7My very fancy lore.'
  28. # - '&eOoh! Multiple lines!'
  29. # - ''
  30. # glow: false -> Should we make the item glow without adding any enchantments? <DEFAULT: FALSE>
  31. # enchants: -> Should the item have any enchantments? <DEFAULT: NONE>
  32. # - dig speed
  33. # flags: -> Should the item have any item flags? <DEFAULT: NONE>
  34. # - hide enchants
  35. #
  36.  
  37. both:
  38. rows: 6
  39. title: '&5&lStore'
  40. middleitem:
  41. type: '%trading-material%'
  42. data: '%trading-data%'
  43. name: '&bTrading %trading-friendlyname%'
  44. action: dummy
  45. slot: 13
  46. lore:
  47. - ''
  48. - '&7&o(Buy 1 for $%price-singular-buy%/ea)'
  49. - '&7&o(Sell 1 for $%price-singular-sell%/ea)'
  50. - ''
  51. glow: true
  52. buyinventory:
  53. type: chest
  54. name: '&bFill your inventory with &e%trading-friendlyname%'
  55. action: buy all
  56. slot: 19
  57. lore:
  58. - ''
  59. - '&7This will fill your empty slots and unfilled stacks'
  60. - '&7with &e%trading-friendlyname%&7.'
  61. - ''
  62. - '&eAmount: &f%amount%'
  63. - '&ePrice: &a$%price%'
  64. - '&7&o(%amount% @ $%price-singular%/ea)'
  65. - ''
  66. buy1item:
  67. type: lime stained glass pane
  68. name: '&a&lPurchase %trading-friendlyname%'
  69. action: buy
  70. slot: 27
  71. lore:
  72. - ''
  73. - '&eAmount: &f%amount%'
  74. - '&ePrice: &a$%price%'
  75. - '&7&o(%amount% @ $%price-singular%/ea)'
  76. - ''
  77. buy2item:
  78. type: lime stained glass pane
  79. name: '&a&lPurchase %trading-friendlyname%'
  80. stackamount: 2 # no need to specify trade amount, as when left blank it copies the stack amount
  81. action: buy
  82. slot: 28
  83. lore:
  84. - ''
  85. - '&eAmount: &f%amount%'
  86. - '&ePrice: &a$%price%'
  87. - '&7&o(%amount% @ $%price-singular%/ea)'
  88. - ''
  89. buy4item:
  90. type: lime stained glass pane
  91. name: '&a&lPurchase %trading-friendlyname%'
  92. stackamount: 4
  93. action: buy
  94. slot: 29
  95. lore:
  96. - ''
  97. - '&eAmount: &f%amount%'
  98. - '&ePrice: &a$%price%'
  99. - '&7&o(%amount% @ $%price-singular%/ea)'
  100. - ''
  101. buy8item:
  102. type: lime stained glass pane
  103. name: '&a&lPurchase %trading-friendlyname%'
  104. stackamount: 8
  105. action: buy
  106. slot: 36
  107. lore:
  108. - ''
  109. - '&eAmount: &f%amount%'
  110. - '&ePrice: &a$%price%'
  111. - '&7&o(%amount% @ $%price-singular%/ea)'
  112. - ''
  113. buy10item:
  114. type: lime stained glass pane
  115. name: '&a&lPurchase %trading-friendlyname%'
  116. stackamount: 10
  117. action: buy
  118. slot: 37
  119. lore:
  120. - ''
  121. - '&eAmount: &f%amount%'
  122. - '&ePrice: &a$%price%'
  123. - '&7&o(%amount% @ $%price-singular%/ea)'
  124. - ''
  125. buy16item:
  126. type: lime stained glass pane
  127. name: '&a&lPurchase %trading-friendlyname%'
  128. stackamount: 16
  129. action: buy
  130. slot: 38
  131. lore:
  132. - ''
  133. - '&eAmount: &f%amount%'
  134. - '&ePrice: &a$%price%'
  135. - '&7&o(%amount% @ $%price-singular%/ea)'
  136. - ''
  137. buy32item:
  138. type: lime stained glass pane
  139. name: '&a&lPurchase %trading-friendlyname%'
  140. stackamount: 32
  141. action: buy
  142. slot: 45
  143. lore:
  144. - ''
  145. - '&eAmount: &f%amount%'
  146. - '&ePrice: &a$%price%'
  147. - '&7&o(%amount% @ $%price-singular%/ea)'
  148. - ''
  149. buy48item:
  150. type: lime stained glass pane
  151. name: '&a&lPurchase %trading-friendlyname%'
  152. stackamount: 48
  153. action: buy
  154. slot: 46
  155. lore:
  156. - ''
  157. - '&eAmount: &f%amount%'
  158. - '&ePrice: &a$%price%'
  159. - '&7&o(%amount% @ $%price-singular%/ea)'
  160. - ''
  161. buy64item:
  162. type: lime stained glass pane
  163. name: '&a&lPurchase %trading-friendlyname%'
  164. stackamount: 64
  165. action: buy
  166. slot: 47
  167. lore:
  168. - ''
  169. - '&eAmount: &f%amount%'
  170. - '&ePrice: &a$%price%'
  171. - '&7&o(%amount% @ $%price-singular%/ea)'
  172. - ''
  173. sellinventory:
  174. type: chest
  175. name: '&bSell all of your &e%trading-friendlyname%'
  176. action: sell all
  177. slot: 25
  178. lore:
  179. - ''
  180. - '&7This will sell all of your &e%trading-friendlyname%'
  181. - ''
  182. - '&eAmount: &f%amount%'
  183. - '&ePrice: &a$%price%'
  184. - '&7&o(%amount% @ $%price-singular%/ea)'
  185. - ''
  186. sell1item:
  187. type: lime stained glass pane
  188. name: '&a&lSell %trading-friendlyname%'
  189. action: sell
  190. slot: 33
  191. lore:
  192. - ''
  193. - '&eAmount: &f%amount%'
  194. - '&ePrice: &a$%price%'
  195. - '&7&o(%amount% @ $%price-singular%/ea)'
  196. - ''
  197. sell2item:
  198. type: lime stained glass pane
  199. name: '&a&lSell %trading-friendlyname%'
  200. stackamount: 2
  201. action: sell
  202. slot: 34
  203. lore:
  204. - ''
  205. - '&eAmount: &f%amount%'
  206. - '&ePrice: &a$%price%'
  207. - '&7&o(%amount% @ $%price-singular%/ea)'
  208. - ''
  209. sell4item:
  210. type: lime stained glass pane
  211. name: '&a&lSell %trading-friendlyname%'
  212. stackamount: 4
  213. action: sell
  214. slot: 35
  215. lore:
  216. - ''
  217. - '&eAmount: &f%amount%'
  218. - '&ePrice: &a$%price%'
  219. - '&7&o(%amount% @ $%price-singular%/ea)'
  220. - ''
  221. sell8item:
  222. type: lime stained glass pane
  223. name: '&a&lSell %trading-friendlyname%'
  224. stackamount: 8
  225. action: sell
  226. slot: 42
  227. lore:
  228. - ''
  229. - '&eAmount: &f%amount%'
  230. - '&ePrice: &a$%price%'
  231. - '&7&o(%amount% @ $%price-singular%/ea)'
  232. - ''
  233. sell10item:
  234. type: lime stained glass pane
  235. name: '&a&lSell %trading-friendlyname%'
  236. stackamount: 10
  237. action: sell
  238. slot: 43
  239. lore:
  240. - ''
  241. - '&eAmount: &f%amount%'
  242. - '&ePrice: &a$%price%'
  243. - '&7&o(%amount% @ $%price-singular%/ea)'
  244. - ''
  245. sell16item:
  246. type: lime stained glass pane
  247. name: '&a&lSell %trading-friendlyname%'
  248. stackamount: 16
  249. action: sell
  250. slot: 44
  251. lore:
  252. - ''
  253. - '&eAmount: &f%amount%'
  254. - '&ePrice: &a$%price%'
  255. - '&7&o(%amount% @ $%price-singular%/ea)'
  256. - ''
  257. sell32item:
  258. type: lime stained glass pane
  259. name: '&a&lSell %trading-friendlyname%'
  260. stackamount: 32
  261. action: sell
  262. slot: 51
  263. lore:
  264. - ''
  265. - '&eAmount: &f%amount%'
  266. - '&ePrice: &a$%price%'
  267. - '&7&o(%amount% @ $%price-singular%/ea)'
  268. - ''
  269. sell48item:
  270. type: lime stained glass pane
  271. name: '&a&lSell %trading-friendlyname%'
  272. stackamount: 48
  273. action: sell
  274. slot: 52
  275. lore:
  276. - ''
  277. - '&eAmount: &f%amount%'
  278. - '&ePrice: &a$%price%'
  279. - '&7&o(%amount% @ $%price-singular%/ea)'
  280. - ''
  281. sell64item:
  282. type: lime stained glass pane
  283. name: '&a&lSell %trading-friendlyname%'
  284. stackamount: 64
  285. action: sell
  286. slot: 53
  287. lore:
  288. - ''
  289. - '&eAmount: &f%amount%'
  290. - '&ePrice: &a$%price%'
  291. - '&7&o(%amount% @ $%price-singular%/ea)'
  292. - ''
  293.  
  294.  
  295.  
  296. buy:
  297. rows: 6
  298. title: '&5&lStore'
  299. infoitem:
  300. type: dragon egg
  301. name: '&cTrading %trading-friendlyname%'
  302. action: buy all
  303. slot: 13
  304. lore:
  305. - ''
  306. - '&eAmount: &f%amount%'
  307. - '&ePrice: &a$%price%'
  308. - '&7&o(%amount% @ $%price-singular%/ea)'
  309. - ''
  310. glow: true
  311. buy1item:
  312. type: '%trading-material%'
  313. data: '%trading-data%'
  314. name: '&cClick to purchase'
  315. action: buy
  316. slot: 28
  317. lore:
  318. - ''
  319. - '&eAmount: &f%amount%'
  320. - '&ePrice: &a$%price%'
  321. - '&7&o(%amount% @ $%price-singular%/ea)'
  322. - ''
  323. buy2item:
  324. type: '%trading-material%'
  325. data: '%trading-data%'
  326. name: '&cClick to purchase'
  327. stackamount: 2
  328. action: buy
  329. slot: 29
  330. lore:
  331. - ''
  332. - '&aBuy &e%amount% &afor &b$%price%&a.'
  333. - ''
  334. buy3item:
  335. type: '%trading-material%'
  336. data: '%trading-data%'
  337. name: '&cClick to purchase'
  338. stackamount: 3
  339. action: buy
  340. slot: 30
  341. lore:
  342. - ''
  343. - '&eAmount: &f%amount%'
  344. - '&ePrice: &a$%price%'
  345. - '&7&o(%amount% @ $%price-singular%/ea)'
  346. - ''
  347. buy4item:
  348. type: '%trading-material%'
  349. data: '%trading-data%'
  350. name: '&cClick to purchase'
  351. stackamount: 4
  352. action: buy
  353. slot: 31
  354. lore:
  355. - ''
  356. - '&eAmount: &f%amount%'
  357. - '&ePrice: &a$%price%'
  358. - '&7&o(%amount% @ $%price-singular%/ea)'
  359. - ''
  360. buy5item:
  361. type: '%trading-material%'
  362. data: '%trading-data%'
  363. name: '&cClick to purchase'
  364. stackamount: 5
  365. action: buy
  366. slot: 32
  367. lore:
  368. - ''
  369. - '&eAmount: &f%amount%'
  370. - '&ePrice: &a$%price%'
  371. - '&7&o(%amount% @ $%price-singular%/ea)'
  372. - ''
  373. buy6item:
  374. type: '%trading-material%'
  375. data: '%trading-data%'
  376. name: '&cClick to purchase'
  377. stackamount: 6
  378. action: buy
  379. slot: 33
  380. lore:
  381. - ''
  382. - '&eAmount: &f%amount%'
  383. - '&ePrice: &a$%price%'
  384. - '&7&o(%amount% @ $%price-singular%/ea)'
  385. - ''
  386. buy7item:
  387. type: '%trading-material%'
  388. data: '%trading-data%'
  389. name: '&cClick to purchase'
  390. stackamount: 7
  391. action: buy
  392. slot: 34
  393. lore:
  394. - ''
  395. - '&eAmount: &f%amount%'
  396. - '&ePrice: &a$%price%'
  397. - '&7&o(%amount% @ $%price-singular%/ea)'
  398. - ''
  399. buy8item:
  400. type: '%trading-material%'
  401. data: '%trading-data%'
  402. name: '&cClick to purchase'
  403. stackamount: 8
  404. action: buy
  405. slot: 37
  406. lore:
  407. - ''
  408. - '&eAmount: &f%amount%'
  409. - '&ePrice: &a$%price%'
  410. - '&7&o(%amount% @ $%price-singular%/ea)'
  411. - ''
  412. buy9item:
  413. type: '%trading-material%'
  414. data: '%trading-data%'
  415. name: '&cClick to purchase'
  416. stackamount: 9
  417. action: buy
  418. slot: 38
  419. lore:
  420. - ''
  421. - '&eAmount: &f%amount%'
  422. - '&ePrice: &a$%price%'
  423. - '&7&o(%amount% @ $%price-singular%/ea)'
  424. - ''
  425. buy10item:
  426. type: '%trading-material%'
  427. data: '%trading-data%'
  428. name: '&cClick to purchase'
  429. stackamount: 10
  430. action: buy
  431. slot: 39
  432. lore:
  433. - ''
  434. - '&eAmount: &f%amount%'
  435. - '&ePrice: &a$%price%'
  436. - '&7&o(%amount% @ $%price-singular%/ea)'
  437. - ''
  438. buy16item:
  439. type: '%trading-material%'
  440. data: '%trading-data%'
  441. name: '&cClick to purchase'
  442. stackamount: 16
  443. action: buy
  444. slot: 40
  445. lore:
  446. - ''
  447. - '&eAmount: &f%amount%'
  448. - '&ePrice: &a$%price%'
  449. - '&7&o(%amount% @ $%price-singular%/ea)'
  450. - ''
  451. buy32item:
  452. type: '%trading-material%'
  453. data: '%trading-data%'
  454. name: '&cClick to purchase'
  455. stackamount: 32
  456. action: buy
  457. slot: 41
  458. lore:
  459. - ''
  460. - '&eAmount: &f%amount%'
  461. - '&ePrice: &a$%price%'
  462. - '&7&o(%amount% @ $%price-singular%/ea)'
  463. - ''
  464. buy48item:
  465. type: '%trading-material%'
  466. data: '%trading-data%'
  467. name: '&cClick to purchase'
  468. stackamount: 48
  469. action: buy
  470. slot: 42
  471. lore:
  472. - ''
  473. - '&eAmount: &f%amount%'
  474. - '&ePrice: &a$%price%'
  475. - '&7&o(%amount% @ $%price-singular%/ea)'
  476. - ''
  477. buy64item:
  478. type: '%trading-material%'
  479. data: '%trading-data%'
  480. name: '&cClick to purchase'
  481. stackamount: 64
  482. action: buy
  483. slot: 43
  484. lore:
  485. - ''
  486. - '&eAmount: &f%amount%'
  487. - '&ePrice: &a$%price%'
  488. - '&7&o(%amount% @ $%price-singular%/ea)'
  489. - ''
  490.  
  491.  
  492.  
  493. sell:
  494. rows: 6
  495. title: '&5&lStore'
  496. infoitem:
  497. type: dragon egg
  498. name: '&cTrading %trading-friendlyname%'
  499. action: sell all
  500. slot: 13
  501. lore:
  502. - ''
  503. - '&eAmount: &f%amount%'
  504. - '&ePrice: &a$%price%'
  505. - '&7&o(%amount% @ $%price-singular%/ea)'
  506. - ''
  507. glow: true
  508. sell1item:
  509. type: '%trading-material%'
  510. data: '%trading-data%'
  511. name: '&cClick to sell'
  512. action: sell
  513. slot: 28
  514. lore:
  515. - ''
  516. - '&eAmount: &f%amount%'
  517. - '&ePrice: &a$%price%'
  518. - '&7&o(%amount% @ $%price-singular%/ea)'
  519. - ''
  520. sell2item:
  521. type: '%trading-material%'
  522. data: '%trading-data%'
  523. name: '&cClick to sell'
  524. stackamount: 2
  525. action: sell
  526. slot: 29
  527. lore:
  528. - ''
  529. - '&eAmount: &f%amount%'
  530. - '&ePrice: &a$%price%'
  531. - '&7&o(%amount% @ $%price-singular%/ea)'
  532. - ''
  533. sell3item:
  534. type: '%trading-material%'
  535. data: '%trading-data%'
  536. name: '&cClick to sell'
  537. stackamount: 3
  538. action: sell
  539. slot: 30
  540. lore:
  541. - ''
  542. - '&eAmount: &f%amount%'
  543. - '&ePrice: &a$%price%'
  544. - '&7&o(%amount% @ $%price-singular%/ea)'
  545. - ''
  546. sell4item:
  547. type: '%trading-material%'
  548. data: '%trading-data%'
  549. name: '&cClick to sell'
  550. stackamount: 4
  551. action: sell
  552. slot: 31
  553. lore:
  554. - ''
  555. - '&eAmount: &f%amount%'
  556. - '&ePrice: &a$%price%'
  557. - '&7&o(%amount% @ $%price-singular%/ea)'
  558. - ''
  559. sell5item:
  560. type: '%trading-material%'
  561. data: '%trading-data%'
  562. name: '&cClick to sell'
  563. stackamount: 5
  564. action: sell
  565. slot: 32
  566. lore:
  567. - ''
  568. - '&eAmount: &f%amount%'
  569. - '&ePrice: &a$%price%'
  570. - '&7&o(%amount% @ $%price-singular%/ea)'
  571. - ''
  572. sell6item:
  573. type: '%trading-material%'
  574. data: '%trading-data%'
  575. name: '&cClick to sell'
  576. stackamount: 6
  577. action: sell
  578. slot: 33
  579. lore:
  580. - ''
  581. - '&eAmount: &f%amount%'
  582. - '&ePrice: &a$%price%'
  583. - '&7&o(%amount% @ $%price-singular%/ea)'
  584. - ''
  585. sell7item:
  586. type: '%trading-material%'
  587. data: '%trading-data%'
  588. name: '&cClick to sell'
  589. stackamount: 7
  590. action: sell
  591. slot: 34
  592. lore:
  593. - ''
  594. - '&eAmount: &f%amount%'
  595. - '&ePrice: &a$%price%'
  596. - '&7&o(%amount% @ $%price-singular%/ea)'
  597. - ''
  598. sell8item:
  599. type: '%trading-material%'
  600. data: '%trading-data%'
  601. name: '&cClick to sell'
  602. stackamount: 8
  603. action: sell
  604. slot: 37
  605. lore:
  606. - ''
  607. - '&eAmount: &f%amount%'
  608. - '&ePrice: &a$%price%'
  609. - '&7&o(%amount% @ $%price-singular%/ea)'
  610. - ''
  611. sell9item:
  612. type: '%trading-material%'
  613. data: '%trading-data%'
  614. name: '&cClick to sell'
  615. stackamount: 9
  616. action: sell
  617. slot: 38
  618. lore:
  619. - ''
  620. - '&eAmount: &f%amount%'
  621. - '&ePrice: &a$%price%'
  622. - '&7&o(%amount% @ $%price-singular%/ea)'
  623. - ''
  624. sell10item:
  625. type: '%trading-material%'
  626. data: '%trading-data%'
  627. name: '&cClick to sell'
  628. stackamount: 10
  629. action: sell
  630. slot: 39
  631. lore:
  632. - ''
  633. - '&eAmount: &f%amount%'
  634. - '&ePrice: &a$%price%'
  635. - '&7&o(%amount% @ $%price-singular%/ea)'
  636. - ''
  637. sell16item:
  638. type: '%trading-material%'
  639. data: '%trading-data%'
  640. name: '&cClick to sell'
  641. stackamount: 16
  642. action: sell
  643. slot: 40
  644. lore:
  645. - ''
  646. - '&eAmount: &f%amount%'
  647. - '&ePrice: &a$%price%'
  648. - '&7&o(%amount% @ $%price-singular%/ea)'
  649. - ''
  650. sell32item:
  651. type: '%trading-material%'
  652. data: '%trading-data%'
  653. name: '&cClick to sell'
  654. stackamount: 32
  655. action: sell
  656. slot: 41
  657. lore:
  658. - ''
  659. - '&eAmount: &f%amount%'
  660. - '&ePrice: &a$%price%'
  661. - '&7&o(%amount% @ $%price-singular%/ea)'
  662. - ''
  663. sell48item:
  664. type: '%trading-material%'
  665. data: '%trading-data%'
  666. name: '&cClick to sell'
  667. stackamount: 48
  668. action: sell
  669. slot: 42
  670. lore:
  671. - ''
  672. - '&eAmount: &f%amount%'
  673. - '&ePrice: &a$%price%'
  674. - '&7&o(%amount% @ $%price-singular%/ea)'
  675. - ''
  676. sell64item:
  677. type: '%trading-material%'
  678. data: '%trading-data%'
  679. name: '&cClick to sell'
  680. stackamount: 64
  681. action: sell
  682. slot: 43
  683. lore:
  684. - ''
  685. - '&eAmount: &f%amount%'
  686. - '&ePrice: &a$%price%'
  687. - '&7&o(%amount% @ $%price-singular%/ea)'
  688. - ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement