Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.46 KB | None | 0 0
  1. database:
  2. #Database backend type, can be set to mysql or sqlite
  3. type: sqlite
  4. #MySQL database host
  5. mySQLHost: localhost
  6. #MySQL connection port number
  7. mySQLPort: 3306
  8. #MySQL database name
  9. mySQLDatabase: db
  10. #MySQL database user
  11. mySQLUser: root
  12. #MySQL user's password
  13. mySQLPassword: ""
  14. #MySQL table names
  15. tableNames:
  16. auctions: "auctions"
  17. players: "players"
  18.  
  19. #Logging settings
  20. log:
  21. #Define whether transactions will be logged to the console/main server log
  22. toConsole: true
  23. #Define whether transactions will be logged to a separate log
  24. toFile: false
  25. #Date format of transactions (http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
  26. formatDate: "yyyy/MM/dd HH:mm:ss"
  27. #Log message formats
  28. messageFormats:
  29. start: "%player% put up %quantity% x %item% for an auction #%id%! Starting price: $%startingprice%, bid increment: $%increment%, duration: %duration%"
  30. bid: "%player% placed bid of $%amount% on auction #%id% (%quantity% x %item%)."
  31. end: "%buyer% won auction #%id% (%quantity% x %item%) with a bid of $%price%."
  32. endNoBids: "Auction #%id% (%quantity% x %item%) ended with no bids."
  33. cancel: "Auction #%id% (%quantity% x %item%) has been cancelled by the seller."
  34. cancelAdmin: "Auction #%id% (%quantity% x %item%) has been cancelled by %player%."
  35.  
  36. #Default settings for newly created auctions when not specified
  37. defaultSettings:
  38. quantity: 1
  39. price: 100.0
  40. increment: 10.0
  41. #Duration in seconds
  42. duration: 600
  43.  
  44. #Minium settings values for newly created auctions (set to -1 for no limit)
  45. minSettings:
  46. quantity: -1
  47. price: 50
  48. increment: 10
  49. #Duration in seconds
  50. duration: 300
  51.  
  52. #Maximum settings values for newly created auctions (set to -1 for no limit), 64 is the maximal supported quantity
  53. maxSettings:
  54. quantity: 64
  55. price: 10000000
  56. increment: 1000000
  57. #Duration in seconds
  58. duration: 172800
  59.  
  60. #Choose the scope of sent messages.
  61. #Valid values are:
  62. #OWNER (send only to the auction owner)
  63. #TAKING_PART (send to auction owner + all players who had bid earlier)
  64. #ALL (send to all online players)
  65. #NONE (the message won't be sent)
  66. messages:
  67. start: ALL
  68. bid: TAKING_PART
  69. end: TAKING_PART
  70. endNoBids: OWNER
  71. cancel: ALL
  72. cancelAdmin: ALL
  73.  
  74. #Choose how many auctions player will be able to run at the same time, permission format is auctionguiplus.limit.NAME eg. auctionguiplus.limit.default
  75. limits:
  76. #"default" is required
  77. default: 3
  78. donator: 50
  79.  
  80. #Choose what gamemodes will prevent players from accessing auctions. Valid values: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
  81. disableInGamemodes:
  82. - ADVENTURE
  83. - CREATIVE
  84. - SPECTATOR
  85.  
  86. #Choose in which worlds auctions will be completely disabled
  87. disableInWorlds:
  88. - world_the
  89. #Choose if messages shouldn't be broadcasted in worlds with auctions disabled
  90. hideMessagesInDisabledWorlds: false
  91.  
  92. #List of items players won't be to put up for auction. Explained in FAQ #1 here: https://www.spigotmc.org/resources/auctiongui-1-9-support.19015/
  93. bannedItems:
  94. 1:
  95. material: STICK
  96. compareQuantity: true
  97. compareItemMeta: false
  98.  
  99. #Choose if auction starting should be handled by GUI
  100. enableStartGui: true
  101. #Date format; more info: https://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html
  102. dateFormat: "dd.MM.yyyy, HH:mm"
  103. #Choose if players will be able to cancel their own auctions
  104. allowCancellingOwnAuctions: true
  105. #Choose if players will be able to bid only fixed amounts (current price + increment) or a custom one using the less/more buttons
  106. fixedBidAmountOnly: false
  107. #Choose if players will be able to bid of any size using the /bid command (when set to true) or only multiplies of the auction increment (when set to false) (takes effect only when fixedBidAmountOnly is disabled)
  108. allowAnyBidAmount: false
  109. #Choose if auctions view will be refresh automatically every X ticks (set below in autoRefreshInterval)
  110. autoRefresh: false
  111. #Interval (in ticks, 20 ticks = 1 second) between refreshing auctions view
  112. #Warning: This can cause log when set to low interval with many players online/auctions running
  113. autoRefreshInterval: 20
  114. #Choose if won/unclaimed items should expire
  115. autoExpire:
  116. won:
  117. #Choose if won items should expire
  118. expire: true
  119. #Won items will expire after specified time (in minutes) after not being claimed
  120. delay: 4320
  121. unclaimed:
  122. #Choose if unclaimed (returned/cancelled) items should expire
  123. expire: true
  124. #Uncalimed (returned/cancelled) items will expire after specified time (in minutes) after not being claimed
  125. delay: 4320
  126. #Auctions will be checked if they're supposed to expire every X minutes specified below (setting this to a low value may result in lag)
  127. checkInterval: 5
  128.  
  129. #Choose if earnings should be stored in GUI so players can claim it themselves (true) or deposited directly to their accounts (false)
  130. storeEarnings: false
  131.  
  132.  
  133.  
  134. *****************************************
  135. lang.yml // of course these lines weren't there BTW Ignore the language
  136. *****************************************
  137.  
  138.  
  139.  
  140. PREFIX: '&2&lSide &8>> &7'
  141. LANG:
  142. CONSOLE: Konsole
  143. MSG:
  144. ERROR: '&cNotika kluda, ludzu sazinies ar servera Ipasnieku.'
  145. INGAMEONLY: So komandu var izmantot tikai spele.
  146. NOACCESS: '&cTev nav atlauts izmantot to.'
  147. AUCTIONSNOTLOADED: '&cIzsoles vel nav sagatavojusas, ludzu megini velak.'
  148. NOTLOADED: '&cTavi dati vel nav sagatavoti, ludzu megini velak.'
  149. PLAYERONLY: So komandu var izmantot tikai speletajs.
  150. FULLINVENTORY: '&cTava Inventory nepietiek vietas.'
  151. WORLDBANNED: '&cIzsoles ir atspejotas saja pasaule.'
  152. GAMEMODEBANNED: Tu nevari pieklut izsolem, kamer esi %gamemode% gamemode.
  153. USAGE:
  154. SUBCOMMAND: '&7Nepareiza komandas izmantosana. Pareizs izmantojums: &c%usage%'
  155. AUCTION: '&7Nepareiza komandas izmantosana. Pareizs izmantojums: &c/auc start
  156. [daudzums] [sakuma cena] [likmes pieaugums] [laiks sekundes]&7, piemeram, &c/auc
  157. start 1 50 10 360s'
  158. BID: '&7Nepareiza komandas izmantosana. Pareizs izmantojums: &c/bid <izsoles ID>
  159. [daudzums]'
  160. ENDED: Si izsole ir beigusies, uzgaidi lidz ta atjauninasies.
  161. AUCTION:
  162. RELOAD:
  163. RELOADED: Konfiguracija parladeta!
  164. CANCEL:
  165. BROADCAST: 'Izsoli #%id% &a(%quantity%x %item%&a)&7 atcela tas sacejs.'
  166. CANCELADMIN:
  167. CANCELLEDBY: 'Tavu izsoli #%id% &a(%quantity%x %item%&a)&7 atcela speletajs
  168. %player%.'
  169. BROADCAST: 'Izsoli #%id% &a(%quantity%x %item%&a)&7 atcela speletajs %player%.'
  170. CREATE:
  171. QUANTITY: daudzums
  172. PRICE: sakuma cena
  173. INCREMENT: likmes pieaugums
  174. DURATION: ilgums
  175. VALUEINVALID: '&cNederigs(a) %setting% noradits(a).'
  176. VALUETOOLOW: '&cParak mazs(a) %setting% noradits(a). Tu nevari noradit mazak
  177. par %value%.'
  178. VALUETOOHIGH: '&cParak liels(a) %setting% noradits(a). Tu nevari noradit vairak
  179. par %value%.'
  180. TOOFEWITEM: '&cTev vajag vismaz &a%quantity%x %item%&c lai saktu izsoli.'
  181. NOITEM: '&cTev ir jatur lieta roka lai saktu izsoli.'
  182. BANNEDITEM: '&cTu nevari so Itemu ielikt izsole.'
  183. LIMIT: '&cTu nevari sakt vairak par %limit% izsolem viena laika.'
  184. CREATED: '&cTu ieliki &a%quantity%x %item%&c izsole.'
  185. BROADCAST: '%player% ielika &a%quantity%x %item%&7 izsole #%id%! Sakuma cena:
  186. $%startingprice%, minimalais likmes pieaugums: $%increment%, ilgums: %duration%'
  187. END:
  188. BOUGHT:
  189. BOUGHT: '%buyer% uzvareja tava izsole #%id% &a(%quantity%x %item%&a)&7 ar
  190. piesolito likmi $%price% apmera.'
  191. BOUGHTBY: 'Tu uzvareji %seller% izsole #%id% &a(%quantity%x %item%&a)&7 ar
  192. piesolito likmi $%price% apmera.'
  193. BROADCAST: '%buyer% uzvareja izsole #%id% &a(%quantity%x %item%&a)&7 ar piesolito
  194. likmi $%price% apmera.'
  195. NOBIDS:
  196. ENDED: 'Tava izsole #%id% &a(%quantity%x %item%&a)&7 beidzas bez neviena piedavajuma.'
  197. BROADCAST: 'Izsole #%id% &a(%quantity%x %item%&a)&7 beidzas bez neviena piedavajuma.'
  198. BID:
  199. ID: izsoles ID
  200. AMOUNT: likme
  201. VALUEINVALID: '&cNederigs(a) %setting% noradits(a).'
  202. CANNOTBIDOWN: '&cTu nevari solit sava izsole.'
  203. CANNOTBIDLASTBID: '&cTu jau esi piesolijis augstako likmi, gaidi lidz kads parsolis.'
  204. CANNOTBIDNOTINPROGRESS: '&cTu vari solit tikai aktivas izsoles.'
  205. TOOFEW: '&cTev vajag solit vismaz $%amount%.'
  206. NOTMULTIPLY: '&cLikmes pieaugumam ir jabut vismaz $%amount% lielakam.'
  207. FIXEDONLY: '&cTu nevari izveleties likmes apmeru, sai izsolei ir fiksets likmes
  208. pieaugums $%increment% apmera.'
  209. CANNOTAFFORD: '&cTu nevari atlauties to likmi.'
  210. BID: 'Tu veiksmigi piesoliji likmi $%price% apmera izsole #%id% &a(%quantity%x
  211. %item%&a)&7.'
  212. BIDBROADCAST: '%player% piesolija likmi $%amount% apmera izsole #%id% &a(%quantity%x
  213. %item%&a)&7.'
  214. EXPIRE:
  215. EXPIRED: '&cTava neatgriezta lieta izsole #%id% vairs nav pieejama.'
  216. AUCTION:
  217. SELLER:
  218. NONE: nav
  219. BUYER:
  220. NONE: nav
  221. HIGHESTBIDBY:
  222. NONE: nav
  223. STATUS:
  224. CANCELLED: atcelta
  225. CANCELLEDADMIN: atcelta
  226. INPROGRESS: aktiva
  227. ENDEDSOLD: pardots
  228. ENDEDENDED: beidzas
  229. GUI:
  230. CONFIRM: '&a&lLABI'
  231. EXPIRED:
  232. TITLE: Izsole beidzas
  233. MESSAGE: '&c&lIzsole beidzas'
  234. DESC: '&7Si izsole vairs nav pieejama.'
  235. CANCELLED:
  236. TITLE: Izsole atcelta
  237. MESSAGE: '&a&lIzsole atcelta'
  238. DESC: |-
  239. &7Tu atceli izsoli #%id%
  240. &7&a(%quantity%x %item%&a)&7.
  241. BID:
  242. TITLE: Likme piesolita
  243. MESSAGE: '&a&lLikme piesolita'
  244. DESC: "&7Tu veiksmigi piesoliji likmi \n&7$%price% apmera izsole #%id% \n&7(%quantity%x\
  245. \ %item%&7)."
  246. CANNOTBIDOWN:
  247. TITLE: Nevareja piesolit likmi
  248. MESSAGE: '&c&lNevar solit savas izsoles'
  249. DESC: '&7Tu nevari solit savas izsoles.'
  250. CANNOTBIDLASTBID:
  251. TITLE: Nevareja piesolit likmi
  252. MESSAGE: '&c&lNevar parsolit sevi'
  253. DESC: "&7Tu jau esi piesolijis \n&7augstako likmi, uzgaidi \n&7lidz kads parsolis\
  254. \ tevi."
  255. CANNOTBIDCANNOTAFFORD:
  256. TITLE: Nevareja piesolit likmi
  257. MESSAGE: '&c&lNevar atlauties to'
  258. DESC: "&7Tev vajag vismaz $%amount% \n&7lai piesolit saja izsole."
  259. CANNOTCANCEL:
  260. TITLE: Nevareja atcelt
  261. MESSAGE: '&c&lIzsolu atcelsana ir atspejota'
  262. DESC: "&7Izsolu atspejosana \n&7ir atspejota."
  263. CLAIMED:
  264. TITLE: Lieta atguta
  265. MESSAGE: '&a&lLieta atguta'
  266. DESC: "&7Tu atguvi %quantity%x %item%&7 \n&7no izsoles #%id%."
  267. CLAIMEDWON:
  268. TITLE: Lieta sanemta
  269. MESSAGE: '&a&lLieta sanemta'
  270. DESC: "&7Tu sanemi %quantity%x %item%&7 \n&7no izsoles #%id%."
  271. PRICECHANGED:
  272. TITLE: Cena mainita
  273. MESSAGE: '&e&lPasreizeja cena tika mainita'
  274. DESC: "&7Kamer tu soliji, kads \n&7piesoliji likmi un cena mainijas \n&7no $%from%\
  275. \ uz $%to%.\n\n&7Jauna cena: &6$%to%"
  276. EARNINGSCLAIMED:
  277. TITLE: Pelna sanemta
  278. MESSAGE: '&a&lPelna sanemta'
  279. DESC: '&7Tu sanemi $%amount% pelnu.'
  280. EARNINGSNOEARNINGS:
  281. TITLE: Nav pelnas
  282. MESSAGE: '&c&lNav pelnas ko sanemt'
  283. DESC: |-
  284. &7Tev nav neviena pelna,
  285. &7ko tu varetu sanemt.
  286. TIME:
  287. NOW: tagad
  288. LESSTHAN: mazak neka %time%
  289. YEARS:
  290. SINGULAR: gads(a)
  291. PLURAL: gadi(em)
  292. MONTHS:
  293. SINGULAR: menesis(sa)
  294. PLURAL: menesi(em)
  295. WEEKS:
  296. SINGULAR: ned
  297. PLURAL: ned
  298. DAYS:
  299. SINGULAR: d
  300. PLURAL: d
  301. HOURS:
  302. SINGULAR: h
  303. PLURAL: h
  304. MINUTES:
  305. SINGULAR: min
  306. PLURAL: min
  307. SECONDS:
  308. SINGULAR: sek
  309. PLURAL: sek
  310.  
  311.  
  312.  
  313. ****************************
  314. And menu.yml
  315. ****************************
  316.  
  317.  
  318.  
  319.  
  320. menu:
  321. main:
  322. name: "Izsoles"
  323. rows: 5
  324. buttons:
  325. all:
  326. item:
  327. material: BOOK
  328. quantity: 1
  329. name: "&a&lVisas izsoles"
  330. lore:
  331. - "&7Paslaik ir &c%number% &7aktivas izsoles."
  332. - "&7 "
  333. - "&eKas ir izsoles? Raksti &c/izsoles"
  334. slot: 11
  335. takingPart:
  336. item:
  337. material: PAPER
  338. quantity: 1
  339. name: "&a&lIzsoles, kuras tu piedalies"
  340. lore:
  341. - "&7Tu piedalies &c%number% &7izsoles."
  342. - "&7 "
  343. - "&eKa piedalities izsoles? Raksti &c/izsoles"
  344. slot: 13
  345. own:
  346. item:
  347. material: SKULL_ITEM
  348. quantity: 1
  349. damage: 3
  350. name: "&a&lTavas izsoles"
  351. lore:
  352. - "&7Tu esi sacis &c%number% &7izsoles."
  353. - "&7 "
  354. - "&eKa sakt izsoli? Raksti &c/izsoles"
  355. slot: 15
  356. won:
  357. item:
  358. material: CHEST
  359. quantity: 1
  360. name: "&a&lUzvaretas lietas"
  361. lore:
  362. - "&7Tev ir &c%number% &7nesanemtas"
  363. - "&7uzvaretas lietas."
  364. - "&7 "
  365. - "&eKas tas tadas? Raksti &c/izsoles"
  366. slot: 30
  367. unclaimed:
  368. item:
  369. material: ENDER_CHEST
  370. quantity: 1
  371. name: "&a&lLietas ar beigusos terminu"
  372. lore:
  373. - "&7Tev ir &c%number% &7ar beigusos"
  374. - "&7terminu/atceltas lietas"
  375. - "&7 "
  376. - "&eKas tas tadas? Raksti &c/izsoles"
  377. slot: 32
  378. earnings:
  379. item:
  380. material: GOLD_NUGGET
  381. quantity: 1
  382. name: "&a&lYour earnings"
  383. lore:
  384. - "&7You have $%amount%"
  385. - "&7unclaimed earnings."
  386. slot: -1
  387. all:
  388. name: "Visas izsoles"
  389. rows: 6
  390. buttons:
  391. previousPage:
  392. item:
  393. material: PAPER
  394. quantity: 1
  395. name: "&a&lIepriekseja lapa"
  396. slot: 45
  397. nextPage:
  398. item:
  399. material: PAPER
  400. quantity: 1
  401. name: "&a&lNakama lapa"
  402. slot: 53
  403. refresh:
  404. item:
  405. material: NETHER_STAR
  406. quantity: 1
  407. name: "&a&lAtsvaidzinat"
  408. slot: 48
  409. back:
  410. item:
  411. material: STAINED_GLASS
  412. quantity: 1
  413. damage: 14
  414. name: "&a&lAtgriezties galvenaja izvelne"
  415. slot: 50
  416. replaceLore: false
  417. lore:
  418. - "&aIzsole #%id%"
  419. - "&8&m----------------"
  420. - "&7Pardevejs: &c%seller%"
  421. - "&7Sakuma cena: &a$%startingprice%"
  422. - "&7 "
  423. - "&7Pasreizeja cena: &c$%price%"
  424. - "&7Likmes pieaugums: &a$%increment%"
  425. - "&7 "
  426. - "&7Lielaka likme: &c%highestbidby%"
  427. - "&7Beigsies pec: &a%timeleft%"
  428. - "&8&m----------------"
  429. takingPart:
  430. name: "Izsoles, kuras tu piedalies"
  431. rows: 6
  432. buttons:
  433. previousPage:
  434. item:
  435. material: PAPER
  436. quantity: 1
  437. name: "&a&lIepriekseja lapa"
  438. slot: 45
  439. nextPage:
  440. item:
  441. material: PAPER
  442. quantity: 1
  443. name: "&a&lNakama lapa"
  444. slot: 53
  445. refresh:
  446. item:
  447. material: NETHER_STAR
  448. quantity: 1
  449. name: "&a&lAtsvaidzinat"
  450. slot: 48
  451. back:
  452. item:
  453. material: STAINED_GLASS
  454. quantity: 1
  455. damage: 14
  456. name: "&a&lAtgriezties galvenaja izvelne"
  457. slot: 50
  458. replaceLore: false
  459. lore:
  460. - "&aIzsole #%id%"
  461. - "&8&m----------------"
  462. - "&7Sakuma cena: &a$%startingprice%"
  463. - "&7 "
  464. - "&7Pasreizeja cena: &c$%price%"
  465. - "&7Likmes pieaugums: &a$%increment%"
  466. - "&7 "
  467. - "&7Lielaka likme: &a%highestbidby%"
  468. - "&7Beigsies pec: &a%timeleft%"
  469. - "&8&m----------------"
  470. own:
  471. name: "Tavas izsoles"
  472. rows: 6
  473. buttons:
  474. previousPage:
  475. item:
  476. material: PAPER
  477. quantity: 1
  478. name: "&a&lIepriekseja lapa"
  479. slot: 45
  480. nextPage:
  481. item:
  482. material: PAPER
  483. quantity: 1
  484. name: "&a&lNakama lapa"
  485. slot: 53
  486. refresh:
  487. item:
  488. material: NETHER_STAR
  489. quantity: 1
  490. name: "&a&lAtsvaidzinat"
  491. slot: 48
  492. back:
  493. item:
  494. material: STAINED_GLASS
  495. quantity: 1
  496. damage: 14
  497. name: "&a&lAtgriezties galvenaja izvelne"
  498. slot: 50
  499. replaceLore: false
  500. lore:
  501. - "&aIzsole #%id%"
  502. - "&8&m----------------"
  503. - "&7Sakuma cena: &a$%startingprice%"
  504. - "&7 "
  505. - "&7Pasreizeja cena: &c$%price%"
  506. - "&7Likmes pieaugums: &a$%increment%"
  507. - "&7 "
  508. - "&7Lielaka likme: &a%highestbidby%"
  509. - "&7Beigsies pec: &a%timeleft%"
  510. - "&7 "
  511. - "&c[Labais-klikskis] lai atceltu"
  512. - "&8&m----------------"
  513. won:
  514. name: "Uzvaretas lietas"
  515. rows: 6
  516. buttons:
  517. previousPage:
  518. item:
  519. material: PAPER
  520. quantity: 1
  521. name: "&a&lIepriekseja lapa"
  522. slot: 45
  523. nextPage:
  524. item:
  525. material: PAPER
  526. quantity: 1
  527. name: "&a&lNakama lapa"
  528. slot: 53
  529. refresh:
  530. item:
  531. material: NETHER_STAR
  532. quantity: 1
  533. name: "&a&lAtsvaidzinat"
  534. slot: 48
  535. back:
  536. item:
  537. material: STAINED_GLASS
  538. quantity: 1
  539. damage: 14
  540. name: "&a&lAtgriezties galvenaja izvelne"
  541. slot: 50
  542. replaceLore: false
  543. lore:
  544. - "&aIzsole #%id%"
  545. - "&8&m----------------"
  546. - "&7Sakuma cena: &a$%startingprice%"
  547. - "&7 "
  548. - "&7Pedeja cena: &c$%price%"
  549. - "&7Likmes pieaugums: &a$%increment%"
  550. - "&7 "
  551. - "&7Izsole beidzas: &a%end%"
  552. - "&7 "
  553. - "&c[Spied] lai atgrieztu lietu"
  554. - "&8&m----------------"
  555. expired:
  556. name: "Lietas ar beigusos terminu"
  557. rows: 6
  558. buttons:
  559. previousPage:
  560. item:
  561. material: PAPER
  562. quantity: 1
  563. name: "&a&lIepriekseja lapa"
  564. slot: 45
  565. nextPage:
  566. item:
  567. material: PAPER
  568. quantity: 1
  569. name: "&a&lNakama lapa"
  570. slot: 53
  571. refresh:
  572. item:
  573. material: NETHER_STAR
  574. quantity: 1
  575. name: "&a&lAtsvaidzinat"
  576. slot: 48
  577. back:
  578. item:
  579. material: STAINED_GLASS
  580. quantity: 1
  581. damage: 14
  582. name: "&a&lAtgriezties galvenaja izvelne"
  583. slot: 50
  584. replaceLore: false
  585. lore:
  586. - "&aIzsole #%id%"
  587. - "&8&m----------------"
  588. - "&7Sakuma cena: &a$%startingprice%"
  589. - "&7 "
  590. - "&7Pedeja cena: &c$%price%"
  591. - "&7Likmes pieaugums: &a$%increment%"
  592. - "&7 "
  593. - "&7Izsole beidzas: &a%end%"
  594. - "&7 "
  595. - "&7Lietai beigsies termins: &a%expire%"
  596. - "&7 "
  597. - "&c[Spied] lai atgrieztu lietu"
  598. - "&8&m----------------"
  599. start:
  600. quantity:
  601. name: "Izvelies daudzumu"
  602. rows: 6
  603. itemSlot: 22
  604. buttons:
  605. less3:
  606. item:
  607. material: STAINED_GLASS_PANE
  608. quantity: 1
  609. damage: 14
  610. name: "&c&lNonemt 32"
  611. lore:
  612. - "&7Pardot par 32 mazak"
  613. value: 32
  614. slot: 18
  615. less2:
  616. item:
  617. material: STAINED_GLASS_PANE
  618. quantity: 1
  619. damage: 14
  620. name: "&c&lNonemt 10"
  621. lore:
  622. - "&7Pardot par 10 mazak"
  623. value: 10
  624. slot: 19
  625. less1:
  626. item:
  627. material: STAINED_GLASS_PANE
  628. quantity: 1
  629. damage: 14
  630. name: "&c&lNonemt 1"
  631. lore:
  632. - "&7Pardot 1 mazak"
  633. value: 1
  634. slot: 20
  635. more1:
  636. item:
  637. material: STAINED_GLASS_PANE
  638. quantity: 1
  639. damage: 5
  640. name: "&a&lPievienot 1"
  641. lore:
  642. - "&7Pardot par 1 vairak"
  643. value: 1
  644. slot: 24
  645. more2:
  646. item:
  647. material: STAINED_GLASS_PANE
  648. quantity: 1
  649. damage: 5
  650. name: "&a&lPievienot 10"
  651. lore:
  652. - "&7Pardot par 10 vairak"
  653. value: 10
  654. slot: 25
  655. more3:
  656. item:
  657. material: STAINED_GLASS_PANE
  658. quantity: 1
  659. damage: 5
  660. name: "&a&lPievienot 32"
  661. lore:
  662. - "&7Pardot par 32 vairak"
  663. value: 32
  664. slot: 26
  665. confirm:
  666. item:
  667. material: STAINED_GLASS
  668. quantity: 1
  669. damage: 5
  670. name: "&a&lApstiprinat"
  671. slot: 39
  672. cancel:
  673. item:
  674. material: STAINED_GLASS
  675. quantity: 1
  676. damage: 14
  677. name: "&c&lAtcelt"
  678. slot: 41
  679. replaceLore: false
  680. lore:
  681. - "&7Daudzums: &e%quantity%"
  682. price:
  683. name: "Izvelies sakuma cenu"
  684. rows: 6
  685. itemSlot: 22
  686. buttons:
  687. less3:
  688. item:
  689. material: STAINED_GLASS_PANE
  690. quantity: 1
  691. damage: 14
  692. name: "&c&l-1000$"
  693. value: 1000
  694. slot: 18
  695. less2:
  696. item:
  697. material: STAINED_GLASS_PANE
  698. quantity: 1
  699. damage: 14
  700. name: "&c&l-100$"
  701. value: 100
  702. slot: 19
  703. less1:
  704. item:
  705. material: STAINED_GLASS_PANE
  706. quantity: 1
  707. damage: 14
  708. name: "&c&l-10$"
  709. value: 10
  710. slot: 20
  711. more1:
  712. item:
  713. material: STAINED_GLASS_PANE
  714. quantity: 1
  715. damage: 5
  716. name: "&a&l+10$"
  717. value: 10
  718. slot: 24
  719. more2:
  720. item:
  721. material: STAINED_GLASS_PANE
  722. quantity: 1
  723. damage: 5
  724. name: "&a&l+100$"
  725. value: 100
  726. slot: 25
  727. more3:
  728. item:
  729. material: STAINED_GLASS_PANE
  730. quantity: 1
  731. damage: 5
  732. name: "&a&l+1000$"
  733. value: 1000
  734. slot: 26
  735. confirm:
  736. item:
  737. material: STAINED_GLASS
  738. quantity: 1
  739. damage: 5
  740. name: "&a&lApstiprinat"
  741. slot: 39
  742. goBack:
  743. item:
  744. material: PAPER
  745. quantity: 1
  746. damage: 0
  747. name: "&c&lIet atpakal"
  748. slot: 40
  749. cancel:
  750. item:
  751. material: STAINED_GLASS
  752. quantity: 1
  753. damage: 14
  754. name: "&c&lAtcelt"
  755. slot: 41
  756. replaceLore: false
  757. lore:
  758. - "&7Daudzums: &e%quantity%"
  759. - "&7Sakuma cena: &c$%price%"
  760. increment:
  761. name: "Izvelies likmes pieaugumu"
  762. rows: 6
  763. itemSlot: 22
  764. buttons:
  765. less3:
  766. item:
  767. material: STAINED_GLASS_PANE
  768. quantity: 1
  769. damage: 14
  770. name: "&c&l-1000$"
  771. value: 1000
  772. slot: 18
  773. less2:
  774. item:
  775. material: STAINED_GLASS_PANE
  776. quantity: 1
  777. damage: 14
  778. name: "&c&l-100$"
  779. value: 100
  780. slot: 19
  781. less1:
  782. item:
  783. material: STAINED_GLASS_PANE
  784. quantity: 1
  785. damage: 14
  786. name: "&c&l-10$"
  787. value: 10
  788. slot: 20
  789. more1:
  790. item:
  791. material: STAINED_GLASS_PANE
  792. quantity: 1
  793. damage: 5
  794. name: "&a&l+10$"
  795. value: 10
  796. slot: 24
  797. more2:
  798. item:
  799. material: STAINED_GLASS_PANE
  800. quantity: 1
  801. damage: 5
  802. name: "&a&l+100$"
  803. value: 100
  804. slot: 25
  805. more3:
  806. item:
  807. material: STAINED_GLASS_PANE
  808. quantity: 1
  809. damage: 5
  810. name: "&a&l+1000$"
  811. value: 1000
  812. slot: 26
  813. confirm:
  814. item:
  815. material: STAINED_GLASS
  816. quantity: 1
  817. damage: 5
  818. name: "&a&lApstiprinat"
  819. slot: 39
  820. goBack:
  821. item:
  822. material: PAPER
  823. quantity: 1
  824. damage: 0
  825. name: "&c&lIet atpakal"
  826. slot: 40
  827. cancel:
  828. item:
  829. material: STAINED_GLASS
  830. quantity: 1
  831. damage: 14
  832. name: "&c&lAtcelt"
  833. slot: 41
  834. replaceLore: false
  835. lore:
  836. - "&7Daudzums: &e%quantity%"
  837. - "&7Sakuma cena: &c$%price%"
  838. - "&7Likmes pieaugums: &a$%increment%"
  839. duration:
  840. name: "Izvelies ilgumu"
  841. rows: 6
  842. itemSlot: 22
  843. buttons:
  844. less3:
  845. item:
  846. material: STAINED_GLASS_PANE
  847. quantity: 1
  848. damage: 14
  849. name: "&c&l-4 stundas"
  850. value: 14400
  851. slot: 18
  852. less2:
  853. item:
  854. material: STAINED_GLASS_PANE
  855. quantity: 1
  856. damage: 14
  857. name: "&c&l-1 stunda"
  858. value: 3600
  859. slot: 19
  860. less1:
  861. item:
  862. material: STAINED_GLASS_PANE
  863. quantity: 1
  864. damage: 14
  865. name: "&c&l-10 minutes"
  866. value: 600
  867. slot: 20
  868. more1:
  869. item:
  870. material: STAINED_GLASS_PANE
  871. quantity: 1
  872. damage: 5
  873. name: "&a&l+10 minutes"
  874. value: 600
  875. slot: 24
  876. more2:
  877. item:
  878. material: STAINED_GLASS_PANE
  879. quantity: 1
  880. damage: 5
  881. name: "&a&l+1 stunda"
  882. value: 3600
  883. slot: 25
  884. more3:
  885. item:
  886. material: STAINED_GLASS_PANE
  887. quantity: 1
  888. damage: 5
  889. name: "&a&l+4 stundas"
  890. value: 14400
  891. slot: 26
  892. confirm:
  893. item:
  894. material: STAINED_GLASS
  895. quantity: 1
  896. damage: 5
  897. name: "&a&lSakt izsoli"
  898. slot: 39
  899. goBack:
  900. item:
  901. material: PAPER
  902. quantity: 1
  903. damage: 0
  904. name: "&c&lIet atpakal"
  905. slot: 40
  906. cancel:
  907. item:
  908. material: STAINED_GLASS
  909. quantity: 1
  910. damage: 14
  911. name: "&c&lAtcelt"
  912. slot: 41
  913. replaceLore: false
  914. lore:
  915. - "&7Daudzums: &e%quantity%"
  916. - "&7Sakuma cena: &c$%price%"
  917. - "&7Likmes pieaugums: &a$%increment%"
  918. - "&7Izsoles ilgums:"
  919. - "&6%duration%"
  920. bid:
  921. name: "Liek likmi"
  922. rows: 6
  923. itemSlot: 22
  924. buttons:
  925. less:
  926. item:
  927. material: STAINED_GLASS_PANE
  928. quantity: 1
  929. damage: 14
  930. name: "&c&lSolit mazak"
  931. lore:
  932. - "&7-$%increment%"
  933. slot: 19
  934. more:
  935. item:
  936. material: STAINED_GLASS_PANE
  937. quantity: 1
  938. damage: 5
  939. name: "&a&lSolit vairak"
  940. lore:
  941. - "&7+$%increment%"
  942. slot: 25
  943. bid:
  944. item:
  945. material: STAINED_GLASS
  946. quantity: 1
  947. damage: 5
  948. name: "&a&lLikt likmi"
  949. slot: 39
  950. refresh:
  951. item:
  952. material: NETHER_STAR
  953. quantity: 1
  954. name: "&a&lAtsvaidzinat"
  955. slot: 40
  956. cancel:
  957. item:
  958. material: STAINED_GLASS
  959. quantity: 1
  960. damage: 14
  961. name: "&c&lAtcelt"
  962. slot: 41
  963. replaceLore: false
  964. lore:
  965. - "&aIzsole #%id%"
  966. - "&8&m----------------"
  967. - "&7Sakuma cena: &a$%startingprice%"
  968. - "&7 "
  969. - "&7Pasreizeja cena: &c$%price%"
  970. - "&7Likmes pieaugums: &a$%increment%"
  971. - "&7 "
  972. - "&7Beigsies pec: &a%timeleft%"
  973. - "&7 "
  974. - "&c&lTava likme: &a&l$%bid%"
  975. - "&8&m----------------"
  976. cancel:
  977. name: "Atcelt izsoli"
  978. rows: 6
  979. itemSlot: 22
  980. buttons:
  981. cancelauction:
  982. item:
  983. material: STAINED_GLASS
  984. quantity: 1
  985. damage: 5
  986. name: "&a&lAtcelt izsoli"
  987. slot: 39
  988. refresh:
  989. item:
  990. material: NETHER_STAR
  991. quantity: 1
  992. name: "&a&lAtsvaidzinat"
  993. slot: 40
  994. cancel:
  995. item:
  996. material: STAINED_GLASS
  997. quantity: 1
  998. damage: 14
  999. name: "&c&lAtgriezties"
  1000. slot: 41
  1001. replaceLore: false
  1002. lore:
  1003. - "&aIzsole #%id%"
  1004. - "&8&m----------------"
  1005. - "&7Sakuma cena: &a$%startingprice%"
  1006. - "&7 "
  1007. - "&7Pasreizeja cena: &c$%price%"
  1008. - "&7Likmes pieaugums: &a$%increment%"
  1009. - "&7 "
  1010. - "&7Beigsies pec: &a%timeleft%"
  1011. - "&8&m----------------"
  1012.  
  1013. notifications:
  1014. error:
  1015. rows: 6
  1016. buttons:
  1017. message:
  1018. item:
  1019. material: BARRIER
  1020. quantity: 1
  1021. slot: 22
  1022. confirm:
  1023. item:
  1024. material: STAINED_GLASS
  1025. quantity: 1
  1026. damage: 5
  1027. slot: 40
  1028. warning:
  1029. rows: 6
  1030. buttons:
  1031. message:
  1032. item:
  1033. material: STAINED_GLASS_PANE
  1034. quantity: 1
  1035. damage: 4
  1036. slot: 22
  1037. confirm:
  1038. item:
  1039. material: STAINED_GLASS
  1040. quantity: 1
  1041. damage: 5
  1042. slot: 40
  1043. success:
  1044. rows: 6
  1045. buttons:
  1046. message:
  1047. item:
  1048. material: STAINED_GLASS_PANE
  1049. quantity: 1
  1050. damage: 4
  1051. slot: 22
  1052. confirm:
  1053. item:
  1054. material: STAINED_GLASS
  1055. quantity: 1
  1056. damage: 5
  1057. slot: 40
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement