Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 50.32 KB | None | 0 0
  1. # DeluxeMenus 1.10.2 main configuration file
  2. #
  3. # check_updates: <true/false>
  4. # Should DeluxeMenus check if there are any updates available on Spigot and inform ops there is an update available.
  5. #
  6. # ==============================================================
  7. #
  8. # PER ITEM PERMISSION AND PRIORITY INFO:
  9. #
  10. # Per item permissions and priorities are optional.
  11. # High priority = 1, Lowest priority = 2147483647.
  12. # This allows you to show different items for a specific menu slot depending on the highest priority
  13. # item permission a player has. This makes your menus very dynamic :)
  14. #
  15. # You CAN NOT specify a permission without a priority!
  16. # You CAN specify a priority without a permission.
  17. # You should always create a low priority item without a permission which will act as the no permission
  18. # item if a player does not have permission for any of the items that require permission, otherwise
  19. # no item will be set in the slot if a player does not have permission for any of the permission items.
  20. #
  21. # ==============================================================
  22. #
  23. # GUI menu configuration:
  24. #
  25. # You can create as many GUI menus you like.
  26. # Every menu name must be unique. There can not be duplicate menu names!
  27. # Players must have permission for a GUI menu to open one!
  28. # Ops should automatically have permission for any GUI menu.
  29. #
  30. # Permission to open a GUI menu is: deluxemenus.guimenu.<menuName>
  31. #
  32. # You specify the command which opens the GUI menu. Make sure this command
  33. # does not conflict with any existing commands on your server!
  34. # A GUI menu without an open command specified will not be loaded!
  35. #
  36. # GUI menus configuration layout:
  37. #
  38. # gui_menus:
  39. # <menuName>:
  40. # menu_title: '<title of menu goes here>'
  41. # command: <command to open this menu goes here>
  42. # inventory_type: '<add this option if you want to create a menu of a different InventoryType aside from chest>'
  43. # open_requirement:
  44. # requirements:
  45. # <unique name for this requirement>:
  46. # type: <type for this requirement>
  47. # <unique options per requirement type would go here>
  48. # deny_commands:
  49. # - '[message] you do not meet requirements to open this menu'
  50. # size: <size of this menu, increments of 9, max size is 54>
  51. # update_interval: <time in seconds this gui should update for a player if an item is set to uodate placeholders>
  52. # items:
  53. # <item identifier>:
  54. # material: <name or id>
  55. # material: head-<name of player>
  56. # material: hdb-<HeadDatabase id> (requires plugin HeadDatabase)
  57. # data: <integer, used for data values for wool etc>
  58. # amount: <amount of this item to show>
  59. # slot: <slot number to put this item, slots start at 0 and end at 53 for a size 54 inventory>
  60. # priority: <this is used if you have multiple items set for the same slot>
  61. # view_requirement: <see view requirement info below. The lowest priority item a player meets all view requirements for will be shown>
  62. # update: <true/false if this item should update placeholders on the interval set for the gui menu this item is in>
  63. # hide_attributes: <true/false if this item should display item attributes>
  64. # hide_enchantments: <true/false if this item should display item enchantment / level> (useful for 'enchantment glow' items)
  65. # hide_effects: <true/false if this item should display item effect attributes>
  66. # hide_unbreakable: <true/false if this item should display item unbreakable attributes>
  67. # banner_meta: (this is used if you want to display a custom banner with specific patterns)
  68. # - <dyecolor>;<PatternType> (more information on where to find DyeColor and PatternType names below)
  69. # - 'RED;BASE'
  70. # - 'WHITE;CREEPER'
  71. # display_name: <display name to show for this item>
  72. # lore:
  73. # - 'placeholders can be used in the name and lore'
  74. # - '%<any placeholder from Papi>% shows the viewer values'
  75. # enchantments: valid enchantment names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  76. # - '<ENCHANTMENT>;<LEVEL>'
  77. # - 'SILK_TOUCH;1'
  78. # left_click_commands:
  79. # - '[close]'
  80. # left_click_requirement: <see how to use this option below>
  81. # right_click_commands:
  82. # - '[player] spawn'
  83. # right_click_requirement: <see how to use this option below>
  84. #
  85. #
  86. # You can specify if a GUI menu should be loaded from another file:
  87. #
  88. # gui_menus:
  89. # <menuName>:
  90. # file: 'menuName.yml'
  91. #
  92. # This allows you to keep your config clean and not have tons of GUI menus cluttering it.
  93. # The file format the GUI menu is loaded from must end in .yml
  94. # GUI menus loaded from other configuration files must follow a specific format as well...
  95. # To get started loading GUI menus from different files, simply create a GUI menu in this config and specify the file it will load from.
  96. # After that is done, use /dm reload and DeluxeMenus will create a folder and file specific to the GUI menu you specified.
  97. # If the file specified is created by DeluxeMenus (because it did not exist), a default GUI menu layout will be saved to that file.
  98. # From here you can edit it to your liking and use /dm reload to update your GUI menu!
  99. #
  100. # This loading from external config files is only available for gui menus and will not work for click menus yet....
  101. #
  102. # banner_meta must be listed with a specific format:
  103. # banner_meta:
  104. # - <DyeColor>;<PatternType>
  105. #
  106. # Valid DyeColor names can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/DyeColor.html
  107. # Valid PatternTypes can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/banner/PatternType.html
  108. # ==============================================================
  109. #
  110. # Requirement information
  111. #
  112. # Requirements can be set as the following:
  113. #
  114. # open_requirement: This requirement is checked when a menu is opened
  115. # view_requirement: This requirement determines if an item should be set in a menu slot
  116. # left_click_requirement: This requirement is checked when an item is left clicked
  117. # right_click_requirement: This requirement is checked when an item is right clicked
  118. #
  119. # Requirement types:
  120. # javascript - Evaluates a javascript expression that must return true or false
  121. # configuration options:
  122. # expression
  123. #
  124. # has money - Checks if a player has enough money (Vault required)
  125. # configuration options:
  126. # amount
  127. #
  128. # has item - Checks if a player has a specific item
  129. # configuration options:
  130. # material
  131. # amount
  132. # data
  133. # name
  134. # lore
  135. #
  136. # has permission - Checks if a player has a specific permission
  137. # configuration options:
  138. # permission
  139. #
  140. # string contains - Checks if a string contains another string
  141. # configuration options:
  142. # input
  143. # output
  144. #
  145. # string equals - Checks if a string equals another string
  146. # configuration options:
  147. # input
  148. # output
  149. #
  150. # stringequalsignorecase - Checks if a string equals another string ignoring case
  151. # configuration options:
  152. # input
  153. # output
  154. #
  155. # > - Checks if a number is greater than another number
  156. # configuration options:
  157. # input
  158. # output
  159. #
  160. # >= - Checks if a number is greater than or equal to another number
  161. # configuration options:
  162. # input
  163. # output
  164. #
  165. # == - Checks if a number is equal to another number
  166. # configuration options:
  167. # input
  168. # output
  169. #
  170. # <= - Checks if a number is less than or equal to another number
  171. # configuration options:
  172. # input
  173. # output
  174. #
  175. # < - Checks if a number is less than another number
  176. # configuration options:
  177. # input
  178. # output
  179. #
  180. #
  181. #
  182. # So why would we want to use requirements?
  183. # By default, DeluxeMenus does not require a player meet any conditions to open your menu.
  184. # If you want to require a menu need a certain permission node for it to be accessed, or a certain amount of money
  185. # for a menu to be opened, You do that with an 'open_requirement'.
  186. # Below is an example of how you would deny opening a menu if the viewer does not have permission:
  187. #
  188. # menu_title: 'Menu that requires permission to open'
  189. # open_command: testmenu
  190. # size: 9
  191. # open_requirement:
  192. # requirements:
  193. # this_requirement_name:
  194. # type: has permission
  195. # permission: 'testmenu.open'
  196. # deny_commands:
  197. # - '[message] you do not have permission to open testmenu'
  198. #
  199. #
  200. # Below is a full example of use cases for requirements:
  201. #
  202. # menu_title: 'Menu that requires permission to open'
  203. # open_command: testmenu
  204. # size: 9
  205. # open_requirement:
  206. # requirements:
  207. # this_requirement_name:
  208. # type: has permission
  209. # permission: 'testmenu.open'
  210. # deny_commands:
  211. # - '[message] you do not have permission to open testmenu'
  212. # items:
  213. # mymenuitem:
  214. # priority: 2
  215. # material: DIRT
  216. # slot: 0
  217. # name 'You dont have 100 diamonds to view this item'
  218. # mymenuitem:
  219. # priority: 1
  220. # material: DIAMOND
  221. # slot: 0
  222. # name 'You have lots of diamonds so you can see this item'
  223. # view_requirement:
  224. # requirements:
  225. # diamond_requirement:
  226. # type: has item
  227. # material: diamond
  228. # amount: 100
  229. # left_click_requirement:
  230. # requirements:
  231. # money_requirement:
  232. # type: '>='
  233. # input: '%vault_eco_balance_fixed%'
  234. # output: 1000
  235. # deny_commands:
  236. # - '[message] you only have %vault_eco_balance_fixed%'
  237. # left_click_commands:
  238. # - '[message] you have over 1000 dollars!'
  239. # right_click_requirement:
  240. # requirements:
  241. # staff_requirement:
  242. # type: string equals
  243. # input: '%vault_rank%'
  244. # output: staff
  245. # deny_commands:
  246. # - '[message] you are not staff'
  247. # right_click_commands:
  248. # - '[message] you are staff'
  249. #
  250. # deny_commands: are optional and will be executed if the requirement is not met.
  251. # ==============================================================
  252. #
  253. #
  254. # You do not need to specify item options that you don't use!
  255. # The only required entries for a gui menu item to be valid are:
  256. #
  257. # A valid material
  258. # A valid slot
  259. #
  260. # Every item in the items list must have a unique <item identifier>
  261. #
  262. # If you choose to update placeholders for a specific item, you must specify update_interval: <time>
  263. # in the GUI menu options for the specific GUI menu.
  264. # Only GUI menus with at least one item that has update: true will update those specific items placeholders.
  265. #
  266. # Every 'action' defined left, right, open_commands etc must start with a specific identifier to know what to do for the action being executed.
  267. # Valid action identifiers:
  268. #
  269. # [console] - Execute a command from the console
  270. # Usage: - '[console] <command with no slash>'
  271. #
  272. # [player] - Execute a command for the menu viewer
  273. # Usage: - '[player] <command with no slash>'
  274. #
  275. # [commandevent] - Fire a PlayerCommandPreprocessEvent for commands that do not use the bukkit command system
  276. # Usage: - '[commandevent] <command with no slash>'
  277. #
  278. # [message] - Send a message to the menu viewer
  279. # Usage: - '[message] <message to send to the player>'
  280. #
  281. # [openguimenu] - Open a GUI menu (can only be used in GUI menu click_commands)
  282. # Usage: - '[openguimenu] <guiMenuName>'
  283. #
  284. # [connect] - Connect to the specified bungee server
  285. # Usage: - '[connect] <serverName>'
  286. #
  287. # [close] - Close the viewers open menu
  288. # Usage: - '[close]'
  289. #
  290. # [refresh] - Refresh items in the current menu view
  291. # Usage: - '[refresh]'
  292. #
  293. # [broadcastsound] - Broadcast a sound to the server
  294. # Usage: - '[broadcastsound] <sound> <volume> <pitch>'
  295. #
  296. # [sound] - Play a sound for a the specific player
  297. # Usage: - '[sound] <sound> <volume> <pitch>'
  298. #
  299. # [json] - Send a json message to the menu viewer
  300. # Usage: - '[json] {"text":"message"}'
  301. #
  302. # [takemoney] - Take an amount of money from the player
  303. # Usage: - '[takemoney] <amount>'
  304. #
  305. #
  306. #
  307. # You can delay any of the click command being performed by ending the command with
  308. # <delay=(time in TICKS)>
  309. # example:
  310. # - '[close]'
  311. # - '[message] it has been 5 seconds since the menu closed!<delay=100>'
  312. # - '[message] it has been 10 seconds since the menu closed!<delay=200>'
  313. #
  314. # A delay should NOT be added to the [close] or [openguimenu] actions
  315. # as it could potentially cause unknown issues or glitches with menus.
  316. #
  317. # A NOTE WHEN EDITING THIS OR ANY DeluxeMenus CONFIGURATION FILE:
  318. # This config is sensitive to yaml formatting errors
  319. # KEEP A BACKUP WHEN EDITING YOUR FILE BEFORE UPLOADING TO YOUR SERVER!!!
  320. # Make sure every String you modify or add is enclosed in 'apostrophes'
  321. debug: false
  322. check_updates: true
  323. gui_menus:
  324. warp:
  325. menu_title: '&8Warpurile disponibile'
  326. open_command: warp
  327. size: 54
  328. items:
  329. '1':
  330. material: hdb-18673
  331. slot: 10
  332. display_name: '&aWarp Tutorial'
  333. lore:
  334. - ''
  335. - '&fLocul perfect pentru jucatorii noi'
  336. - ''
  337. - '&6&lClick stanga &fpentru teleportare'
  338. left_click_commands:
  339. - '[close]'
  340. - '[player] warp tutorial'
  341. right_click_commands:
  342. - '[close]'
  343. - '[player] warp tutorial'
  344. '2':
  345. material: hdb-2427
  346. slot: 13
  347. display_name: '&aWarp Carciuma'
  348. lore:
  349. - ''
  350. - '&fViziteaza carciuma'
  351. - ''
  352. - '&6&lClick stanga &fpentru teleportare'
  353. left_click_commands:
  354. - '[close]'
  355. - '[player] warp carciuma'
  356. right_click_commands:
  357. - '[close]'
  358. - '[player] warp carciuma'
  359. '3':
  360. material: hdb-325
  361. slot: 16
  362. display_name: '&aWarp Dragon'
  363. lore:
  364. - ''
  365. - '&fLupta finala cu dragonul'
  366. - ''
  367. - '&6&lClick stanga &fpentru teleportare'
  368. left_click_commands:
  369. - '[close]'
  370. - '[player] warp dragon'
  371. right_click_commands:
  372. - '[close]'
  373. - '[player] warp dragon'
  374. kit:
  375. menu_title: '&8Kiturile disponibile'
  376. open_command: kit
  377. size: 27
  378. items:
  379. '1':
  380. material: 263
  381. slot: 11
  382. display_name: '&aJucator'
  383. lore:
  384. - '&8Free Kit'
  385. - ''
  386. - '&fAici gasesti kitul care este detinut'
  387. - '&fde catre jucatori.'
  388. - ''
  389. - '&6&lClick stanga &fpentru a selecta'
  390. left_click_commands:
  391. - '[close]'
  392. - '[openguimenu] kitjucator'
  393. right_click_commands:
  394. - '[close]'
  395. - '[openguimenu] kitjucator'
  396. '2':
  397. material: DIAMOND
  398. slot: 15
  399. display_name: '&aDonator'
  400. lore:
  401. - '&8Donor kits'
  402. - ''
  403. - '&fAici gasesti kituri pe care le'
  404. - '&fpoti obtine oferind o suma de bani.'
  405. - '&astore.spycraft.ro'
  406. - ''
  407. - '&6&lClick stanga &fpentru a selecta'
  408. left_click_commands:
  409. - '[close]'
  410. - '[openguimenu] kitdonator'
  411. right_click_commands:
  412. - '[close]'
  413. - '[openguimenu] kitdonator'
  414. kitjucator:
  415. menu_title: '&8Kiturile disponibile'
  416. open_command: kitjucator
  417. size: 27
  418. update_interval: 1
  419. items:
  420. '1':
  421. material: 299
  422. data: 0
  423. amount: 1
  424. slot: 13
  425. display_name: '&6Start'
  426. lore:
  427. - ''
  428. - '&7acest kit este facut'
  429. - '&7pentru incepatorii in arta'
  430. - '&7luptei!'
  431. - ''
  432. - '&fCooldown: &a%essentials_kit_time_until_available_start%'
  433. - ''
  434. - '&b* click pentru a lua kitul *'
  435. left_click_commands:
  436. - '[player] kit start'
  437. - '[close]'
  438. right_click_commands:
  439. - '[player] kit start'
  440. - '[close]'
  441. kitdonator:
  442. menu_title: '&8Kiturile disponibile'
  443. open_command: kitdonator
  444. size: 27
  445. update_interval: 1
  446. items:
  447. '1':
  448. material: 307
  449. data: 0
  450. amount: 1
  451. slot: 11
  452. priority: 1
  453. update: true
  454. view_requirement:
  455. requirements:
  456. permission:
  457. type: string equals
  458. input: '%player_has_permission_Essentials.Kits.VIP%'
  459. output: 'yes'
  460. display_name: '&bVIP'
  461. lore:
  462. - ''
  463. - '&7Acest kit este facut'
  464. - '&7pentru maestrii in arta'
  465. - '&7luptei!'
  466. - ''
  467. - '&fCooldown: &a%essentials_kit_time_until_available_vip%'
  468. - ''
  469. - '&b* click pentru a lua kitul *'
  470. left_click_commands:
  471. - '[player] kit VIP'
  472. - '[close]'
  473. right_click_commands:
  474. - '[player] kit VIP'
  475. - '[close]'
  476. '2':
  477. material: 160
  478. data: 14
  479. amount: 1
  480. slot: 11
  481. priority: 2
  482. display_name: '&bVIP'
  483. lore:
  484. - ''
  485. - '&fIti trebuie minim'
  486. - '&fgradul de &bVIP'
  487. - '&fpentru a avea kitul!'
  488. - ''
  489. - '&astore.gameofpower.ro'
  490. left_click_commands:
  491. - '[close]'
  492. - '[message] &f&l&m==============================='
  493. - '[message] &fKitul pe care l-ai ales nu este'
  494. - '[message] &fdeblocat deoarece nu ai gradul de &bVIP&f!'
  495. - '[message] '
  496. - '[message] &astore.gameofpower.ro'
  497. - '[message] &f&l&m==============================='
  498. - '[console] tm message %player_name% &cEroare!\n &fNu ai deblocat kitul!'
  499. right_click_commands:
  500. - '[close]'
  501. - '[message] &f&l&m==============================='
  502. - '[message] &fKitul pe care l-ai ales nu este'
  503. - '[message] &fdeblocat deoarece nu ai gradul de &bVIP&f!'
  504. - '[message] '
  505. - '[message] &astore.gameofpower.ro'
  506. - '[message] &f&l&m==============================='
  507. - '[console] tm message %player_name% &cEroare!\n &fNu ai deblocat kitul!'
  508. '3':
  509. material: 311
  510. data: 0
  511. amount: 1
  512. slot: 13
  513. priority: 1
  514. update: true
  515. view_requirement:
  516. requirements:
  517. permission:
  518. type: string equals
  519. input: '%player_has_permission_Essentials.Kits.Master%'
  520. output: 'yes'
  521. display_name: '&3Master'
  522. lore:
  523. - ''
  524. - '&7Acest kit este facut'
  525. - '&7pentru maestrii in arta'
  526. - '&7luptei!'
  527. - ''
  528. - '&fCooldown: &a%essentials_kit_time_until_available_master%'
  529. - ''
  530. - '&b* click pentru a lua kitul *'
  531. left_click_commands:
  532. - '[player] kit master'
  533. - '[close]'
  534. right_click_commands:
  535. - '[player] kit master'
  536. - '[close]'
  537. '4':
  538. material: 160
  539. data: 14
  540. amount: 1
  541. slot: 13
  542. priority: 2
  543. display_name: '&3Master'
  544. lore:
  545. - ''
  546. - '&fIti trebuie minim'
  547. - '&fgradul de &3Master'
  548. - '&fpentru a avea kitul!'
  549. - ''
  550. - '&astore.gameofpower.ro'
  551. left_click_commands:
  552. - '[close]'
  553. - '[message] &f&l&m==============================='
  554. - '[message] &fKitul pe care l-ai ales nu este'
  555. - '[message] &fdeblocat deoarece nu ai gradul de &3master&f!'
  556. - '[message] '
  557. - '[message] &astore.gameofpower.ro'
  558. - '[message] &f&l&m==============================='
  559. - '[console] tm message %player_name% &cEroare!\n &fNu ai deblocat kitul!'
  560. right_click_commands:
  561. - '[close]'
  562. - '[message] &f&l&m==============================='
  563. - '[message] &fKitul pe care l-ai ales nu este'
  564. - '[message] &fdeblocat deoarece nu ai gradul de &3master&f!'
  565. - '[message] '
  566. - '[message] &astore.gameofpower.ro'
  567. - '[message] &f&l&m==============================='
  568. - '[console] tm message %player_name% &cEroare!\n &fNu ai deblocat kitul!'
  569. '5':
  570. material: 311
  571. data: 0
  572. amount: 1
  573. slot: 15
  574. priority: 1
  575. hide_enchantments: true
  576. enchantments:
  577. - DAMAGE_ALL;1
  578. update: true
  579. view_requirement:
  580. requirements:
  581. permission:
  582. type: string equals
  583. input: '%player_has_permission_Essentials.Kits.God%'
  584. output: 'yes'
  585. display_name: '&cGod'
  586. lore:
  587. - ''
  588. - '&7Acest kit este facut'
  589. - '&7pentru maestrii in arta'
  590. - '&7luptei!'
  591. - ''
  592. - '&fCooldown: &a%essentials_kit_time_until_available_god%'
  593. - ''
  594. - '&b* click pentru a lua kitul *'
  595. left_click_commands:
  596. - '[player] kit god'
  597. - '[console] cc give physical Legendary 1 %player_name%'
  598. - '[close]'
  599. right_click_commands:
  600. - '[player] kit god'
  601. - '[console] cc give physical Legendary 1 %player_name%'
  602. - '[close]'
  603. '6':
  604. material: 160
  605. data: 14
  606. amount: 1
  607. slot: 15
  608. priority: 2
  609. display_name: '&cGod'
  610. lore:
  611. - ''
  612. - '&fIti trebuie minim'
  613. - '&fgradul de &cGod'
  614. - '&fpentru a avea kitul!'
  615. - ''
  616. - '&amcgop.buycraft.ro'
  617. left_click_commands:
  618. - '[close]'
  619. - '[message] &f&l&m==============================='
  620. - '[message] &fKitul pe care l-ai ales nu este'
  621. - '[message] &fdeblocat deoarece nu ai gradul de &cGod&f!'
  622. - '[message] '
  623. - '[message] &astore.gameofpower.ro'
  624. - '[message] &f&l&m==============================='
  625. - '[console] tm message %player_name% &cEroare!\n &fNu ai deblocat kitul!'
  626. right_click_commands:
  627. - '[close]'
  628. - '[message] &f&l&m==============================='
  629. - '[message] &fKitul pe care l-ai ales nu este'
  630. - '[message] &fdeblocat deoarece nu ai gradul de &cGod&f!'
  631. - '[message] '
  632. - '[message] &astore.gameofpower.ro'
  633. - '[message] &f&l&m==============================='
  634. - '[console] tm message %player_name% &cEroare!\n &fNu ai deblocat kitul!'
  635. profil:
  636. menu_title: '&8Profilu tau'
  637. open_command: profil
  638. size: 45
  639. items:
  640. '1':
  641. material: head;%player_name%
  642. slot: 13
  643. display_name: '&a%player_name%'
  644. lore:
  645. - '&fRank %vault_prefix%'
  646. - '&fPuncte &a%playerpoints_points%'
  647. '2':
  648. material: 54
  649. slot: 28
  650. display_name: '&aCrates'
  651. lore:
  652. - '&bVote Crate &f- &a%crazycrates_vote%'
  653. - '&aCommon Crate &f- &a%crazycrates_common%'
  654. - '&dMystery Crate &f- &a%crazycrates_mystery%'
  655. - '&cLegendary Crate &f- &a%crazycrates_legendary%'
  656. '3':
  657. material: 131
  658. slot: 30
  659. display_name: '&aVote'
  660. lore:
  661. - '&fdaca doresti sa castigi Vote'
  662. - '&fCrate voteaza serverul zilnic'
  663. - ''
  664. - '&b* Click pentru mai multe informatii! *'
  665. left_click_commands:
  666. - '[close]'
  667. - '[message] &f&l&m==============================='
  668. - '[message] &a&l Vote'
  669. - '[message] '
  670. - '[message] &fVoteaza-ne pentru a obtine un cadou'
  671. - '[message] '
  672. - '[message] &a&l Link'
  673. - '[message] '
  674. - '[message] &bhttp://minecraft-mp.com/server/159980/vote/'
  675. - '[message] &f&l&m==============================='
  676. right_click_commands:
  677. - '[close]'
  678. - '[message] &f&l&m==============================='
  679. - '[message] &a&l Vote'
  680. - '[message] '
  681. - '[message] &fVoteaza-ne pentru a obtine un cadou'
  682. - '[message] '
  683. - '[message] &a&l Link'
  684. - '[message] '
  685. - '[message] &bhttp://minecraft-mp.com/server/159980/vote/'
  686. - '[message] &f&l&m==============================='
  687. '4':
  688. material: 379
  689. slot: 32
  690. display_name: '&aLevel'
  691. lore:
  692. - '&fnivelul tau este &a%player_level%'
  693. '5':
  694. material: 264
  695. slot: 34
  696. display_name: '&aBani'
  697. lore:
  698. - '&fcreditul tau este &a%vault_eco_balance_formatted%'
  699. magazin:
  700. menu_title: '&8Magazin puncte'
  701. open_command: magazin
  702. size: 54
  703. items:
  704. '1':
  705. material: CHEST
  706. data: 0
  707. amount: 1
  708. slot: 28
  709. update: true
  710. display_name: '&aCrate keys'
  711. lore:
  712. - ''
  713. - '&fContine'
  714. - '&7â–ª &bVote Crate'
  715. - '&7â–ª &aCommon Crate'
  716. - '&7â–ª &dMystery Crate'
  717. - '&7â–ª &cLegendary Crate'
  718. - ''
  719. - '&aâ–º click pentru categorie'
  720. left_click_commands:
  721. - '[openguimenu] cumparakey'
  722. right_click_commands:
  723. - '[openguimenu] cumparakey'
  724. '3':
  725. material: PAPER
  726. data: 0
  727. amount: 1
  728. slot: 31
  729. update: true
  730. display_name: '&6Bani'
  731. lore:
  732. - ''
  733. - '&fContine'
  734. - '&7â–ª &a$10000'
  735. - '&7â–ª &9$25000'
  736. - '&7â–ª &5$50000'
  737. - '&7â–ª &6$100000'
  738. - ''
  739. - '&aâ–º click pentru categorie'
  740. left_click_commands:
  741. - '[close]'
  742. - '[openguimenu] bani'
  743. right_click_commands:
  744. - '[close]'
  745. - '[openguimenu] bani'
  746. '4':
  747. material: 409
  748. data: 0
  749. amount: 1
  750. slot: 34
  751. update: true
  752. display_name: '&5Abilitati'
  753. lore:
  754. - ''
  755. - '&fContine'
  756. - '&7â–ª &a/Fly'
  757. - '&7â–ª &b/Sell hand'
  758. - '&7â–ª &c/Sell all'
  759. - ''
  760. - '&aâ–º click pentru categorie'
  761. left_click_commands:
  762. - '[close]'
  763. - '[openguimenu] abilitati'
  764. right_click_commands:
  765. - '[close]'
  766. - '[openguimenu] abilitati'
  767. '5':
  768. material: 160
  769. data: 5
  770. amount: 1
  771. slots:
  772. - 53
  773. - 52
  774. - 51
  775. - 50
  776. - 48
  777. - 47
  778. - 46
  779. - 45
  780. update: true
  781. display_name: ''
  782. '6':
  783. material: EMERALD
  784. data: 0
  785. amount: 1
  786. slot: 49
  787. update: true
  788. display_name: '&a&lPuncte'
  789. lore:
  790. - '&f%playerpoints_points%'
  791. cumparakey:
  792. menu_title: '&8Magazin crate'
  793. open_command: cumparakey
  794. size: 27
  795. items:
  796. '1':
  797. material: CHEST
  798. data: 0
  799. amount: 1
  800. slot: 10
  801. display_name: '&bVote Crate'
  802. lore:
  803. - ''
  804. - '&cAtentie!'
  805. - '&fDaca ai cumparat obiectul'
  806. - '&fpunctele nu se inapoiaza!'
  807. - ''
  808. - '&fPret &a20 puncte'
  809. - ''
  810. - '&aâ–º click pentru a cumpara'
  811. right_click_requirement:
  812. expression: '%playerpoints_points% >= 20'
  813. deny_commands:
  814. - '[message] &a[Magazin] &fNu ai destule puncte!'
  815. right_click_commands:
  816. - '[console] p take %player_name% 20'
  817. - '[console] cc give V vote 1 %player_name%'
  818. - '[message] &a[Magazin] &fAi cumparat &bVote Crate &fcu succes!'
  819. left_click_requirement:
  820. expression: '%playerpoints_points% >= 20'
  821. deny_commands:
  822. - '[message] &a[Magazin] &fNu ai destule puncte!'
  823. left_click_commands:
  824. - '[console] p take %player_name% 20'
  825. - '[console] cc give V vote 1 %player_name%'
  826. - '[message] &a[Magazin] &fAi cumparat &bVote Crate &fcu succes!'
  827. '2':
  828. material: CHEST
  829. data: 0
  830. amount: 1
  831. slot: 12
  832. display_name: '&aCommon Crate'
  833. lore:
  834. - ''
  835. - '&cAtentie!'
  836. - '&fDaca ai cumparat obiectul'
  837. - '&fpunctele nu se inapoiaza!'
  838. - ''
  839. - '&fPret &a60 puncte'
  840. - ''
  841. - '&aâ–º click pentru a cumpara'
  842. right_click_requirement:
  843. expression: '%playerpoints_points% >= 60'
  844. deny_commands:
  845. - '[message] &a[Magazin] &fNu ai destule puncte!'
  846. right_click_commands:
  847. - '[console] p take %player_name% 60'
  848. - '[console] cc give V common 1 %player_name%'
  849. - '[message] &a[Magazin] &fAi cumparat &aCommon Crate &fcu succes!'
  850. left_click_requirement:
  851. expression: '%playerpoints_points% >= 60'
  852. deny_commands:
  853. - '[message] &a[Magazin] &fNu ai destule puncte!'
  854. left_click_commands:
  855. - '[console] p take %player_name% 60'
  856. - '[console] cc give V common 1 %player_name%'
  857. - '[message] &a[Magazin] &fAi cumparat &aCommon Crate &fcu succes!'
  858. '3':
  859. material: CHEST
  860. data: 0
  861. amount: 1
  862. slot: 14
  863. display_name: '&dMystery Crate'
  864. lore:
  865. - ''
  866. - '&cAtentie!'
  867. - '&fDaca ai cumparat obiectul'
  868. - '&fpunctele nu se inapoiaza!'
  869. - ''
  870. - '&fPret &a150 puncte'
  871. - ''
  872. - '&aâ–º click pentru a cumpara'
  873. right_click_requirement:
  874. expression: '%playerpoints_points% >= 150'
  875. deny_commands:
  876. - '[message] &a[Magazin] &fNu ai destule puncte!'
  877. right_click_commands:
  878. - '[console] p take %player_name% 150'
  879. - '[console] cc give V mystery 1 %player_name%'
  880. - '[message] &a[Magazin] &fAi cumparat &dMystery Crate &fcu succes!'
  881. left_click_requirement:
  882. expression: '%playerpoints_points% >= 150'
  883. deny_commands:
  884. - '[message] &a[Magazin] &fNu ai destule puncte!'
  885. left_click_commands:
  886. - '[console] p take %player_name% 150'
  887. - '[console] cc give V mystery 1 %player_name%'
  888. - '[message] &a[Magazin] &fAi cumparat &dMystery Crate &fcu succes!'
  889. '4':
  890. material: CHEST
  891. data: 0
  892. amount: 1
  893. slot: 16
  894. display_name: '&cLegendary Crate'
  895. lore:
  896. - ''
  897. - '&cAtentie!'
  898. - '&fDaca ai cumparat obiectul'
  899. - '&fpunctele nu se inapoiaza!'
  900. - ''
  901. - '&fPret &a500 puncte'
  902. - ''
  903. - '&aâ–º click pentru a cumpara'
  904. right_click_requirement:
  905. expression: '%playerpoints_points% >= 500'
  906. deny_commands:
  907. - '[message] &a[Magazin] &fNu ai destule puncte!'
  908. right_click_commands:
  909. - '[console] p take %player_name% 500'
  910. - '[console] cc give V legendary 1 %player_name%'
  911. - '[message] &a[Magazin] &fAi cumparat &6Legendary Crate &fcu succes!'
  912. left_click_requirement:
  913. expression: '%playerpoints_points% >= 500'
  914. deny_commands:
  915. - '[message] &a[Magazin] &fNu ai destule puncte!'
  916. left_click_commands:
  917. - '[console] p take %player_name% 500'
  918. - '[console] cc give V legendary 1 %player_name%'
  919. - '[message] &a[Magazin] &fAi cumparat &6Legendary Crate &fcu succes!'
  920. '5':
  921. material: ARROW
  922. data: 0
  923. amount: 1
  924. slot: 26
  925. display_name: '&aInapoi'
  926. lore:
  927. - ''
  928. - '&aâ–º click pentru a te intoarce'
  929. left_click_commands:
  930. - '[openguimenu] magazin'
  931. right_click_commands:
  932. - '[openguimenu] magazin'
  933. bani:
  934. menu_title: '&8Magazin bani'
  935. open_command: bani
  936. size: 27
  937. items:
  938. '1':
  939. material: PAPER
  940. data: 0
  941. amount: 1
  942. slot: 10
  943. display_name: '&a$10000'
  944. lore:
  945. - ''
  946. - '&cAtentie!'
  947. - '&fDaca ai cumparat obiectul'
  948. - '&fpunctele nu se inapoiaza!'
  949. - ''
  950. - '&fPret &a75 puncte'
  951. - ''
  952. - '&aâ–º click pentru a cumpara'
  953. right_click_requirement:
  954. expression: '%playerpoints_points% >= 75'
  955. deny_commands:
  956. - '[message] &a[Magazin] &fNu ai destule puncte!'
  957. right_click_commands:
  958. - '[console] p take %player_name% 75'
  959. - '[console] eco give %player_name% 10000'
  960. - '[message] &a[Magazin] &fAi cumparat &a$10000 &fcu succes!'
  961. left_click_requirement:
  962. expression: '%playerpoints_points% >= 75'
  963. deny_commands:
  964. - '[message] &a[Magazin] &fNu ai destule puncte!'
  965. left_click_commands:
  966. - '[console] p take %player_name% 75'
  967. - '[console] eco give %player_name% 10000'
  968. - '[message] &a[Magazin] &fAi cumparat &a$10000 &fcu succes!'
  969. '2':
  970. material: PAPER
  971. data: 0
  972. amount: 1
  973. slot: 12
  974. display_name: '&9$25000'
  975. lore:
  976. - ''
  977. - '&cAtentie!'
  978. - '&fDaca ai cumparat obiectul'
  979. - '&fpunctele nu se inapoiaza!'
  980. - ''
  981. - '&fPret &a125 puncte'
  982. - ''
  983. - '&aâ–º click pentru a cumpara'
  984. right_click_requirement:
  985. expression: '%playerpoints_points% >= 125'
  986. deny_commands:
  987. - '[message] &a[Magazin] &fNu ai destule puncte!'
  988. right_click_commands:
  989. - '[console] p take %player_name% 125'
  990. - '[console] eco give %player_name% 25000'
  991. - '[message] &a[Magazin] &fAi cumparat &9$25000 &fcu succes!'
  992. left_click_requirement:
  993. expression: '%playerpoints_points% >= 125'
  994. deny_commands:
  995. - '[message] &a[Magazin] &fNu ai destule puncte!'
  996. left_click_commands:
  997. - '[console] p take %player_name% 125'
  998. - '[console] eco give %player_name% 25000'
  999. - '[message] &a[Magazin] &fAi cumparat &9$25000 &fcu succes!'
  1000. '3':
  1001. material: PAPER
  1002. data: 0
  1003. amount: 1
  1004. slot: 14
  1005. display_name: '&5$50000'
  1006. lore:
  1007. - ''
  1008. - '&cAtentie!'
  1009. - '&fDaca ai cumparat obiectul'
  1010. - '&fpunctele nu se inapoiaza!'
  1011. - ''
  1012. - '&fPret &a225 puncte'
  1013. - ''
  1014. - '&aâ–º click pentru a cumpara'
  1015. right_click_requirement:
  1016. expression: '%playerpoints_points% >= 225'
  1017. deny_commands:
  1018. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1019. right_click_commands:
  1020. - '[console] p take %player_name% 225'
  1021. - '[console] eco give %player_name% 50000'
  1022. - '[message] &a[Magazin] &fAi cumparat &5$50000 &fcu succes!'
  1023. left_click_requirement:
  1024. expression: '%playerpoints_points% >= 225'
  1025. deny_commands:
  1026. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1027. left_click_commands:
  1028. - '[console] p take %player_name% 225'
  1029. - '[console] eco give %player_name% 50000'
  1030. - '[message] &a[Magazin] &fAi cumparat &5$50000 &fcu succes!'
  1031. '4':
  1032. material: PAPER
  1033. data: 0
  1034. amount: 1
  1035. slot: 16
  1036. display_name: '&6$100000'
  1037. lore:
  1038. - ''
  1039. - '&cAtentie!'
  1040. - '&fDaca ai cumparat obiectul'
  1041. - '&fpunctele nu se inapoiaza!'
  1042. - ''
  1043. - '&fPret &a325 puncte'
  1044. - ''
  1045. - '&aâ–º click pentru a cumpara'
  1046. right_click_requirement:
  1047. expression: '%playerpoints_points% >= 325'
  1048. deny_commands:
  1049. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1050. right_click_commands:
  1051. - '[console] p take %player_name% 325'
  1052. - '[console] eco give %player_name% 100000'
  1053. - '[message] &a[Magazin] &fAi cumparat &6$100000 &fcu succes!'
  1054. left_click_requirement:
  1055. expression: '%playerpoints_points% >= 325'
  1056. deny_commands:
  1057. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1058. left_click_commands:
  1059. - '[console] p take %player_name% 325'
  1060. - '[console] eco give %player_name% 100000'
  1061. - '[message] &a[Magazin] &fAi cumparat &6$100000 &fcu succes!'
  1062. '5':
  1063. material: ARROW
  1064. data: 0
  1065. amount: 1
  1066. slot: 26
  1067. display_name: '&aInapoi'
  1068. lore:
  1069. - ''
  1070. - '&aâ–º click pentru a te intoarce'
  1071. left_click_commands:
  1072. - '[openguimenu] magazin'
  1073. right_click_commands:
  1074. - '[openguimenu] magazin'
  1075. abilitati:
  1076. menu_title: '&8Magazin abilitati'
  1077. open_command: abilitati
  1078. size: 27
  1079. items:
  1080. '1':
  1081. material: 159
  1082. data: 14
  1083. amount: 1
  1084. slot: 11
  1085. priority: 1
  1086. update: true
  1087. view_requirement:
  1088. requirements:
  1089. permission:
  1090. type: string equals
  1091. input: '%player_has_permission_essentials.fly%'
  1092. output: 'yes'
  1093. display_name: '&a/Fly &c&lDEBLOCAT'
  1094. lore:
  1095. - ''
  1096. - '&cAtentie!'
  1097. - '&fAcest obiect este deja'
  1098. - '&fdeblocat!'
  1099. - ''
  1100. left_click_commands:
  1101. - '[close]'
  1102. - '[message] &a[Magazin] &fDeja ai deblocata optiunea asta!'
  1103. right_click_commands:
  1104. - '[close]'
  1105. - '[message] &a[Magazin] &fDeja ai deblocata optiunea asta!'
  1106. '2':
  1107. material: FEATHER
  1108. data: 0
  1109. amount: 1
  1110. slot: 11
  1111. priority: 2
  1112. display_name: '&a/Fly'
  1113. lore:
  1114. - ''
  1115. - '&cAtentie!'
  1116. - '&fDaca ai cumparat obiectul'
  1117. - '&fpunctele nu se inapoiaza!'
  1118. - ''
  1119. - '&fPret &a750 puncte'
  1120. - ''
  1121. - '&aâ–º click pentru a cumpara'
  1122. right_click_requirement:
  1123. expression: '%playerpoints_points% >= 750'
  1124. deny_commands:
  1125. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1126. right_click_commands:
  1127. - '[console] p take %player_name% 750'
  1128. - '[console] lp user %player_name% permission set essentials.fly survival'
  1129. - '[message] &a[Magazin] &fAi cumparat &a/Fly &fcu succes!'
  1130. - '[refresh]'
  1131. left_click_requirement:
  1132. expression: '%playerpoints_points% >= 750'
  1133. deny_commands:
  1134. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1135. left_click_commands:
  1136. - '[console] p take %player_name% 750'
  1137. - '[console] lp user %player_name% permission set essentials.fly survival'
  1138. - '[message] &a[Magazin] &fAi cumparat &a/Fly &fcu succes!'
  1139. - '[refresh]'
  1140. '3':
  1141. material: 159
  1142. data: 14
  1143. amount: 1
  1144. slot: 13
  1145. priority: 1
  1146. update: true
  1147. view_requirement:
  1148. requirements:
  1149. permission:
  1150. type: string equals
  1151. input: '%player_has_permission_shopguiplus.sell.hand%'
  1152. output: 'yes'
  1153. display_name: '&b/Sell hand &c&lDEBLOCAT'
  1154. lore:
  1155. - ''
  1156. - '&cAtentie!'
  1157. - '&fAcest obiect este deja'
  1158. - '&fdeblocat!'
  1159. - ''
  1160. left_click_commands:
  1161. - '[close]'
  1162. - '[message] &a[Magazin] &fDeja ai deblocata optiunea asta!'
  1163. right_click_commands:
  1164. - '[close]'
  1165. - '[message] &a[Magazin] &fDeja ai deblocata optiunea asta!'
  1166. '4':
  1167. material: 409
  1168. data: 0
  1169. amount: 1
  1170. slot: 13
  1171. priority: 2
  1172. display_name: '&b/Sell hand'
  1173. lore:
  1174. - ''
  1175. - '&cAtentie!'
  1176. - '&fDaca ai cumparat obiectul'
  1177. - '&fpunctele nu se inapoiaza!'
  1178. - ''
  1179. - '&fPret &a1250 puncte'
  1180. - ''
  1181. - '&aâ–º click pentru a cumpara'
  1182. right_click_requirement:
  1183. expression: '%playerpoints_points% >= 1250'
  1184. deny_commands:
  1185. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1186. right_click_commands:
  1187. - '[console] p take %player_name% 1250'
  1188. - '[console] lp user %player_name% permission set shopguiplus.sell.hand survival'
  1189. - '[message] &a[Magazin] &fAi cumparat &b/Sell hand &fcu succes!'
  1190. - '[refresh]'
  1191. left_click_requirement:
  1192. expression: '%playerpoints_points% >= 1250'
  1193. deny_commands:
  1194. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1195. left_click_commands:
  1196. - '[console] p take %player_name% 1250'
  1197. - '[console] lp user %player_name% permission set shopguiplus.sell.hand survival'
  1198. - '[message] &a[Magazin] &fAi cumparat &b/Sell hand &fcu succes!'
  1199. - '[refresh]'
  1200. '5':
  1201. material: 159
  1202. data: 14
  1203. amount: 1
  1204. slot: 15
  1205. priority: 1
  1206. update: true
  1207. view_requirement:
  1208. requirements:
  1209. permission:
  1210. type: string equals
  1211. input: '%player_has_permission_shopguiplus.sell.all%'
  1212. output: 'yes'
  1213. display_name: '&c/Sell all &c&lDEBLOCAT'
  1214. lore:
  1215. - ''
  1216. - '&cAtentie!'
  1217. - '&fAcest obiect este deja'
  1218. - '&fdeblocat!'
  1219. - ''
  1220. left_click_commands:
  1221. - '[close]'
  1222. - '[message] &a[Magazin] &fDeja ai deblocata optiunea asta!'
  1223. right_click_commands:
  1224. - '[close]'
  1225. - '[message] &a[Magazin] &fDeja ai deblocata optiunea asta!'
  1226. '6':
  1227. material: 409
  1228. data: 0
  1229. amount: 1
  1230. slot: 15
  1231. priority: 2
  1232. display_name: '&c/Sell all'
  1233. lore:
  1234. - ''
  1235. - '&cAtentie!'
  1236. - '&fDaca ai cumparat obiectul'
  1237. - '&fpunctele nu se inapoiaza!'
  1238. - ''
  1239. - '&fPret &a1750 puncte'
  1240. - ''
  1241. - '&aâ–º click pentru a cumpara'
  1242. right_click_requirement:
  1243. expression: '%playerpoints_points% >= 1750'
  1244. deny_commands:
  1245. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1246. right_click_commands:
  1247. - '[console] p take %player_name% 1750'
  1248. - '[console] lp user %player_name% permission set shopguiplus.sell.all survival'
  1249. - '[message] &a[Magazin] &fAi cumparat &c/Sell all &fcu succes!'
  1250. - '[refresh]'
  1251. left_click_requirement:
  1252. expression: '%playerpoints_points% >= 1750'
  1253. deny_commands:
  1254. - '[message] &a[Magazin] &fNu ai destule puncte!'
  1255. left_click_commands:
  1256. - '[console] p take %player_name% 1750'
  1257. - '[console] lp user %player_name% permission set shopguiplus.sell.all survival'
  1258. - '[message] &a[Magazin] &fAi cumparat &c/Sell all &fcu succes!'
  1259. - '[refresh]'
  1260. '7':
  1261. material: ARROW
  1262. data: 0
  1263. amount: 1
  1264. slot: 26
  1265. display_name: '&aInapoi'
  1266. lore:
  1267. - ''
  1268. - '&aâ–º click pentru a te intoarce'
  1269. left_click_commands:
  1270. - '[openguimenu] magazin'
  1271. right_click_commands:
  1272. - '[openguimenu] magazin'
  1273. jobs:
  1274. menu_title: '&8Alege un job potrivit!'
  1275. open_command: jobs
  1276. size: 27
  1277. items:
  1278. '1':
  1279. material: 133
  1280. slot: 10
  1281. display_name: '&a&lPadurar'
  1282. lore:
  1283. - ''
  1284. - '&fCastiga bani din taierea'
  1285. - '&fsi plantarea copacilor.'
  1286. - ''
  1287. left_click_commands:
  1288. - '[close]'
  1289. - '[player] jobs join padurar'
  1290. right_click_commands:
  1291. - '[close]'
  1292. - '[player] jobs join padurar'
  1293. '2':
  1294. material: 133
  1295. slot: 11
  1296. display_name: '&a&lMiner'
  1297. lore:
  1298. - ''
  1299. - '&fCastiga bani minand.'
  1300. - ''
  1301. left_click_commands:
  1302. - '[close]'
  1303. - '[player] jobs join miner'
  1304. right_click_commands:
  1305. - '[close]'
  1306. - '[player] jobs join miner'
  1307. '3':
  1308. material: 133
  1309. slot: 12
  1310. display_name: '&a&lConstructor'
  1311. lore:
  1312. - ''
  1313. - '&fCastiga bani construind.'
  1314. - ''
  1315. left_click_commands:
  1316. - '[close]'
  1317. - '[player] jobs join constructor'
  1318. right_click_commands:
  1319. - '[close]'
  1320. - '[player] jobs join constructor'
  1321. '4':
  1322. material: 133
  1323. slot: 13
  1324. display_name: '&a&lSapator'
  1325. lore:
  1326. - ''
  1327. - '&fCastiga bani sapand pe mapa.'
  1328. - ''
  1329. left_click_commands:
  1330. - '[close]'
  1331. - '[player] jobs join sapator'
  1332. right_click_commands:
  1333. - '[close]'
  1334. - '[player] jobs join sapator'
  1335. '5':
  1336. material: 133
  1337. slot: 14
  1338. display_name: '&a&lFermier'
  1339. lore:
  1340. - ''
  1341. - '&fCastiga bani cultivand.'
  1342. - ''
  1343. left_click_commands:
  1344. - '[close]'
  1345. - '[player] jobs join fermier'
  1346. right_click_commands:
  1347. - '[close]'
  1348. - '[player] jobs join fermier'
  1349. '6':
  1350. material: 133
  1351. slot: 15
  1352. display_name: '&a&lVanator'
  1353. lore:
  1354. - ''
  1355. - '&fCastiga bani omorand'
  1356. - '&fanimale si monstrii.'
  1357. - ''
  1358. left_click_commands:
  1359. - '[close]'
  1360. - '[player] jobs join vanator'
  1361. right_click_commands:
  1362. - '[close]'
  1363. - '[player] jobs join vanator'
  1364. '7':
  1365. material: 133
  1366. slot: 16
  1367. display_name: '&a&lExplorator'
  1368. lore:
  1369. - ''
  1370. - '&fCastiga bani explorand mapa.'
  1371. - ''
  1372. left_click_commands:
  1373. - '[close]'
  1374. - '[player] jobs join explorator'
  1375. right_click_commands:
  1376. - '[close]'
  1377. - '[player] jobs join explorator'
  1378. '8':
  1379. material: 160
  1380. data: 5
  1381. amount: 1
  1382. slot: 17
  1383. update: true
  1384. display_name: '&a&lPagina urmatoare'
  1385. left_click_commands:
  1386. - '[openguimenu] jobs2'
  1387. right_click_commands:
  1388. - '[openguimenu] jobs2'
  1389. '9':
  1390. material: 160
  1391. data: 5
  1392. amount: 1
  1393. slot: 8
  1394. update: true
  1395. display_name: '&a&lPagina urmatoare'
  1396. left_click_commands:
  1397. - '[openguimenu] jobs2'
  1398. right_click_commands:
  1399. - '[openguimenu] jobs2'
  1400. '10':
  1401. material: 160
  1402. data: 5
  1403. amount: 1
  1404. slot: 26
  1405. update: true
  1406. display_name: '&a&lPagina urmatoare'
  1407. left_click_commands:
  1408. - '[openguimenu] jobs2'
  1409. right_click_commands:
  1410. - '[openguimenu] jobs2'
  1411. jobs2:
  1412. menu_title: '&8Alege un job potrivit!'
  1413. open_command: jobs2
  1414. size: 27
  1415. items:
  1416. '1':
  1417. material: 133
  1418. slot: 10
  1419. display_name: '&a&lProducator'
  1420. lore:
  1421. - ''
  1422. - '&fCastiga bani prin'
  1423. - '&fconstruirea obiectelor.'
  1424. - ''
  1425. left_click_commands:
  1426. - '[close]'
  1427. - '[player] jobs join producator'
  1428. right_click_commands:
  1429. - '[close]'
  1430. - '[player] jobs join producator'
  1431. '2':
  1432. material: 133
  1433. slot: 11
  1434. display_name: '&a&lPescar'
  1435. lore:
  1436. - ''
  1437. - '&fCastiga bani pescuind.'
  1438. - ''
  1439. left_click_commands:
  1440. - '[close]'
  1441. - '[player] jobs join pescar'
  1442. right_click_commands:
  1443. - '[close]'
  1444. - '[player] jobs join pescar'
  1445. '3':
  1446. material: 133
  1447. slot: 12
  1448. display_name: '&a&lFierar'
  1449. lore:
  1450. - ''
  1451. - '&fCastiga bani prin'
  1452. - '&frepararea itemelor.'
  1453. - ''
  1454. left_click_commands:
  1455. - '[close]'
  1456. - '[player] jobs join fierar'
  1457. right_click_commands:
  1458. - '[close]'
  1459. - '[player] jobs join fierar'
  1460. '4':
  1461. material: 133
  1462. slot: 13
  1463. display_name: '&a&lChimist'
  1464. lore:
  1465. - ''
  1466. - '&fCastiga bani preparand potiuni.'
  1467. - ''
  1468. left_click_commands:
  1469. - '[close]'
  1470. - '[player] jobs join chimist'
  1471. right_click_commands:
  1472. - '[close]'
  1473. - '[player] jobs join chimist'
  1474. '5':
  1475. material: 133
  1476. slot: 14
  1477. display_name: '&a&lEnchanter'
  1478. lore:
  1479. - ''
  1480. - '&fCastiga bani enchantand obiecte.'
  1481. - ''
  1482. left_click_commands:
  1483. - '[close]'
  1484. - '[player] jobs join enchanter'
  1485. right_click_commands:
  1486. - '[close]'
  1487. - '[player] jobs join enchanter'
  1488. vinde:
  1489. menu_title: '&8Vinde capete'
  1490. open_command: vinde
  1491. size: 27
  1492. items:
  1493. '1':
  1494. material: 160
  1495. data: 5
  1496. amount: 1
  1497. slot: 13
  1498. update: true
  1499. display_name: '&a&lVinde capetele'
  1500. lore:
  1501. - ''
  1502. - '&fAici poti vinde toate'
  1503. - '&fcapetele primite de la'
  1504. - '&fmobi.'
  1505. - ''
  1506. - '&6&lClick stanga &fpentru a vinde'
  1507. left_click_commands:
  1508. - '[close]'
  1509. - '[player] sellhead all'
  1510. right_click_commands:
  1511. - '[close]'
  1512. - '[player] sellhead all'
  1513. tutorial:
  1514. menu_title: '&8Tutorial'
  1515. open_command: tutorial
  1516. size: 54
  1517. items:
  1518. '1':
  1519. material: GOLD_INGOT
  1520. data: 0
  1521. amount: 1
  1522. slot: 2
  1523. update: true
  1524. display_name: '&e&lBitcoin'
  1525. lore:
  1526. - '&aCum pot mina bitcoin?'
  1527. - '&fTrebuie sa scrii comanda &a/bitcoin'
  1528. - '&fdupa care sa apesi pe tarnacop,'
  1529. - '&facolo trebuie sa faci un puzzle identic'
  1530. - '&fcu cel din partea dreapta.'
  1531. - ''
  1532. - '&aCum pot cumpara bitcoin?'
  1533. - '&fPoti cumpara bitcoin folosind comanda'
  1534. - '&a/bitcoin &f, dupa aceea apesi pe emerald'
  1535. - '&fsi in cele din urma te pune sa introduci suma'
  1536. - '&fde bitcoin pe care vrei sa o cumperi.'
  1537. - '&cAtentie! Daca banca nu detine'
  1538. - '&cbitcoin, nu puteti cumpara.'
  1539. - ''
  1540. - '&aDe cate ori pot mina bitcoin?'
  1541. - '&fPoti mina bitcoin o data la o ora.'
  1542. - ''
  1543. - '&aCum pot vinde bitcoin?'
  1544. - '&fPoti vinde bitcoin apasand pe aurul din'
  1545. - '&fmeniu, dupa care te pune sa scrii in chat'
  1546. - '&fce suma de bitcoin vrei sa vinzi.'
  1547. '2':
  1548. material: 175
  1549. data: 0
  1550. amount: 1
  1551. slot: 6
  1552. update: true
  1553. display_name: '&b&lPuncte'
  1554. lore:
  1555. - '&aCum pot obtine puncte?'
  1556. - '&fPoti obtine puncte utilizand comanda'
  1557. - '&a/vote &fdupa care trebuie sa mergi'
  1558. - '&fpe fiecare sectiuni pentru a primi'
  1559. - '&fpunctele.'
  1560. - ''
  1561. - '&aCe pot face cu punctele?'
  1562. - '&fIti poti cumpara diferite obiecte'
  1563. - '&futilizand comanda &a/magazin'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement