Guest User

Untitled

a guest
Jun 18th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 348.14 KB | None | 0 0
  1. # DeluxeMenus 1.10.5 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 item - Checks if a player has a specific item
  125. # configuration options:
  126. # material
  127. # amount
  128. # data
  129. # name
  130. # lore
  131. #
  132. # has money - Checks if a player has enough money (Vault required)
  133. # configuration options:
  134. # amount
  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 click_command must start with a specific identifier to know what to do for the execution.
  267. # Valid click_command 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]
  295. #
  296. # [sound] - Play a sound for a the specific player
  297. # Usage: - '[sound]
  298. #
  299. # [json] - Send a json message to the menu viewer
  300. # Usage: - '[json] {"text":"message"}'
  301. #
  302. #
  303. #
  304. # You can delay any of the click command being performed by ending the command with
  305. # <delay=(time in TICKS)>
  306. # example:
  307. # - '[close]'
  308. # - '[message] it has been 5 seconds since the menu closed!<delay=100>'
  309. # - '[message] it has been 10 seconds since the menu closed!<delay=200>'
  310. #
  311. # A delay should NOT be added to the [close] or [openguimenu] actions
  312. # as it could potentially cause unknown issues or glitches with menus.
  313. debug: false
  314. check_updates: true
  315. gui_menus:
  316. island:
  317. menu_title: '&8» Your island'
  318. inventory_type: INVENTORY
  319. open_command:
  320. - is
  321. - island
  322. - is cp
  323. - is controlpanel
  324. - island cp
  325. - island controlpanel
  326. - askyblock:is
  327. - askyblock:is cp
  328. - askyblock:is controlpanel
  329. - askyblock:island cp
  330. - askyblock:island controlpanel
  331. size: 36
  332. items:
  333. '23':
  334. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjFkZDRmZTRhNDI5YWJkNjY1ZGZkYjNlMjEzMjFkNmVmYTZhNmI1ZTdiOTU2ZGI5YzVkNTljOWVmYWIyNSJ9fX0
  335. data: 3
  336. amount: 1
  337. slot: 13
  338. view_requirement:
  339. requirements:
  340. music:
  341. type: string equals
  342. input: '%javascript_permissionscore%'
  343. output: ''
  344. priority: 1
  345. display_name: '&d&lCreate an island'
  346. lore:
  347. - ''
  348. - '&fDo not wait more and'
  349. - '&fstart the adventure'
  350. - '&fthat await you!'
  351. - ''
  352. - '&5&nClick to start!'
  353. left_click_commands:
  354. - '[player] askyblock:island'
  355. - '[refresh]'
  356. right_click_commands:
  357. - '[player] askyblock:is'
  358. - '[refresh]'
  359. '20':
  360. material: 160
  361. display_name: '&f'
  362. data: 15
  363. slots:
  364. - 0
  365. - 1
  366. - 2
  367. - 3
  368. - 4
  369. - 5
  370. - 6
  371. - 7
  372. - 8
  373. - 9
  374. - 10
  375. - 11
  376. - 12
  377. - 14
  378. - 15
  379. - 16
  380. - 17
  381. - 18
  382. - 19
  383. - 20
  384. - 21
  385. - 22
  386. - 23
  387. - 24
  388. - 25
  389. - 26
  390. view_requirement:
  391. requirements:
  392. music:
  393. type: string equals
  394. input: '%javascript_permissionscore%'
  395. output: ''
  396. priority: 1
  397. '200':
  398. material: 160
  399. display_name: '&f'
  400. data: 2
  401. slots:
  402. - 27
  403. - 28
  404. - 29
  405. - 30
  406. - 31
  407. - 32
  408. - 33
  409. - 34
  410. - 35
  411. view_requirement:
  412. requirements:
  413. music:
  414. type: string equals
  415. input: '%javascript_permissionscore%'
  416. output: ''
  417. priority: 1
  418. '21':
  419. material: 160
  420. display_name: '&f'
  421. data: 15
  422. slots:
  423. - 0
  424. - 1
  425. - 2
  426. - 3
  427. - 4
  428. - 5
  429. - 6
  430. - 7
  431. - 8
  432. - 9
  433. - 11
  434. - 17
  435. - 18
  436. - 19
  437. - 20
  438. - 26
  439. - 27
  440. - 28
  441. - 29
  442. - 30
  443. - 31
  444. - 32
  445. - 33
  446. - 34
  447. - 35
  448. view_requirement:
  449. requirements:
  450. music:
  451. type: string equals
  452. input: '%javascript_permissionscore%'
  453. output: 'yes'
  454. priority: 2
  455. '22':
  456. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM2ZDkwMjRmYzU0MTJlOGUyNjY0MTIzNzMyZDIyOTFkZmM2YmIxNzVmNzJjZjg5NDA5NmY3ZjMxMzY0MWZkNCJ9fX0=
  457. data: 3
  458. amount: 1
  459. slot: 10
  460. view_requirement:
  461. requirements:
  462. music:
  463. type: string equals
  464. input: '%javascript_permissionscore%'
  465. output: 'yes'
  466. priority: 2
  467. display_name: '&d&lIsland Info'
  468. lore:
  469. - ''
  470. - '&fView your island stats,'
  471. - '&finformation, and settings!'
  472. - ''
  473. - '&5&nClick to view!'
  474. left_click_commands:
  475. - '[console] ib open islandinfo %player_name%'
  476. - '[refresh]'
  477. right_click_commands:
  478. - '[console] ib open islandinfo %player_name%'
  479. - '[refresh]'
  480. '24':
  481. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzFkNTY4ZTE2YmU2Yzc5ZDY3NGY5N2FjMWU5NDlmOGE4ZjAzZTM4MzdiNmYwYjU2YTUzOWJmYzMzN2YxZWJkIn19fQ==
  482. data: 3
  483. amount: 1
  484. slot: 12
  485. view_requirement:
  486. requirements:
  487. music:
  488. type: string equals
  489. input: '%javascript_permissionscore%'
  490. output: 'yes'
  491. priority: 2
  492. display_name: '&d&lIsland Level'
  493. lore:
  494. - ''
  495. - '&fUnlock ores within your cobble'
  496. - '&fgenerators &7(/ores)&f.'
  497. - ''
  498. - '&5&nClick to update your island level!'
  499. left_click_commands:
  500. - '[console] titlemanager:tm message %player_name% &b\n&aCalculating your
  501. level...'
  502. - '[close]'
  503. - '[player] askyblock:is level'
  504. - '[refresh]'
  505. right_click_commands:
  506. - '[console] titlemanager:tm message %player_name% &b\n&aCalculating your
  507. level...'
  508. - '[close]'
  509. - '[player] askyblock:is level'
  510. - '[refresh]'
  511. '25':
  512. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzk1ZDM3OTkzZTU5NDA4MjY3ODQ3MmJmOWQ4NjgyMzQxM2MyNTBkNDMzMmEyYzdkOGM1MmRlNDk3NmIzNjIifX19
  513. data: 3
  514. amount: 1
  515. slot: 13
  516. view_requirement:
  517. requirements:
  518. music:
  519. type: string equals
  520. input: '%javascript_permissionscore%'
  521. output: 'yes'
  522. priority: 2
  523. display_name: '&d&lIsland Home'
  524. lore:
  525. - ''
  526. - '&fTeleport to your island and'
  527. - '&fstart creating!'
  528. - ''
  529. - '&5&nClick to teleport!'
  530. left_click_commands:
  531. - '[console] titlemanager:tm message %player_name% &b\n&aTeleporting to your
  532. island...'
  533. - '[close]'
  534. - '[player] askyblock:is go<delay=40>'
  535. - '[refresh]'
  536. - '[close]'
  537. right_click_commands:
  538. - '[console] titlemanager:tm message %player_name% &b\n&aTeleporting to your
  539. island...'
  540. - '[close]'
  541. - '[player] askyblock:is go<delay=40>'
  542. - '[refresh]'
  543. '26':
  544. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc0MTBjMDdiZmJiNDE0NTAwNGJmOTE4YzhkNjMwMWJkOTdjZTEzMjcwY2UxZjIyMWQ5YWFiZWUxYWZkNTJhMyJ9fX0=
  545. data: 3
  546. amount: 1
  547. slot: 14
  548. view_requirement:
  549. requirements:
  550. music:
  551. type: string equals
  552. input: '%javascript_permissionscore%'
  553. output: 'yes'
  554. priority: 2
  555. display_name: '&d&lIsland Members'
  556. lore:
  557. - ''
  558. - '&fInvite members to your island'
  559. - '&fand build together!'
  560. - ''
  561. - '&5&nClick to view your island members!'
  562. left_click_commands:
  563. - '[player] askyblock:is listcoops'
  564. - '[refresh]'
  565. right_click_commands:
  566. - '[player] askyblock:is listcoops'
  567. - '[refresh]'
  568. '27':
  569. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTYxZGZkZGE3MTAyMmJmYWQ3OWVhYmJmYTU2YTE1MTE2NDdiMjAyYWQxMTM2ZmY5N2UzMWEwNmRiYWMxMGVjYiJ9fX0=
  570. data: 3
  571. amount: 1
  572. slot: 15
  573. view_requirement:
  574. requirements:
  575. music:
  576. type: string equals
  577. input: '%javascript_permissionscore%'
  578. output: 'yes'
  579. priority: 2
  580. display_name: '&d&lIsland Warps'
  581. lore:
  582. - ''
  583. - '&fVisit other public member'
  584. - '&fislands and rate them!'
  585. - ''
  586. - '&5&nLeft-click to show public warps!'
  587. - '&5&nRight-click to visit the island of someone!'
  588. left_click_commands:
  589. - '[player] askyblock:is warps'
  590. - '[close]'
  591. - '[refresh]'
  592. right_click_commands:
  593. - '[player] askyblock:is warp <-a Player name>'
  594. - '[close]'
  595. - '[refresh]'
  596. '28':
  597. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTAzYjU0NGI0OTk4OGVhNzBkNzI2NmU0MjAyMzFmMDQ5MTIzY2E3YmY2NjBlYjA5NTU5ODA1NjU2NjE0ZGNlNSJ9fX0=
  598. data: 3
  599. amount: 1
  600. slot: 16
  601. view_requirement:
  602. requirements:
  603. music:
  604. type: string equals
  605. input: '%askyblock_owner%'
  606. output: '%player_name%'
  607. music2:
  608. type: string equals
  609. input: '%askyblock_has_island%'
  610. output: 'yes'
  611. priority: 3
  612. display_name: '&d&lIsland Actions'
  613. lore:
  614. - ''
  615. - '&fControl the island and'
  616. - '&faccess to your available'
  617. - '&fcommands depending of your'
  618. - '&frole...'
  619. - ''
  620. - '&d&lINFORMATION:'
  621. - '&5&l* &fRole: &cOwner'
  622. - ''
  623. - '&5&nClick to open your options!'
  624. left_click_commands:
  625. - '[openguimenu] actionsmember'
  626. - '[close]'
  627. - '[refresh]'
  628. right_click_commands:
  629. - '[openguimenu] actionsmember'
  630. - '[close]'
  631. - '[refresh]'
  632. '29':
  633. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTAzYjU0NGI0OTk4OGVhNzBkNzI2NmU0MjAyMzFmMDQ5MTIzY2E3YmY2NjBlYjA5NTU5ODA1NjU2NjE0ZGNlNSJ9fX0=
  634. data: 3
  635. amount: 1
  636. slot: 16
  637. view_requirement:
  638. requirements:
  639. music:
  640. type: string equals
  641. input: '%javascript_permissionscore%'
  642. output: 'yes'
  643. music2:
  644. type: string equals
  645. input: '%askyblock_has_island%'
  646. output: 'no'
  647. priority: 4
  648. display_name: '&d&lIsland Actions'
  649. lore:
  650. - ''
  651. - '&fControl the island and'
  652. - '&faccess to your available'
  653. - '&fcommands depending of your'
  654. - '&frole...'
  655. - ''
  656. - '&d&lINFORMATION:'
  657. - '&5&l* &fRole: &7Member'
  658. - ''
  659. - '&5&nClick to open options!'
  660. left_click_commands:
  661. - '[openguimenu] actionsmember'
  662. - '[close]'
  663. - '[refresh]'
  664. right_click_commands:
  665. - '[openguimenu] actionsmember'
  666. - '[close]'
  667. - '[refresh]'
  668. '30':
  669. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTAzYjU0NGI0OTk4OGVhNzBkNzI2NmU0MjAyMzFmMDQ5MTIzY2E3YmY2NjBlYjA5NTU5ODA1NjU2NjE0ZGNlNSJ9fX0=
  670. data: 3
  671. amount: 1
  672. slot: 16
  673. view_requirement:
  674. requirements:
  675. music:
  676. type: string equals
  677. input: '%player_world%'
  678. output: world
  679. priority: 2
  680. display_name: '&d&lIsland Actions'
  681. lore:
  682. - ''
  683. - '&fControl the island and'
  684. - '&faccess to your available'
  685. - '&fcommands depending of your'
  686. - '&frole...'
  687. - ''
  688. - '&7&oYou must be in your island'
  689. - '&7&oto execute actions.'
  690. '31':
  691. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjQzYjgwYmExMjc1MzEyMjcxOWE3MWNhZTM4MjIyZTM0NTIyNWE2NWY4YWFkMTZhZTIxNDMwZmVjMWEzIn19fQ==
  692. data: 3
  693. amount: 1
  694. slot: 21
  695. view_requirement:
  696. requirements:
  697. music:
  698. type: string equals
  699. input: '%javascript_permissionscore%'
  700. output: 'yes'
  701. priority: 3
  702. display_name: '&d&lUpgrades Center'
  703. lore:
  704. - ''
  705. - '&fHere you can navigate'
  706. - '&fthrough Island upgrades and'
  707. - '&fGenerator upgrades...'
  708. - ''
  709. - '&d&lINFORMATION:'
  710. - '&5&l* &fIsland Size: &a%javascript_border%'
  711. - '&5&l* &fIsland Team: &d%javascript_team%'
  712. - '&5&l* &fIsland Homes: &b%javascript_homes%'
  713. - ''
  714. - '&5&nClick to open upgrades!'
  715. left_click_commands:
  716. - '[openguimenu] isupgrades'
  717. - '[close]'
  718. - '[refresh]'
  719. right_click_commands:
  720. - '[openguimenu] isupgrades'
  721. - '[close]'
  722. - '[refresh]'
  723. '32':
  724. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM4MGY4NjdkOWM4MGY2OWUxYjBhMzZhYmQ1ZGM2ZDYzNmJmYWQyYjYyZGYzMmUwYTA4MWJmZTkxMWQ3NTVkMiJ9fX0=
  725. data: 3
  726. amount: 1
  727. slot: 23
  728. view_requirement:
  729. requirements:
  730. music:
  731. type: string equals
  732. input: '%javascript_permissionscore%'
  733. output: 'yes'
  734. priority: 3
  735. display_name: '&d&lAchievements'
  736. lore:
  737. - ''
  738. - '&fCompete with other people and'
  739. - '&fcomplete all the achievements of'
  740. - '&fSkyblock'
  741. - ''
  742. - '&c&oComing soon!'
  743. '3234243244':
  744. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGQ4ZTJkOTUyY2YzZTk0MzE1OGMzOWU3YzUwYzRlNDRiNDgxODE3NmJlNDhmNjQ3OTVhMDg0OWU1OTg0OTliMiJ9fX0=
  745. data: 3
  746. amount: 1
  747. slot: 22
  748. view_requirement:
  749. requirements:
  750. music:
  751. type: string equals
  752. input: '%javascript_permissionscore%'
  753. output: 'yes'
  754. priority: 4
  755. display_name: '&d&lIsland Skills'
  756. lore:
  757. - ''
  758. - '&fUnlock new island skill levels'
  759. - '&fto gain access to better items!'
  760. - ''
  761. - '&d&lREQUIREMENTS:'
  762. - '&5&l* &fRole: &aOwner'
  763. - ''
  764. - '&c&oYou must be the island''s owner.'
  765. '323424dsd233244':
  766. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGQ4ZTJkOTUyY2YzZTk0MzE1OGMzOWU3YzUwYzRlNDRiNDgxODE3NmJlNDhmNjQ3OTVhMDg0OWU1OTg0OTliMiJ9fX0=
  767. data: 3
  768. amount: 1
  769. slot: 22
  770. view_requirement:
  771. requirements:
  772. music:
  773. type: string equals
  774. input: '%askyblock_owner%'
  775. output: '%player_name%'
  776. music2:
  777. type: string equals
  778. input: '%askyblock_has_island%'
  779. output: 'yes'
  780. priority: 3
  781. display_name: '&d&lIsland Skills'
  782. lore:
  783. - ''
  784. - '&fUnlock new island skill levels'
  785. - '&fto gain access to better items!'
  786. - ''
  787. - '&d&lREQUIREMENTS:'
  788. - '&5&l* &fRole: &aOwner'
  789. - ''
  790. - '&5&nLeft-click to upgrade!'
  791. left_click_commands:
  792. - '[openguimenu] isskills'
  793. - '[close]'
  794. - '[refresh]'
  795. right_click_commands:
  796. - '[openguimenu] isskills'
  797. - '[close]'
  798. - '[refresh]'
  799. '3034234d':
  800. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGQ4ZTJkOTUyY2YzZTk0MzE1OGMzOWU3YzUwYzRlNDRiNDgxODE3NmJlNDhmNjQ3OTVhMDg0OWU1OTg0OTliMiJ9fX0=
  801. data: 3
  802. amount: 1
  803. slot: 22
  804. view_requirement:
  805. requirements:
  806. music:
  807. type: string equals
  808. input: '%player_world%'
  809. output: world
  810. priority: 2
  811. display_name: '&d&lIsland Skills'
  812. lore:
  813. - ''
  814. - '&fUnlock new island skill levels'
  815. - '&fto gain access to better items!'
  816. - ''
  817. - '&d&lREQUIREMENTS:'
  818. - '&5&l* &fRole: &aOwner'
  819. - ''
  820. - '&7&oYou must be in your island'
  821. - '&7&oto execute actions.'
  822. mines:
  823. menu_title: '&8» Mines'
  824. inventory_type: INVENTORY
  825. open_requirement: '"%player_world%" == "world"'
  826. open_command:
  827. - dfsfrwedwedwegweeewrww
  828. - mines
  829. size: 9
  830. items:
  831. '23':
  832. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjY4MWNkNzRkMmM5MzM0MTUxZjM1NjZhOGFkYzdiNDQ0YTg3NWQ3YzQ3ZmJiY2JiMjM5YjQ4M2VkY2MxNTQifX19
  833. data: 3
  834. amount: 1
  835. slot: 2
  836. priority: 1
  837. display_name: '&d&lCommon Mine'
  838. lore:
  839. - ''
  840. - '&d&lINFORMATION:'
  841. - '&5&l* &fDifficulty: &eLow'
  842. - '&5&l* &fMinerals: &eLow'
  843. - '&5&l* &fBoss Rewards: &eLow'
  844. - '&5&l* &fRating Bar: &a■&c■■'
  845. - ''
  846. - '&5&l* &fYou have access to the'
  847. - '&d&lCOMMON &fmine.'
  848. - ''
  849. - '&5&nClick to teleport!'
  850. left_click_commands:
  851. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  852. &d&lCOMMON &amine...'
  853. - '[close]'
  854. - '[console] warps minem %player_name%<delay=40>'
  855. - '[refresh]'
  856. right_click_commands:
  857. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  858. &e&lCOMMON &amine...'
  859. - '[close]'
  860. - '[console] warps minem %player_name%<delay=40>'
  861. - '[refresh]'
  862. '20':
  863. material: 160
  864. display_name: '&f'
  865. data: 15
  866. slots:
  867. - 0
  868. - 1
  869. - 3
  870. - 5
  871. - 7
  872. - 8
  873. priority: 1
  874. '22':
  875. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmJjOGYyZjVmMzJjMTY3M2VjMjc2Y2YzZGU2ZWQ1M2E1YTg4Yjk1MWQ2MDljM2JjYzQ5YWU4ZmE5ODE2OCJ9fX0=
  876. data: 3
  877. amount: 1
  878. slot: 4
  879. priority: 2
  880. display_name: '&d&lRare Mine'
  881. lore:
  882. - ''
  883. - '&d&lINFORMATION:'
  884. - '&5&l* &fDifficulty: &eMedium'
  885. - '&5&l* &fMinerals: &eMedium'
  886. - '&5&l* &fBoss Rewards: &eMedium'
  887. - '&5&l* &fRating Bar: &a■■&c■'
  888. - ''
  889. - '&5&l* &fPurchase a ticket to access'
  890. - '&fto the &d&lRARE &fmine.'
  891. - ''
  892. - '&5&nLeft-click to view tickets!'
  893. - '&5&nRight-click to teleport!'
  894. left_click_commands:
  895. - '[openguimenu] ticketsmp'
  896. - '[refresh]'
  897. right_click_commands:
  898. - '[console] warps minep %player_name%'
  899. - '[refresh]'
  900. right_click_requirement:
  901. requirements:
  902. name:
  903. type: has permission
  904. permission: warp.mineprimal
  905. deny_commands:
  906. - '[console] titlemanager:tm message %player_name% &b\n&cBuy a ticket before
  907. teleporting!'
  908. - '[close]'
  909. '24':
  910. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmZjM2ZjZDE3MDVkYzAzYWRmMzFlNmRjOGU5Yzk1NDYwYzdjYTRkNzQ3YmU5YTY5YzRiY2RjNzVjNDMzNThlIn19fQ==
  911. data: 3
  912. amount: 1
  913. slot: 6
  914. priority: 2
  915. display_name: '&d&lLegendary Mine'
  916. lore:
  917. - ''
  918. - '&d&lINFORMATION:'
  919. - '&5&l* &fDifficulty: &eHigh'
  920. - '&5&l* &fMinerals: &eHigh'
  921. - '&5&l* &fBoss Rewards: &eHigh'
  922. - '&5&l* &fRating Bar: &a■■■'
  923. - ''
  924. - '&5&l* &fPurchase a ticket to access'
  925. - '&fto the &d&lLEGENDARY &fmine.'
  926. - ''
  927. - '&5&nLeft-click to view tickets!'
  928. - '&5&nRight-click to teleport!'
  929. left_click_commands:
  930. - '[openguimenu] ticketsmc'
  931. - '[refresh]'
  932. right_click_commands:
  933. - '[console] warps minec %player_name%'
  934. - '[refresh]'
  935. right_click_requirement:
  936. requirements:
  937. name:
  938. type: has permission
  939. permission: warp.minecave
  940. deny_commands:
  941. - '[console] titlemanager:tm message %player_name% &b\n&cBuy a ticket before
  942. teleporting!'
  943. - '[close]'
  944. ticketsmp:
  945. open_command:
  946. - sdfsdssdsdfde
  947. update_interval: 1
  948. menu_title: '&8» Rare Mine Tickets'
  949. size: 27
  950. items:
  951. '9':
  952. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  953. data: 3
  954. slot: 10
  955. priority: 1
  956. display_name: '&d&lBack'
  957. lore:
  958. - ''
  959. - '&5&nClick to go back!'
  960. left_click_commands:
  961. - '[openguimenu] Mines'
  962. - '[refresh]'
  963. right_click_commands:
  964. - '[openguimenu] Mines'
  965. - '[refresh]'
  966. '99':
  967. material: 339
  968. slot: 12
  969. priority: 1
  970. display_name: '&d&lRare Mine &8» &f30 Minutes'
  971. lore:
  972. - ''
  973. - '&5&l* &fPurchase access to the'
  974. - ' &d&lRARE &fmine for &6&n30 Minutes&f!'
  975. - ''
  976. - '&d&lREQUIREMENTS:'
  977. - '&5&l* &fMoney: &e$5,000'
  978. - ''
  979. - '&5&nLeft-click to purchase ticket!'
  980. left_click_commands:
  981. - '[console] vouchers give %player_name% PrimalTicket30'
  982. - '[console] eco take %player_name% 5000'
  983. - '[refresh]'
  984. left_click_requirement:
  985. requirements:
  986. name:
  987. type: has money
  988. amount: 5000
  989. deny_commands:
  990. - '[console] titlemanager:tm message %player_name% &b\n&cYou don''t have
  991. money enough!'
  992. - '[close]'
  993. '934':
  994. material: 339
  995. slot: 13
  996. priority: 1
  997. display_name: '&d&lRare Mine &8» &f1 Hour'
  998. lore:
  999. - ''
  1000. - '&5&l* &fPurchase access to the'
  1001. - ' &d&lRARE &fmine for &6&n1 Hour&f!'
  1002. - ''
  1003. - '&d&lREQUIREMENTS:'
  1004. - '&5&l* &fMoney: &e$9,500'
  1005. - ''
  1006. - '&5&nLeft-click to purchase ticket!'
  1007. left_click_commands:
  1008. - '[console] vouchers give %player_name% PrimalTicket1h'
  1009. - '[console] eco take %player_name% 9500'
  1010. - '[refresh]'
  1011. left_click_requirement:
  1012. requirements:
  1013. name:
  1014. type: has money
  1015. amount: 9500
  1016. deny_commands:
  1017. - '[console] titlemanager:tm message %player_name% &b\n&cYou don''t have
  1018. money enough!'
  1019. - '[close]'
  1020. '9134':
  1021. material: 339
  1022. slot: 14
  1023. priority: 1
  1024. display_name: '&d&lRare Mine &8» &f12 Hours'
  1025. lore:
  1026. - ''
  1027. - '&5&l* &fPurchase access to the'
  1028. - ' &d&lRARE &fmine for &6&n12 Hours&f!'
  1029. - ''
  1030. - '&d&lREQUIREMENTS:'
  1031. - '&5&l* &fMoney: &e$110,000'
  1032. - ''
  1033. - '&5&nLeft-click to purchase ticket!'
  1034. left_click_commands:
  1035. - '[console] vouchers give %player_name% PrimalTicket12h'
  1036. - '[console] eco take %player_name% 110000'
  1037. - '[refresh]'
  1038. left_click_requirement:
  1039. requirements:
  1040. name:
  1041. type: has money
  1042. amount: 110000
  1043. deny_commands:
  1044. - '[console] titlemanager:tm message %player_name% &b\n&cYou don''t have
  1045. money enough!'
  1046. - '[close]'
  1047. '20':
  1048. material: 160
  1049. display_name: '&f'
  1050. data: 15
  1051. slots:
  1052. - 0
  1053. - 1
  1054. - 2
  1055. - 3
  1056. - 4
  1057. - 5
  1058. - 6
  1059. - 7
  1060. - 8
  1061. - 9
  1062. - 11
  1063. - 16
  1064. - 17
  1065. - 18
  1066. - 19
  1067. - 20
  1068. - 21
  1069. - 22
  1070. - 23
  1071. - 24
  1072. - 25
  1073. - 26
  1074. priority: 1
  1075. ticketsmc:
  1076. open_command:
  1077. - sdfsdsssdedsdfde
  1078. update_interval: 1
  1079. menu_title: '&8» Legendary Mine Tickets'
  1080. size: 27
  1081. items:
  1082. '9':
  1083. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  1084. data: 3
  1085. slot: 10
  1086. priority: 1
  1087. display_name: '&d&lBack'
  1088. lore:
  1089. - ''
  1090. - '&5&nClick to go back!'
  1091. left_click_commands:
  1092. - '[openguimenu] Mines'
  1093. - '[refresh]'
  1094. right_click_commands:
  1095. - '[openguimenu] Mines'
  1096. - '[refresh]'
  1097. '99':
  1098. material: 339
  1099. slot: 12
  1100. priority: 1
  1101. display_name: '&d&lLegendary Mine &8» &f30 Minutes'
  1102. lore:
  1103. - ''
  1104. - '&5&l* &fPurchase access to the'
  1105. - ' &d&lLEGENDARY &fmine for &6&n30 Minutes&f!'
  1106. - ''
  1107. - '&d&lREQUIREMENTS:'
  1108. - '&5&l* &fMoney: &e$10,000'
  1109. - ''
  1110. - '&5&nLeft-click to purchase ticket!'
  1111. left_click_commands:
  1112. - '[console] vouchers give %player_name% CaveTicket30'
  1113. - '[console] eco take %player_name% 10000'
  1114. - '[refresh]'
  1115. left_click_requirement:
  1116. requirements:
  1117. name:
  1118. type: has money
  1119. amount: 10000
  1120. deny_commands:
  1121. - '[console] titlemanager:tm message %player_name% &b\n&cYou don''t have
  1122. money enough!'
  1123. - '[close]'
  1124. '934':
  1125. material: 339
  1126. slot: 13
  1127. priority: 1
  1128. display_name: '&d&lLegendary Mine &8» &f1 Hour'
  1129. lore:
  1130. - ''
  1131. - '&5&l* &fPurchase access to the'
  1132. - ' &d&lLEGENDARY &fmine for &6&n1 Hour&f!'
  1133. - ''
  1134. - '&d&lREQUIREMENTS:'
  1135. - '&5&l* &fMoney: &e$18,000'
  1136. - ''
  1137. - '&5&nLeft-click to purchase ticket!'
  1138. left_click_commands:
  1139. - '[console] vouchers give %player_name% CaveTicket1h'
  1140. - '[console] eco take %player_name% 18000'
  1141. - '[refresh]'
  1142. left_click_requirement:
  1143. requirements:
  1144. name:
  1145. type: has money
  1146. amount: 18000
  1147. deny_commands:
  1148. - '[console] titlemanager:tm message %player_name% &b\n&cYou don''t have
  1149. money enough!'
  1150. - '[close]'
  1151. '9134':
  1152. material: 339
  1153. slot: 14
  1154. priority: 1
  1155. display_name: '&d&lLegendary Mine &8» &f12 Hours'
  1156. lore:
  1157. - ''
  1158. - '&5&l* &fPurchase access to the'
  1159. - ' &d&lLEGENDARY &fmine for &6&n12 Hours&f!'
  1160. - ''
  1161. - '&d&lREQUIREMENTS:'
  1162. - '&5&l* &fMoney: &e$200,000'
  1163. - ''
  1164. - '&5&nLeft-click to purchase ticket!'
  1165. left_click_commands:
  1166. - '[console] vouchers give %player_name% CaveTicket12h'
  1167. - '[console] eco take %player_name% 200000'
  1168. - '[refresh]'
  1169. left_click_requirement:
  1170. requirements:
  1171. name:
  1172. type: has money
  1173. amount: 200000
  1174. deny_commands:
  1175. - '[console] titlemanager:tm message %player_name% &b\n&cYou don''t have
  1176. money enough!'
  1177. - '[close]'
  1178. '20':
  1179. material: 160
  1180. display_name: '&f'
  1181. data: 15
  1182. slots:
  1183. - 0
  1184. - 1
  1185. - 2
  1186. - 3
  1187. - 4
  1188. - 5
  1189. - 6
  1190. - 7
  1191. - 8
  1192. - 9
  1193. - 11
  1194. - 16
  1195. - 17
  1196. - 18
  1197. - 19
  1198. - 20
  1199. - 21
  1200. - 22
  1201. - 23
  1202. - 24
  1203. - 25
  1204. - 26
  1205. priority: 1
  1206. warps:
  1207. menu_title: '&8» Warps'
  1208. inventory_type: INVENTORY
  1209. open_command:
  1210. - warp
  1211. - warps
  1212. - essentials:warp
  1213. - essentials:warps
  1214. size: 36
  1215. items:
  1216. '23':
  1217. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1218. data: 3
  1219. amount: 1
  1220. slot: 12
  1221. priority: 1
  1222. display_name: '&d&lCrates'
  1223. lore:
  1224. - ''
  1225. - '&5&l* &fTeleport to the crates area'
  1226. - '&fto use your crate keys!'
  1227. - ''
  1228. - '&5&nClick to teleport!'
  1229. left_click_commands:
  1230. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to crates...'
  1231. - '[close]'
  1232. - '[console] warp crates %player_name%<delay=40>'
  1233. - '[refresh]'
  1234. right_click_commands:
  1235. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to crates...'
  1236. - '[close]'
  1237. - '[console] warp crates %player_name%<delay=40>'
  1238. - '[refresh]'
  1239. '20':
  1240. material: 160
  1241. display_name: '&f'
  1242. data: 15
  1243. slots:
  1244. - 0
  1245. - 1
  1246. - 2
  1247. - 3
  1248. - 4
  1249. - 5
  1250. - 6
  1251. - 7
  1252. - 8
  1253. - 9
  1254. - 10
  1255. - 11
  1256. - 15
  1257. - 16
  1258. - 17
  1259. - 18
  1260. - 19
  1261. - 20
  1262. - 24
  1263. - 25
  1264. - 26
  1265. - 27
  1266. - 28
  1267. - 29
  1268. - 30
  1269. - 31
  1270. - 32
  1271. - 33
  1272. - 34
  1273. - 35
  1274. priority: 1
  1275. '22':
  1276. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzk1ZDM3OTkzZTU5NDA4MjY3ODQ3MmJmOWQ4NjgyMzQxM2MyNTBkNDMzMmEyYzdkOGM1MmRlNDk3NmIzNjIifX19
  1277. data: 3
  1278. amount: 1
  1279. slot: 13
  1280. view_requirement:
  1281. requirements:
  1282. music:
  1283. type: string equals
  1284. input: '%javascript_permissionscore%'
  1285. output: 'no'
  1286. priority: 1
  1287. display_name: '&d&lIsland'
  1288. lore:
  1289. - ''
  1290. - '&5&l* &fTeleport to your island!'
  1291. - ''
  1292. - '&7&oYou are not in a island'
  1293. - '&7&owhere you can teleport to'
  1294. - ''
  1295. - '&5&nClick to create one!'
  1296. left_click_commands:
  1297. - '[openguimenu] island'
  1298. - '[refresh]'
  1299. right_click_commands:
  1300. - '[openguimenu] island'
  1301. - '[refresh]'
  1302. '25':
  1303. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzk1ZDM3OTkzZTU5NDA4MjY3ODQ3MmJmOWQ4NjgyMzQxM2MyNTBkNDMzMmEyYzdkOGM1MmRlNDk3NmIzNjIifX19
  1304. data: 3
  1305. amount: 1
  1306. slot: 13
  1307. priority: 2
  1308. display_name: '&d&lIsland'
  1309. lore:
  1310. - ''
  1311. - '&5&l* &fTeleport to your island!'
  1312. - ''
  1313. - '&5&nClick to teleport!'
  1314. left_click_commands:
  1315. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to your
  1316. island...'
  1317. - '[close]'
  1318. - '[player] is go<delay=40>'
  1319. - '[refresh]'
  1320. right_click_commands:
  1321. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to your
  1322. island...'
  1323. - '[close]'
  1324. - '[player] is go<delay=40>'
  1325. - '[refresh]'
  1326. '24':
  1327. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzJiYWYwYzU4OWE2YjU4MzUxMWQ4M2MyNjgyNDA4NDJkMzM2NDc3NGVjOWY1NjZkMWZkNGQzNDljZjQyZmIifX19
  1328. data: 3
  1329. amount: 1
  1330. slot: 14
  1331. priority: 1
  1332. display_name: '&d&lLeaderboard'
  1333. lore:
  1334. - ''
  1335. - '&5&l* &fView the top islanders'
  1336. - '&fand richest members!'
  1337. - ''
  1338. - '&5&nClick to teleport!'
  1339. '26':
  1340. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjAyYjhiZDhkOWY0OWNkMmY1ZjY3MWRkZDViMGY5ZDgyMjM3MTM5ODg2ZDhhMjFiNmY4OWE3ZmE3YjEwOTZmIn19fQ==
  1341. data: 3
  1342. amount: 1
  1343. slot: 21
  1344. priority: 1
  1345. display_name: '&d&lMines'
  1346. lore:
  1347. - ''
  1348. - '&5&l* &fUnlock mines to mine minerals'
  1349. - '&fand fight mine bosses!'
  1350. - ''
  1351. - '&5&nClick to view!'
  1352. left_click_commands:
  1353. - '[openguimenu] mines'
  1354. - '[refresh]'
  1355. right_click_commands:
  1356. - '[openguimenu] mines'
  1357. - '[refresh]'
  1358. '27':
  1359. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2RmZmQ5NWM4ZmNkYmFlZDllOWU5YmU0N2VhMWE0MWVlMTIyOWQ4OWI1YzZkNDJhMWY3YjJmN2YxMWJkMTEyMiJ9fX0=
  1360. data: 3
  1361. amount: 1
  1362. slot: 22
  1363. priority: 1
  1364. display_name: '&d&lPvP'
  1365. lore:
  1366. - ''
  1367. - '&5&l* &fFight other members here'
  1368. - '&for slay &c&lEXODIA&f!'
  1369. - ''
  1370. - '&5&nClick to teleport!'
  1371. left_click_commands:
  1372. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  1373. pvp...'
  1374. - '[close]'
  1375. - '[console] warp pvp %player_name%<delay=40>'
  1376. - '[refresh]'
  1377. right_click_commands:
  1378. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  1379. pvp...'
  1380. - '[close]'
  1381. - '[console] warp pvp %player_name%<delay=40>'
  1382. - '[refresh]'
  1383. '28':
  1384. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWY0NTVkMTEzNTVkZThlM2E2Y2Q2ZmU5NzBiYWQ1MWM1OTJhYTZhNTcxNzMwOTI1NWZiMWI5ZTQ3YTRlIn19fQ==
  1385. data: 3
  1386. amount: 1
  1387. slot: 23
  1388. priority: 1
  1389. display_name: '&d&lDungeons'
  1390. lore:
  1391. - ''
  1392. - '&5&l* &fParticipate in the dungeon(s)'
  1393. - '&fto gain rewards and for fun!'
  1394. - ''
  1395. - '&5&nClick to view!'
  1396. left_click_commands:
  1397. - '[openguimenu] dungeons'
  1398. - '[refresh]'
  1399. right_click_commands:
  1400. - '[openguimenu] dungeons'
  1401. - '[refresh]'
  1402. oregen:
  1403. menu_title: '&8» Ore Generator'
  1404. inventory_type: INVENTORY
  1405. open_command:
  1406. - oregen
  1407. - ores
  1408. - customoregen
  1409. size: 36
  1410. items:
  1411. '23':
  1412. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1413. data: 3
  1414. amount: 1
  1415. slot: 11
  1416. priority: 1
  1417. display_name: '&d&lLevel 0'
  1418. lore:
  1419. - ''
  1420. - '&5&l* &fCobblestone: &e100%'
  1421. '20':
  1422. material: 160
  1423. display_name: '&f'
  1424. data: 15
  1425. slots:
  1426. - 0
  1427. - 1
  1428. - 2
  1429. - 3
  1430. - 4
  1431. - 5
  1432. - 6
  1433. - 7
  1434. - 8
  1435. - 9
  1436. - 10
  1437. - 16
  1438. - 17
  1439. - 18
  1440. - 19
  1441. - 20
  1442. - 24
  1443. - 25
  1444. - 26
  1445. - 27
  1446. - 28
  1447. - 29
  1448. - 30
  1449. - 31
  1450. - 32
  1451. - 33
  1452. - 34
  1453. - 35
  1454. priority: 1
  1455. '22':
  1456. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1457. data: 3
  1458. amount: 1
  1459. slot: 12
  1460. priority: 1
  1461. display_name: '&d&lLevel 1,000'
  1462. lore:
  1463. - ''
  1464. - '&5&l* &fCobblestone: &e80%'
  1465. - '&5&l* &fRedstone: &e20%'
  1466. '25':
  1467. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1468. data: 3
  1469. amount: 1
  1470. slot: 13
  1471. priority: 1
  1472. display_name: '&d&lLevel 2,000'
  1473. lore:
  1474. - ''
  1475. - '&5&l* &fCobblestone: &e80%'
  1476. - '&5&l* &fRedstone: &e10%'
  1477. - '&5&l* &fLapis: &e10%'
  1478. '24':
  1479. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1480. data: 3
  1481. amount: 1
  1482. slot: 14
  1483. priority: 1
  1484. display_name: '&d&lLevel 3,500'
  1485. lore:
  1486. - ''
  1487. - '&5&l* &fCobblestone: &e80%'
  1488. - '&5&l* &fRedstone: &e6.5%'
  1489. - '&5&l* &fLapis: &e6.5%'
  1490. - '&5&l* &fCoal: &e6.5%'
  1491. '26':
  1492. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1493. data: 3
  1494. amount: 1
  1495. slot: 15
  1496. priority: 1
  1497. display_name: '&d&lLevel 5,000'
  1498. lore:
  1499. - ''
  1500. - '&5&l* &fCobblestone: &e80%'
  1501. - '&5&l* &fRedstone: &e5%'
  1502. - '&5&l* &fLapis: &e5%'
  1503. - '&5&l* &fCoal: &e5%'
  1504. - '&5&l* &fIron: &e5%'
  1505. '27':
  1506. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1507. data: 3
  1508. amount: 1
  1509. slot: 21
  1510. priority: 1
  1511. display_name: '&d&lLevel 8,500'
  1512. lore:
  1513. - ''
  1514. - '&5&l* &fCobblestone: &e80%'
  1515. - '&5&l* &fRedstone: &e4%'
  1516. - '&5&l* &fLapis: &e4%'
  1517. - '&5&l* &fCoal: &e4%'
  1518. - '&5&l* &fIron: &e4%'
  1519. - '&5&l* &fGold: &e4%'
  1520. '28':
  1521. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1522. data: 3
  1523. amount: 1
  1524. slot: 22
  1525. priority: 1
  1526. display_name: '&d&lLevel 15,000'
  1527. lore:
  1528. - ''
  1529. - '&5&l* &fCobblestone: &e80%'
  1530. - '&5&l* &fRedstone: &e3%'
  1531. - '&5&l* &fLapis: &e3%'
  1532. - '&5&l* &fCoal: &e3%'
  1533. - '&5&l* &fIron: &e3%'
  1534. - '&5&l* &fGold: &e3%'
  1535. - '&5&l* &fEmerald: &e3%'
  1536. '29':
  1537. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1538. data: 3
  1539. amount: 1
  1540. slot: 23
  1541. priority: 1
  1542. display_name: '&d&lLevel 30,000'
  1543. lore:
  1544. - ''
  1545. - '&5&l* &fCobblestone: &e80%'
  1546. - '&5&l* &fRedstone: &e2.5%'
  1547. - '&5&l* &fLapis: &e2.5%'
  1548. - '&5&l* &fCoal: &e2.5%'
  1549. - '&5&l* &fIron: &e2.5%'
  1550. - '&5&l* &fGold: &e2.5%'
  1551. - '&5&l* &fEmerald: &e2.5%'
  1552. - '&5&l* &fDiamond: &e2.5%'
  1553. rewards:
  1554. open_command:
  1555. - sdafdweweassdasd
  1556. update_interval: 1
  1557. menu_title: '&8» Rewards'
  1558. size: 45
  1559. items:
  1560. '9':
  1561. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1562. data: 3
  1563. slot: 11
  1564. priority: 1
  1565. view_requirement:
  1566. requirements:
  1567. name:
  1568. type: string equals
  1569. input: '%javascript_cooldown_1_2592000%'
  1570. output: 0s
  1571. name2:
  1572. type: has permission
  1573. permission: reward.vip
  1574. display_name: '&2» &a&lVIP TREASURE &2«'
  1575. lore:
  1576. - ''
  1577. - '&fClaim this reward for'
  1578. - '&a&lVIP &franks and higher.'
  1579. - ''
  1580. - '&f&lCONTAIN:'
  1581. - '&5&l* &dx1 Common Key'
  1582. - '&5&l* &dx1 Treasure (Tier 1)'
  1583. - '&5&l* &dx3 Common Stars'
  1584. - '&5&l* &d10,000 XP'
  1585. - '&5&l* &d$10,000'
  1586. - ''
  1587. - '&5&l* &fStatus: &a&lAVAILABLE'
  1588. - ''
  1589. - '&5&nClick to claim!'
  1590. left_click_commands:
  1591. - '[console] papi parse %player_name% %javascript_cooldown_1_start%'
  1592. - '[console] vouchers give %player_name% VIPt 1'
  1593. - '[refresh]'
  1594. right_click_commands:
  1595. - '[console] papi parse %player_name% %javascript_cooldown_1_start%'
  1596. - '[console] vouchers give %player_name% VIPt 1'
  1597. - '[refresh]'
  1598. '10':
  1599. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2JkNDdkZDdjMzMzNmU3NWE2NjM5MWNkZjljOTM1ZmFlY2E4Y2UzOGFlMjJhMWIyNzg5NWUzMGI0NTI0NWE4In19fQ==
  1600. data: 3
  1601. priority: 2
  1602. update: true
  1603. slot: 11
  1604. view_requirement:
  1605. requirements:
  1606. name2:
  1607. type: has permission
  1608. permission: reward.vip
  1609. display_name: '&2» &a&lVIP TREASURE &2«'
  1610. lore:
  1611. - ''
  1612. - '&fClaim this reward for'
  1613. - '&a&lVIP &franks and higher.'
  1614. - ''
  1615. - '&f&lCONTAIN:'
  1616. - '&5&l* &dx1 Common Key'
  1617. - '&5&l* &dx1 Treasure (Tier 1)'
  1618. - '&5&l* &dx3 Common Stars'
  1619. - '&5&l* &d10,000 XP'
  1620. - '&5&l* &d$10,000'
  1621. - ''
  1622. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1623. - '&7Wait for %javascript_cooldown_1_2592000%'
  1624. '11':
  1625. material: STAINED_GLASS
  1626. data: 14
  1627. slot: 11
  1628. priority: 3
  1629. display_name: '&2» &a&lVIP TREASURE &2«'
  1630. lore:
  1631. - ''
  1632. - '&fReward for only'
  1633. - '&a&lVIP &franks and higher.'
  1634. - ''
  1635. - '&f&lCONTAIN:'
  1636. - '&5&l* &dx1 Common Key'
  1637. - '&5&l* &dx1 Treasure (Tier 1)'
  1638. - '&5&l* &dx3 Common Stars'
  1639. - '&5&l* &d10,000 XP'
  1640. - '&5&l* &d$10,000'
  1641. - ''
  1642. - '&c&oYou do not have rank enough!'
  1643. '12':
  1644. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1645. data: 3
  1646. slot: 12
  1647. priority: 1
  1648. view_requirement:
  1649. requirements:
  1650. name:
  1651. type: string equals
  1652. input: '%javascript_cooldown_2_2592000%'
  1653. output: 0s
  1654. name2:
  1655. type: has permission
  1656. permission: reward.vip+
  1657. display_name: '&3» &b&lVIP+ &b&lTREASURE &3«'
  1658. lore:
  1659. - ''
  1660. - '&fClaim this reward for'
  1661. - '&b&lVIP+ &franks and higher.'
  1662. - ''
  1663. - '&f&lCONTAIN:'
  1664. - '&5&l* &dx1 Common Key'
  1665. - '&5&l* &dx1 Treasure (Tier 1)'
  1666. - '&5&l* &dx1 Treasure (Tier 2)'
  1667. - '&5&l* &dx5 Common Stars'
  1668. - '&5&l* &d10,000 XP'
  1669. - '&5&l* &d$15,000'
  1670. - ''
  1671. - '&5&l* &fStatus: &a&lAVAILABLE'
  1672. - ''
  1673. - '&5&nClick to claim!'
  1674. left_click_commands:
  1675. - '[console] papi parse %player_name% %javascript_cooldown_2_start%'
  1676. - '[console] vouchers give %player_name% VIP+t 1'
  1677. - '[refresh]'
  1678. right_click_commands:
  1679. - '[console] papi parse %player_name% %javascript_cooldown_2_start%'
  1680. - '[console] vouchers give %player_name% VIP+t 1'
  1681. - '[refresh]'
  1682. '13':
  1683. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2E4YTYwNDkzOTE3N2ZkNDVkZjE1ZjM1MWYzM2YxMzRhM2YwNTE4NjgyM2RkM2FlZDU3YzlmYjIyOGQ0MTcifX19
  1684. data: 3
  1685. priority: 2
  1686. update: true
  1687. slot: 12
  1688. view_requirement:
  1689. requirements:
  1690. name2:
  1691. type: has permission
  1692. permission: reward.vip+
  1693. display_name: '&3» &b&lVIP+ &b&lTREASURE &3«'
  1694. lore:
  1695. - ''
  1696. - '&fClaim this reward for'
  1697. - '&b&lVIP+ &franks and higher.'
  1698. - ''
  1699. - '&f&lCONTAIN:'
  1700. - '&5&l* &dx1 Common Key'
  1701. - '&5&l* &dx1 Treasure (Tier 1)'
  1702. - '&5&l* &dx1 Treasure (Tier 2)'
  1703. - '&5&l* &dx5 Common Stars'
  1704. - '&5&l* &d10,000 XP'
  1705. - '&5&l* &d$15,000'
  1706. - ''
  1707. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1708. - '&7Wait for %javascript_cooldown_2_2592000%'
  1709. '14':
  1710. material: STAINED_GLASS
  1711. data: 14
  1712. slot: 12
  1713. priority: 3
  1714. display_name: '&3» &b&lVIP+ &b&lTREASURE &3«'
  1715. lore:
  1716. - ''
  1717. - '&fReward for only'
  1718. - '&b&lVIP+ &franks and higher.'
  1719. - ''
  1720. - '&f&lCONTAIN:'
  1721. - '&5&l* &dx1 Common Key'
  1722. - '&5&l* &dx1 Treasure (Tier 1)'
  1723. - '&5&l* &dx1 Treasure (Tier 2)'
  1724. - '&5&l* &dx5 Common Stars'
  1725. - '&5&l* &d10,000 XP'
  1726. - '&5&l* &d$15,000'
  1727. - ''
  1728. - '&c&oYou do not have rank enough!'
  1729. '15':
  1730. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1731. data: 3
  1732. slot: 13
  1733. priority: 1
  1734. view_requirement:
  1735. requirements:
  1736. name:
  1737. type: string equals
  1738. input: '%javascript_cooldown_3_2592000%'
  1739. output: 0s
  1740. name2:
  1741. type: has permission
  1742. permission: reward.vip++
  1743. display_name: '&5» &d&lVIP++ &d&lTREASURE &5«'
  1744. lore:
  1745. - ''
  1746. - '&fClaim this reward for'
  1747. - '&d&lVIP++ &franks and higher.'
  1748. - ''
  1749. - '&f&lCONTAIN:'
  1750. - '&5&l* &dx1 Rare Key'
  1751. - '&5&l* &dx1 Treasure (Tier 1)'
  1752. - '&5&l* &dx1 Treasure (Tier 2)'
  1753. - '&5&l* &dx1 Treasure (Tier 3)'
  1754. - '&5&l* &dx5 Common Stars'
  1755. - '&5&l* &dx2 Rare Stars'
  1756. - '&5&l* &d10,000 XP'
  1757. - '&5&l* &d$20,000'
  1758. - ''
  1759. - '&5&l* &fStatus: &a&lAVAILABLE'
  1760. - ''
  1761. - '&5&nClick to claim!'
  1762. left_click_commands:
  1763. - '[console] papi parse %player_name% %javascript_cooldown_3_start%'
  1764. - '[console] vouchers give %player_name% VIP++t 1'
  1765. - '[refresh]'
  1766. right_click_commands:
  1767. - '[console] papi parse %player_name% %javascript_cooldown_3_start%'
  1768. - '[console] vouchers give %player_name% VIP++t 1'
  1769. - '[refresh]'
  1770. '16':
  1771. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWQ2MTg0NjU4N2RjZmU3NGM4ZDQ1MDE5YWE5Zjc3Mzc2Y2ZiZWU0OWQwNDhmMmM2YWUzOGZkMWJhMTMxZjgifX19
  1772. data: 3
  1773. priority: 2
  1774. update: true
  1775. slot: 13
  1776. view_requirement:
  1777. requirements:
  1778. name2:
  1779. type: has permission
  1780. permission: reward.vip++
  1781. display_name: '&5» &d&lVIP++ &d&lTREASURE &5«'
  1782. lore:
  1783. - ''
  1784. - '&fClaim this reward for'
  1785. - '&d&lVIP++ &franks and higher.'
  1786. - ''
  1787. - '&f&lCONTAIN:'
  1788. - '&5&l* &dx1 Rare Key'
  1789. - '&5&l* &dx1 Treasure (Tier 1)'
  1790. - '&5&l* &dx1 Treasure (Tier 2)'
  1791. - '&5&l* &dx1 Treasure (Tier 3)'
  1792. - '&5&l* &dx5 Common Stars'
  1793. - '&5&l* &dx2 Rare Stars'
  1794. - '&5&l* &d10,000 XP'
  1795. - '&5&l* &d$20,000'
  1796. - ''
  1797. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1798. - '&7Wait for %javascript_cooldown_3_2592000%'
  1799. '17':
  1800. material: STAINED_GLASS
  1801. data: 14
  1802. slot: 13
  1803. priority: 3
  1804. display_name: '&5» &d&lVIP++ &d&lTREASURE &5«'
  1805. lore:
  1806. - ''
  1807. - '&fReward for only'
  1808. - '&d&lVIP++ &franks and higher.'
  1809. - ''
  1810. - '&f&lCONTAIN:'
  1811. - '&5&l* &dx1 Rare Key'
  1812. - '&5&l* &dx1 Treasure (Tier 1)'
  1813. - '&5&l* &dx1 Treasure (Tier 2)'
  1814. - '&5&l* &dx1 Treasure (Tier 3)'
  1815. - '&5&l* &dx5 Common Stars'
  1816. - '&5&l* &dx2 Rare Stars'
  1817. - '&5&l* &d10,000 XP'
  1818. - '&5&l* &d$20,000'
  1819. - ''
  1820. - '&c&oYou do not have rank enough!'
  1821. '18':
  1822. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1823. data: 3
  1824. slot: 14
  1825. priority: 1
  1826. view_requirement:
  1827. requirements:
  1828. name:
  1829. type: string equals
  1830. input: '%javascript_cooldown_4_2592000%'
  1831. output: 0s
  1832. name2:
  1833. type: has permission
  1834. permission: reward.vip+++
  1835. display_name: '&4» &c&lVIP+++ &c&lTREASURE &4«'
  1836. lore:
  1837. - ''
  1838. - '&fClaim this reward for'
  1839. - '&c&lVIP+++ &franks and higher.'
  1840. - ''
  1841. - '&f&lCONTAIN:'
  1842. - '&5&l* &dx1 Rare Key'
  1843. - '&5&l* &dx1 Treasure (Tier 1)'
  1844. - '&5&l* &dx1 Treasure (Tier 2)'
  1845. - '&5&l* &dx1 Treasure (Tier 3)'
  1846. - '&5&l* &dx5 Common Stars'
  1847. - '&5&l* &dx3 Rare Stars'
  1848. - '&5&l* &d10,000 XP'
  1849. - '&5&l* &d$50,000'
  1850. - ''
  1851. - '&5&l* &fStatus: &a&lAVAILABLE'
  1852. - ''
  1853. - '&5&nClick to claim!'
  1854. left_click_commands:
  1855. - '[console] papi parse %player_name% %javascript_cooldown_4_start%'
  1856. - '[console] vouchers give %player_name% VIP+++t 1'
  1857. - '[refresh]'
  1858. right_click_commands:
  1859. - '[console] papi parse %player_name% %javascript_cooldown_4_start%'
  1860. - '[console] vouchers give %player_name% VIP+++t 1'
  1861. - '[refresh]'
  1862. '19':
  1863. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjEyZjc4N2M1NGRkODlkMTI2OThkZDE3YjU2NTEyOTRjZmI4MDE3ZDZhZDRkMjZlZTZhOTFjZjFkMGMxYzQifX19
  1864. data: 3
  1865. priority: 2
  1866. update: true
  1867. slot: 14
  1868. view_requirement:
  1869. requirements:
  1870. name2:
  1871. type: has permission
  1872. permission: reward.vip+++
  1873. display_name: '&4» &c&lVIP+++ &c&lTREASURE &4«'
  1874. lore:
  1875. - ''
  1876. - '&fClaim this reward for'
  1877. - '&c&lVIP+++ &franks and higher.'
  1878. - ''
  1879. - '&f&lCONTAIN:'
  1880. - '&5&l* &dx1 Rare Key'
  1881. - '&5&l* &dx1 Treasure (Tier 1)'
  1882. - '&5&l* &dx1 Treasure (Tier 2)'
  1883. - '&5&l* &dx1 Treasure (Tier 3)'
  1884. - '&5&l* &dx5 Common Stars'
  1885. - '&5&l* &dx3 Rare Stars'
  1886. - '&5&l* &d10,000 XP'
  1887. - '&5&l* &d$50,000'
  1888. - ''
  1889. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1890. - '&7Wait for %javascript_cooldown_4_2592000%'
  1891. '222':
  1892. material: STAINED_GLASS
  1893. data: 14
  1894. slot: 14
  1895. priority: 3
  1896. display_name: '&4» &c&lVIP+++ &c&lTREASURE &4«'
  1897. lore:
  1898. - ''
  1899. - '&fReward for only'
  1900. - '&c&lVIP+++ &franks and higher.'
  1901. - ''
  1902. - '&f&lCONTAIN:'
  1903. - '&5&l* &dx1 Rare Key'
  1904. - '&5&l* &dx1 Treasure (Tier 1)'
  1905. - '&5&l* &dx1 Treasure (Tier 2)'
  1906. - '&5&l* &dx1 Treasure (Tier 3)'
  1907. - '&5&l* &dx5 Common Stars'
  1908. - '&5&l* &dx3 Rare Stars'
  1909. - '&5&l* &d10,000 XP'
  1910. - '&5&l* &d$50,000'
  1911. - ''
  1912. - '&c&oYou do not have rank enough!'
  1913. '20':
  1914. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1915. data: 3
  1916. slot: 15
  1917. priority: 1
  1918. view_requirement:
  1919. requirements:
  1920. name:
  1921. type: string equals
  1922. input: '%javascript_cooldown_5_2592000%'
  1923. output: 0s
  1924. name2:
  1925. type: has permission
  1926. permission: reward.vip++++
  1927. display_name: '&6» &e&lVIP++++ &e&lTREASURE &6«'
  1928. lore:
  1929. - ''
  1930. - '&fClaim this reward for'
  1931. - '&e&lVIP++++ &franks and higher.'
  1932. - ''
  1933. - '&f&lCONTAIN:'
  1934. - '&5&l* &dx1 Legendary Key'
  1935. - '&5&l* &dx1 Treasure (Tier 1)'
  1936. - '&5&l* &dx1 Treasure (Tier 2)'
  1937. - '&5&l* &dx1 Treasure (Tier 3)'
  1938. - '&5&l* &dx5 Common Stars'
  1939. - '&5&l* &dx3 Rare Stars'
  1940. - '&5&l* &dx1 Legendary Stars'
  1941. - '&5&l* &d10,000 XP'
  1942. - '&5&l* &d$85,000'
  1943. - ''
  1944. - '&5&l* &fStatus: &a&lAVAILABLE'
  1945. - ''
  1946. - '&5&nClick to claim!'
  1947. left_click_commands:
  1948. - '[console] papi parse %player_name% %javascript_cooldown_5_start%'
  1949. - '[console] vouchers give %player_name% VIP++++t 1'
  1950. - '[refresh]'
  1951. right_click_commands:
  1952. - '[console] papi parse %player_name% %javascript_cooldown_5_start%'
  1953. - '[console] vouchers give %player_name% VIP++++t 1'
  1954. - '[refresh]'
  1955. '21':
  1956. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmExZjM0MDdiNzExZWVmODRmZTVhMWY0MjQyNTE0ZWQ2ZGEwZjI5NzVjOGE1OTA4ZjU3MzViNDYxNmUzMzk2ZSJ9fX0=
  1957. data: 3
  1958. priority: 2
  1959. update: true
  1960. slot: 15
  1961. view_requirement:
  1962. requirements:
  1963. name2:
  1964. type: has permission
  1965. permission: reward.vip++++
  1966. display_name: '&6» &e&lVIP++++ &e&lTREASURE &6«'
  1967. lore:
  1968. - ''
  1969. - '&fClaim this reward for'
  1970. - '&e&lVIP++++ &franks and higher.'
  1971. - ''
  1972. - '&f&lCONTAIN:'
  1973. - '&5&l* &dx1 Legendary Key'
  1974. - '&5&l* &dx1 Treasure (Tier 1)'
  1975. - '&5&l* &dx1 Treasure (Tier 2)'
  1976. - '&5&l* &dx1 Treasure (Tier 3)'
  1977. - '&5&l* &dx5 Common Stars'
  1978. - '&5&l* &dx3 Rare Stars'
  1979. - '&5&l* &dx1 Legendary Stars'
  1980. - '&5&l* &d10,000 XP'
  1981. - '&5&l* &d$85,000'
  1982. - ''
  1983. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1984. - '&7Wait for %javascript_cooldown_5_2592000%'
  1985. '22':
  1986. material: STAINED_GLASS
  1987. data: 14
  1988. slot: 15
  1989. priority: 3
  1990. display_name: '&6» &e&lVIP++++ &e&lTREASURE &6«'
  1991. lore:
  1992. - ''
  1993. - '&fReward for only'
  1994. - '&e&lVIP++++ &franks and higher.'
  1995. - ''
  1996. - '&f&lCONTAIN:'
  1997. - '&5&l* &dx1 Legendary Key'
  1998. - '&5&l* &dx1 Treasure (Tier 1)'
  1999. - '&5&l* &dx1 Treasure (Tier 2)'
  2000. - '&5&l* &dx1 Treasure (Tier 3)'
  2001. - '&5&l* &dx5 Common Stars'
  2002. - '&5&l* &dx3 Rare Stars'
  2003. - '&5&l* &dx1 Legendary Stars'
  2004. - '&5&l* &d10,000 XP'
  2005. - '&5&l* &d$85,000'
  2006. - ''
  2007. - '&c&oYou do not have rank enough!'
  2008. '2222':
  2009. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGNkM2M0NWQ3YjgzODRlOGExOTYzZTRkYTBhZTZiMmRhZWIyYTNlOTdhYzdhMjhmOWViM2QzOTU5NzI1Nzk5ZiJ9fX0=
  2010. data: 3
  2011. slot: 31
  2012. priority: 1
  2013. view_requirement:
  2014. requirements:
  2015. name:
  2016. type: string equals
  2017. input: '%javascript_cooldown_6_86400%'
  2018. output: 0s
  2019. display_name: '&6» &e&lDAILY REWARD &6«'
  2020. lore:
  2021. - ''
  2022. - '&fClaim this reward for some'
  2023. - '&fdaily help.'
  2024. - ''
  2025. - '&f&lCONTAIN:'
  2026. - '&5&l* &d$2,000'
  2027. - ''
  2028. - '&5&l* &fStatus: &a&lAVAILABLE'
  2029. - ''
  2030. - '&5&nClick to claim!'
  2031. left_click_commands:
  2032. - '[console] papi parse %player_name% %javascript_cooldown_6_start%'
  2033. - '[console] eco give %player_name% 2000'
  2034. - '[close]'
  2035. - '[refresh]'
  2036. right_click_commands:
  2037. - '[console] papi parse %player_name% %javascript_cooldown_6_start%'
  2038. - '[console] eco give %player_name% 2000'
  2039. - '[close]'
  2040. - '[refresh]'
  2041. '2232':
  2042. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGFkOTQzZDA2MzM0N2Y5NWFiOWU5ZmE3NTc5MmRhODRlYzY2NWViZDIyYjA1MGJkYmE1MTlmZjdkYTYxZGIifX19
  2043. data: 3
  2044. priority: 2
  2045. update: true
  2046. slot: 31
  2047. display_name: '&6» &e&lDAILY REWARD &6«'
  2048. lore:
  2049. - ''
  2050. - '&fClaim this reward for some'
  2051. - '&fdaily help.'
  2052. - ''
  2053. - '&f&lCONTAIN:'
  2054. - '&5&l* &d$2,000'
  2055. - ''
  2056. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2057. - '&7Wait for %javascript_cooldown_6_86400%'
  2058. '200':
  2059. material: 160
  2060. display_name: '&f'
  2061. data: 15
  2062. slots:
  2063. - 0
  2064. - 1
  2065. - 2
  2066. - 3
  2067. - 4
  2068. - 5
  2069. - 6
  2070. - 7
  2071. - 8
  2072. - 9
  2073. - 10
  2074. - 16
  2075. - 17
  2076. - 18
  2077. - 19
  2078. - 20
  2079. - 21
  2080. - 22
  2081. - 23
  2082. - 24
  2083. - 25
  2084. - 26
  2085. - 27
  2086. - 28
  2087. - 29
  2088. - 30
  2089. - 32
  2090. - 33
  2091. - 34
  2092. - 35
  2093. - 36
  2094. - 37
  2095. - 38
  2096. - 39
  2097. - 40
  2098. - 41
  2099. - 42
  2100. - 43
  2101. - 44
  2102. priority: 1
  2103. Dungeons:
  2104. open_command:
  2105. - dungeons
  2106. - dungeon
  2107. - mobarena
  2108. - ma
  2109. update_interval: 1
  2110. menu_title: '&8» Dungeons'
  2111. size: 27
  2112. items:
  2113. '9':
  2114. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTQ0YzFlOGU4MjY3MmJiYTU4OTJmZDQ2NTlmOGRhZDg0ZDE1NDVkYjI2ZGI1MmVjYzkxOGYzMmExMzkxNTEzIn19fQ==
  2115. data: 3
  2116. slot: 13
  2117. priority: 1
  2118. display_name: '&d&lDungeon'
  2119. lore:
  2120. - ''
  2121. - '&5&l* &fJoin a dungeon with 3 others to fight'
  2122. - '&fwaves of mobs using special kits!'
  2123. - ''
  2124. - '&7&oYou can only join after the current'
  2125. - '&7&odungeon has been completed!'
  2126. - '&7&oMake sure you the inventory empty.'
  2127. - ''
  2128. - '&5&nLeft-click to join dungeon!'
  2129. left_click_commands:
  2130. - '[player] ma join 1'
  2131. - '[close]'
  2132. - '[refresh]'
  2133. right_click_commands:
  2134. - '[player] ma join 1'
  2135. - '[close]'
  2136. - '[refresh]'
  2137. '20':
  2138. material: 160
  2139. display_name: '&f'
  2140. data: 15
  2141. slots:
  2142. - 0
  2143. - 1
  2144. - 2
  2145. - 3
  2146. - 4
  2147. - 5
  2148. - 6
  2149. - 7
  2150. - 8
  2151. - 9
  2152. - 10
  2153. - 11
  2154. - 12
  2155. - 14
  2156. - 15
  2157. - 16
  2158. - 17
  2159. - 18
  2160. - 19
  2161. - 20
  2162. - 21
  2163. - 22
  2164. - 23
  2165. - 24
  2166. - 25
  2167. - 26
  2168. - 27
  2169. priority: 1
  2170. enchants:
  2171. open_command:
  2172. - aadsdaasdgrwew
  2173. update_interval: 1
  2174. menu_title: '&8» Enchanter'
  2175. size: 27
  2176. items:
  2177. '9':
  2178. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWMwMzBjYzM1ZmRlMDIxOGRlZDViYTVkNTU3Y2NhOWUwM2RjYmM4NGY5ZTY3MjkxMWRhNTRmZTA3YzVmZGJiYiJ9fX0=
  2179. data: 3
  2180. slot: 12
  2181. view_requirement:
  2182. requirements:
  2183. money:
  2184. type: '>='
  2185. input: '%player_level%'
  2186. output: 20
  2187. priority: 1
  2188. display_name: '&a&lCOMMON STAR'
  2189. lore:
  2190. - ''
  2191. - '&fExamine to receive a random'
  2192. - '&aCommon &fenchantment star.'
  2193. - ''
  2194. - '&e✦&7✦&7✦'
  2195. - ''
  2196. - '&d&lINFORMATION:'
  2197. - '&5&l* &fPrice: &e20 levels'
  2198. - ''
  2199. - '&5&nClick to buy!'
  2200. left_click_commands:
  2201. - '[console] ce lostbook Common 1 %player_name%'
  2202. - '[console] minecraft:xp -20L %player_name%'
  2203. - '[refresh]'
  2204. right_click_commands:
  2205. - '[console] ce lostbook Common 1 %player_name%'
  2206. - '[console] minecraft:xp -20L %player_name%'
  2207. - '[refresh]'
  2208. '90':
  2209. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWMwMzBjYzM1ZmRlMDIxOGRlZDViYTVkNTU3Y2NhOWUwM2RjYmM4NGY5ZTY3MjkxMWRhNTRmZTA3YzVmZGJiYiJ9fX0=
  2210. data: 3
  2211. slot: 12
  2212. priority: 2
  2213. display_name: '&a&lCOMMON STAR'
  2214. lore:
  2215. - ''
  2216. - '&fExamine to receive a random'
  2217. - '&aCommon &fenchantment star.'
  2218. - ''
  2219. - '&e✦&7✦&7✦'
  2220. - ''
  2221. - '&d&lINFORMATION:'
  2222. - '&5&l* &fPrice: &e20 levels'
  2223. - '&7&o(You have %player_level%)'
  2224. '99':
  2225. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGJlMmJhZjQwZmQ4NWViNTczZmU1YjJlNWI2Yzg4MTdjZjUwZjg4M2Q5NTc2OTQxNTgwN2FiMDcyODhhNDdjZCJ9fX0=
  2226. data: 3
  2227. slot: 13
  2228. view_requirement:
  2229. requirements:
  2230. money:
  2231. type: '>='
  2232. input: '%player_level%'
  2233. output: 40
  2234. priority: 1
  2235. display_name: '&b&lRARE STAR'
  2236. lore:
  2237. - ''
  2238. - '&fExamine to receive a random'
  2239. - '&bRare &fenchantment star.'
  2240. - ''
  2241. - '&7✦&e✦&7✦'
  2242. - ''
  2243. - '&d&lINFORMATION:'
  2244. - '&5&l* &fPrice: &e40 levels'
  2245. - ''
  2246. - '&5&nClick to buy!'
  2247. left_click_commands:
  2248. - '[console] ce lostbook Rare 1 %player_name%'
  2249. - '[console] minecraft:xp -40L %player_name%'
  2250. - '[refresh]'
  2251. right_click_commands:
  2252. - '[console] ce lostbook Rare 1 %player_name%'
  2253. - '[console] minecraft:xp -40L %player_name%'
  2254. - '[refresh]'
  2255. '91':
  2256. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGJlMmJhZjQwZmQ4NWViNTczZmU1YjJlNWI2Yzg4MTdjZjUwZjg4M2Q5NTc2OTQxNTgwN2FiMDcyODhhNDdjZCJ9fX0=
  2257. data: 3
  2258. slot: 13
  2259. priority: 2
  2260. display_name: '&b&lRARE STAR'
  2261. lore:
  2262. - ''
  2263. - '&fExamine to receive a random'
  2264. - '&bRare &fenchantment star.'
  2265. - ''
  2266. - '&7✦&e✦&7✦'
  2267. - ''
  2268. - '&d&lINFORMATION:'
  2269. - '&5&l* &fPrice: &e40 levels'
  2270. - '&7&o(You have %player_level%)'
  2271. '999':
  2272. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY1MDViMWJlZmJhMjQyMTcwYTQ2ZTg5NDdiNTJhZWE1NGE1OTA2MGYzZTFjMzZmMjFjZWJiNDQ2OTBmOGIwYyJ9fX0=
  2273. data: 3
  2274. slot: 14
  2275. view_requirement:
  2276. requirements:
  2277. money:
  2278. type: '>='
  2279. input: '%player_level%'
  2280. output: 60
  2281. priority: 1
  2282. display_name: '&6&lLEGENDARY STAR'
  2283. lore:
  2284. - ''
  2285. - '&fExamine to receive a random'
  2286. - '&6Legendary &fenchantment star.'
  2287. - ''
  2288. - '&7✦✦&e✦'
  2289. - ''
  2290. - '&d&lINFORMATION:'
  2291. - '&5&l* &fPrice: &e60 levels'
  2292. - ''
  2293. - '&5&nClick to buy!'
  2294. left_click_commands:
  2295. - '[console] ce lostbook Legendary 1 %player_name%'
  2296. - '[console] minecraft:xp -60L %player_name%'
  2297. - '[refresh]'
  2298. right_click_commands:
  2299. - '[console] ce lostbook Legendary 1 %player_name%'
  2300. - '[console] minecraft:xp -60L %player_name%'
  2301. - '[refresh]'
  2302. '92':
  2303. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY1MDViMWJlZmJhMjQyMTcwYTQ2ZTg5NDdiNTJhZWE1NGE1OTA2MGYzZTFjMzZmMjFjZWJiNDQ2OTBmOGIwYyJ9fX0=
  2304. data: 3
  2305. slot: 14
  2306. priority: 2
  2307. display_name: '&6&lLEGENDARY STAR'
  2308. lore:
  2309. - ''
  2310. - '&fExamine to receive a random'
  2311. - '&6Legendary &fenchantment star.'
  2312. - ''
  2313. - '&7✦&7✦&e✦'
  2314. - ''
  2315. - '&d&lINFORMATION:'
  2316. - '&5&l* &fPrice: &e60 levels'
  2317. - '&7&o(You have %player_level%)'
  2318. '20':
  2319. material: 160
  2320. display_name: '&f'
  2321. data: 15
  2322. slots:
  2323. - 0
  2324. - 1
  2325. - 2
  2326. - 3
  2327. - 4
  2328. - 5
  2329. - 6
  2330. - 7
  2331. - 8
  2332. - 9
  2333. - 10
  2334. - 11
  2335. - 15
  2336. - 16
  2337. - 17
  2338. - 18
  2339. - 19
  2340. - 20
  2341. - 21
  2342. - 22
  2343. - 23
  2344. - 24
  2345. - 25
  2346. - 26
  2347. priority: 1
  2348. Kits:
  2349. open_command:
  2350. - kits
  2351. - kit
  2352. - essentials:kits
  2353. - essentials:kit
  2354. update_interval: 1
  2355. menu_title: '&8» Kits'
  2356. size: 27
  2357. items:
  2358. '9':
  2359. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTU0OTQ3ZGU3ZjUyNTk4MjU1ZDZhZmVlOWQ3N2JlZmFkOWI0ZjI0YzBjNDY2M2QyOGJjZGY4YTY0NTdmMzQifX19
  2360. data: 3
  2361. slot: 11
  2362. priority: 1
  2363. display_name: '&d&lMember Kits'
  2364. lore:
  2365. - ''
  2366. - '&5&l* &fThese are &e&lFREE &fkit available'
  2367. - '&ffor everybody!'
  2368. - ''
  2369. - '&5&nClick to view kits!'
  2370. left_click_commands:
  2371. - '[openguimenu] mkits'
  2372. - '[refresh]'
  2373. right_click_commands:
  2374. - '[openguimenu] mkits'
  2375. - '[refresh]'
  2376. '99':
  2377. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWFkNTQyNGQ5OTAzOTUzODQzNTI2YTdjNDE2ODY2ZTdkNzk1MDFjODhjZTdjZGFiZWVlNTI4NGVhMzlmIn19fQ==
  2378. data: 3
  2379. slot: 13
  2380. priority: 1
  2381. display_name: '&d&lDonation Rank Kits'
  2382. lore:
  2383. - ''
  2384. - '&5&l* &fThese are &e&lDONATOR &fkits available'
  2385. - '&ffor donation ranked users!'
  2386. - ''
  2387. - '&5&nClick to view kits!'
  2388. left_click_commands:
  2389. - '[openguimenu] rkits'
  2390. - '[refresh]'
  2391. right_click_commands:
  2392. - '[openguimenu] rkits'
  2393. - '[refresh]'
  2394. '92':
  2395. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmI1ZDhiOWEzYTk0MjFkY2VkYjE3ZDcxZTNhODg0ZDk1ZWM1MDM4YzgzOGNlMTllZDZkOGU5NmM1YjIzZWQ3In19fQ==
  2396. data: 3
  2397. slot: 15
  2398. priority: 1
  2399. display_name: '&d&lStore Kits'
  2400. lore:
  2401. - ''
  2402. - '&5&l* &fThese are &e&lDONATOR &fkits available'
  2403. - '&ffor purchase on the webstore!'
  2404. - ''
  2405. - '&5&nClick to view kits!'
  2406. left_click_commands:
  2407. - '[openguimenu] skits'
  2408. - '[refresh]'
  2409. right_click_commands:
  2410. - '[openguimenu] skits'
  2411. - '[refresh]'
  2412. '20':
  2413. material: 160
  2414. display_name: '&f'
  2415. data: 15
  2416. slots:
  2417. - 0
  2418. - 1
  2419. - 2
  2420. - 3
  2421. - 4
  2422. - 5
  2423. - 6
  2424. - 7
  2425. - 8
  2426. - 9
  2427. - 10
  2428. - 12
  2429. - 14
  2430. - 16
  2431. - 17
  2432. - 18
  2433. - 19
  2434. - 20
  2435. - 21
  2436. - 22
  2437. - 23
  2438. - 24
  2439. - 25
  2440. - 26
  2441. priority: 1
  2442. mkits:
  2443. open_command:
  2444. - dfsagewdeewf
  2445. update_interval: 1
  2446. menu_title: '&8» Member Kits'
  2447. size: 27
  2448. items:
  2449. '9':
  2450. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  2451. data: 3
  2452. slot: 10
  2453. priority: 1
  2454. display_name: '&d&lBack'
  2455. lore:
  2456. - ''
  2457. - '&5&nClick to go back!'
  2458. left_click_commands:
  2459. - '[openguimenu] Kits'
  2460. - '[refresh]'
  2461. right_click_commands:
  2462. - '[openguimenu] Kits'
  2463. - '[refresh]'
  2464. '99':
  2465. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  2466. data: 3
  2467. slot: 12
  2468. priority: 1
  2469. view_requirement:
  2470. requirements:
  2471. name:
  2472. type: string equals
  2473. input: '%javascript_cooldown_7_604800%'
  2474. output: 0s
  2475. display_name: '&d&lMember Kit'
  2476. lore:
  2477. - ''
  2478. - '&f&lCONTAIN:'
  2479. - '&5&l* &dArmor;'
  2480. - ' &8» &7Unbreaking I'
  2481. - ''
  2482. - '&5&l* &dWeapon;'
  2483. - ' &8» &7Unbreaking I'
  2484. - ''
  2485. - '&5&l* &dTools;'
  2486. - ' &8» &7Unbreaking I'
  2487. - ''
  2488. - '&5&l* &fStatus: &a&lAVAILABLE'
  2489. - '&c&oMake sure your inventory'
  2490. - '&c&ohave available slots...'
  2491. - ''
  2492. - '&5&nLeft-click to claim!'
  2493. left_click_commands:
  2494. - '[console] papi parse %player_name% %javascript_cooldown_7_start%'
  2495. - '[console] kits Tools %player_name%'
  2496. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2497. - '[close]'
  2498. - '[refresh]'
  2499. right_click_commands:
  2500. - '[console] papi parse %player_name% %javascript_cooldown_7_start%'
  2501. - '[console] kits Tools %player_name%'
  2502. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2503. - '[close]'
  2504. - '[refresh]'
  2505. '9923':
  2506. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  2507. data: 3
  2508. slot: 12
  2509. priority: 2
  2510. display_name: '&d&lMember Kit'
  2511. lore:
  2512. - ''
  2513. - '&f&lCONTAIN:'
  2514. - '&5&l* &dArmor;'
  2515. - ' &8» &7Unbreaking I'
  2516. - ''
  2517. - '&5&l* &dWeapon;'
  2518. - ' &8» &7Unbreaking I'
  2519. - ''
  2520. - '&5&l* &dTools;'
  2521. - ' &8» &7Unbreaking I'
  2522. - ''
  2523. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2524. - '&7&oWait for %javascript_cooldown_7_604800%'
  2525. '934':
  2526. material: SAPLING
  2527. slot: 13
  2528. priority: 1
  2529. view_requirement:
  2530. requirements:
  2531. name:
  2532. type: string equals
  2533. input: '%javascript_cooldown_8_3600%'
  2534. output: 0s
  2535. display_name: '&d&lSapling Kit'
  2536. lore:
  2537. - ''
  2538. - '&f&lCONTAIN:'
  2539. - '&5&l* &dItems;'
  2540. - ' &8» &7x1 Oak Sapling'
  2541. - ''
  2542. - '&5&l* &fStatus: &a&lAVAILABLE'
  2543. - ''
  2544. - '&5&nClick to claim!'
  2545. left_click_commands:
  2546. - '[console] papi parse %player_name% %javascript_cooldown_8_start%'
  2547. - '[console] kits Sapling %player_name%'
  2548. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2549. - '[close]'
  2550. - '[refresh]'
  2551. right_click_commands:
  2552. - '[console] papi parse %player_name% %javascript_cooldown_8_start%'
  2553. - '[console] kits Sapling %player_name%'
  2554. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2555. - '[close]'
  2556. - '[refresh]'
  2557. '12312':
  2558. material: SAPLING
  2559. slot: 13
  2560. priority: 2
  2561. display_name: '&d&lSapling Kit'
  2562. lore:
  2563. - ''
  2564. - '&f&lCONTAIN:'
  2565. - '&5&l* &dItems;'
  2566. - ' &8» &7x1 Oak Sapling'
  2567. - ''
  2568. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2569. - '&7&oWait for %javascript_cooldown_8_3600%'
  2570. '20':
  2571. material: 160
  2572. display_name: '&f'
  2573. data: 15
  2574. slots:
  2575. - 0
  2576. - 1
  2577. - 2
  2578. - 3
  2579. - 4
  2580. - 5
  2581. - 6
  2582. - 7
  2583. - 8
  2584. - 9
  2585. - 11
  2586. - 17
  2587. - 18
  2588. - 19
  2589. - 20
  2590. - 21
  2591. - 22
  2592. - 23
  2593. - 24
  2594. - 25
  2595. - 26
  2596. priority: 1
  2597. rkits:
  2598. open_command:
  2599. - dfsagewdeewfsdaf
  2600. update_interval: 1
  2601. menu_title: '&8» Donation Rank Kits'
  2602. size: 27
  2603. items:
  2604. '9':
  2605. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  2606. data: 3
  2607. slot: 10
  2608. priority: 1
  2609. display_name: '&d&lBack'
  2610. lore:
  2611. - ''
  2612. - '&5&nClick to go back!'
  2613. left_click_commands:
  2614. - '[openguimenu] Kits'
  2615. - '[refresh]'
  2616. right_click_commands:
  2617. - '[openguimenu] Kits'
  2618. - '[refresh]'
  2619. '99':
  2620. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  2621. data: 3
  2622. slot: 12
  2623. priority: 1
  2624. view_requirement:
  2625. requirements:
  2626. name:
  2627. type: string equals
  2628. input: '%javascript_cooldown_9_432000%'
  2629. output: 0s
  2630. name2:
  2631. type: has permission
  2632. permission: kit.VIP
  2633. display_name: '&a&lVIP Kit'
  2634. lore:
  2635. - ''
  2636. - '&f&lCONTAIN:'
  2637. - '&5&l* &dArmor;'
  2638. - ' &8» &7Protection I'
  2639. - ''
  2640. - '&5&l* &dWeapon;'
  2641. - ' &8» &7Sharpness II'
  2642. - ' &8» &7Unbreaking I'
  2643. - ' &8» &7Fire Aspect I'
  2644. - ''
  2645. - '&5&l* &dTools;'
  2646. - ' &8» &7Efficiency II'
  2647. - ' &8» &7Unbreaking II'
  2648. - ''
  2649. - '&5&l* &dItems;'
  2650. - ' &8» &7x1 Common Star'
  2651. - ' &8» &7x32 Grass'
  2652. - ' &8» &7x32 Cobblestone'
  2653. - ' &8» &7x1 Sell-wand (10 uses)'
  2654. - ''
  2655. - '&5&l* &fStatus: &a&lAVAILABLE'
  2656. - '&c&oMake sure your inventory'
  2657. - '&c&ohave available slots...'
  2658. - ''
  2659. - '&5&nLeft-click to claim!'
  2660. left_click_commands:
  2661. - '[console] papi parse %player_name% %javascript_cooldown_9_start%'
  2662. - '[console] kits VIP %player_name%'
  2663. - '[console] sellwands give %player_name% 20'
  2664. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2665. - '[close]'
  2666. - '[refresh]'
  2667. right_click_commands:
  2668. - '[console] papi parse %player_name% %javascript_cooldown_9_start%'
  2669. - '[console] kits VIP %player_name%'
  2670. - '[console] sellwands give %player_name% 20'
  2671. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2672. - '[close]'
  2673. - '[refresh]'
  2674. '9923':
  2675. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  2676. data: 3
  2677. slot: 12
  2678. view_requirement:
  2679. requirements:
  2680. name2:
  2681. type: has permission
  2682. permission: kit.VIP
  2683. priority: 2
  2684. display_name: '&a&lVIP Kit'
  2685. lore:
  2686. - ''
  2687. - '&f&lCONTAIN:'
  2688. - '&5&l* &dArmor;'
  2689. - ' &8» &7Protection I'
  2690. - ''
  2691. - '&5&l* &dWeapon;'
  2692. - ' &8» &7Sharpness II'
  2693. - ' &8» &7Unbreaking I'
  2694. - ' &8» &7Fire Aspect I'
  2695. - ''
  2696. - '&5&l* &dTools;'
  2697. - ' &8» &7Efficiency II'
  2698. - ' &8» &7Unbreaking II'
  2699. - ''
  2700. - '&5&l* &dItems;'
  2701. - ' &8» &7x1 Common Star'
  2702. - ' &8» &7x32 Grass'
  2703. - ' &8» &7x32 Cobblestone'
  2704. - ' &8» &7x1 Sell-wand (10 uses)'
  2705. - ''
  2706. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2707. - '&7&oWait for %javascript_cooldown_9_432000%'
  2708. '92923':
  2709. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  2710. data: 3
  2711. slot: 12
  2712. priority: 3
  2713. display_name: '&a&lVIP Kit'
  2714. lore:
  2715. - ''
  2716. - '&f&lCONTAIN:'
  2717. - '&5&l* &dArmor;'
  2718. - ' &8» &7Protection I'
  2719. - ''
  2720. - '&5&l* &dWeapon;'
  2721. - ' &8» &7Sharpness II'
  2722. - ' &8» &7Unbreaking I'
  2723. - ' &8» &7Fire Aspect I'
  2724. - ''
  2725. - '&5&l* &dTools;'
  2726. - ' &8» &7Efficiency II'
  2727. - ' &8» &7Unbreaking II'
  2728. - ''
  2729. - '&5&l* &dItems;'
  2730. - ' &8» &7x1 Common Star'
  2731. - ' &8» &7x32 Grass'
  2732. - ' &8» &7x32 Cobblestone'
  2733. - ' &8» &7x1 Sell-wand (10 uses)'
  2734. - ''
  2735. - '&c&oYou do not have rank enough!'
  2736. '991':
  2737. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc1NGVlZDhkMDVhMTk2YzNmYzJkMjUxMTQxN2ViNTYyNjI2MjE0MTRjZTNiM2RmYjM1NzFhZWE0ZGRkYzQ3MCJ9fX0=
  2738. data: 3
  2739. slot: 13
  2740. priority: 1
  2741. view_requirement:
  2742. requirements:
  2743. name:
  2744. type: string equals
  2745. input: '%javascript_cooldown_10_432000%'
  2746. output: 0s
  2747. name2:
  2748. type: has permission
  2749. permission: kit.VIP+
  2750. display_name: '&b&lVIP+ Kit'
  2751. lore:
  2752. - ''
  2753. - '&f&lCONTAIN:'
  2754. - '&5&l* &dArmor;'
  2755. - ' &8» &7Protection II'
  2756. - ' &8» &7Unbreaking I'
  2757. - ''
  2758. - '&5&l* &dWeapon;'
  2759. - ' &8» &7Sharpness III'
  2760. - ' &8» &7Unbreaking II'
  2761. - ' &8» &7Fire Aspect II'
  2762. - ' &8» &7Looting I'
  2763. - ''
  2764. - '&5&l* &dTools;'
  2765. - ' &8» &7Efficiency III'
  2766. - ' &8» &7Unbreaking II'
  2767. - ''
  2768. - '&5&l* &dItems;'
  2769. - ' &8» &7x1 Rare Star'
  2770. - ' &8» &7x64 Grass'
  2771. - ' &8» &7x64 Cobblestone'
  2772. - ' &8» &7x1 Sell-wand (20 uses)'
  2773. - ''
  2774. - '&5&l* &fStatus: &a&lAVAILABLE'
  2775. - '&c&oMake sure your inventory'
  2776. - '&c&ohave available slots...'
  2777. - ''
  2778. - '&5&nLeft-click to claim!'
  2779. left_click_commands:
  2780. - '[console] papi parse %player_name% %javascript_cooldown_10_start%'
  2781. - '[console] kits VIP+ %player_name%'
  2782. - '[console] sellwands give %player_name% 20'
  2783. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2784. - '[close]'
  2785. - '[refresh]'
  2786. right_click_commands:
  2787. - '[console] papi parse %player_name% %javascript_cooldown_10_start%'
  2788. - '[console] kits VIP+ %player_name%'
  2789. - '[console] sellwands give %player_name% 20'
  2790. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2791. - '[close]'
  2792. - '[refresh]'
  2793. '99231':
  2794. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc1NGVlZDhkMDVhMTk2YzNmYzJkMjUxMTQxN2ViNTYyNjI2MjE0MTRjZTNiM2RmYjM1NzFhZWE0ZGRkYzQ3MCJ9fX0=
  2795. data: 3
  2796. slot: 13
  2797. view_requirement:
  2798. requirements:
  2799. name2:
  2800. type: has permission
  2801. permission: kit.VIP+
  2802. priority: 2
  2803. display_name: '&b&lVIP+ Kit'
  2804. lore:
  2805. - ''
  2806. - '&f&lCONTAIN:'
  2807. - '&5&l* &dArmor;'
  2808. - ' &8» &7Protection II'
  2809. - ' &8» &7Unbreaking I'
  2810. - ''
  2811. - '&5&l* &dWeapon;'
  2812. - ' &8» &7Sharpness III'
  2813. - ' &8» &7Unbreaking II'
  2814. - ' &8» &7Fire Aspect II'
  2815. - ' &8» &7Looting I'
  2816. - ''
  2817. - '&5&l* &dTools;'
  2818. - ' &8» &7Efficiency III'
  2819. - ' &8» &7Unbreaking II'
  2820. - ''
  2821. - '&5&l* &dItems;'
  2822. - ' &8» &7x1 Rare Star'
  2823. - ' &8» &7x64 Grass'
  2824. - ' &8» &7x64 Cobblestone'
  2825. - ' &8» &7x1 Sell-wand (20 uses)'
  2826. - ''
  2827. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2828. - '&7&oWait for %javascript_cooldown_10_432000%'
  2829. '929231':
  2830. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc1NGVlZDhkMDVhMTk2YzNmYzJkMjUxMTQxN2ViNTYyNjI2MjE0MTRjZTNiM2RmYjM1NzFhZWE0ZGRkYzQ3MCJ9fX0=
  2831. data: 3
  2832. slot: 13
  2833. priority: 3
  2834. display_name: '&b&lVIP+ Kit'
  2835. lore:
  2836. - ''
  2837. - '&f&lCONTAIN:'
  2838. - '&5&l* &dArmor;'
  2839. - ' &8» &7Protection II'
  2840. - ' &8» &7Unbreaking I'
  2841. - ''
  2842. - '&5&l* &dWeapon;'
  2843. - ' &8» &7Sharpness III'
  2844. - ' &8» &7Unbreaking II'
  2845. - ' &8» &7Fire Aspect II'
  2846. - ' &8» &7Looting I'
  2847. - ''
  2848. - '&5&l* &dTools;'
  2849. - ' &8» &7Efficiency III'
  2850. - ' &8» &7Unbreaking II'
  2851. - ''
  2852. - '&5&l* &dItems;'
  2853. - ' &8» &7x1 Rare Star'
  2854. - ' &8» &7x64 Grass'
  2855. - ' &8» &7x64 Cobblestone'
  2856. - ' &8» &7x1 Sell-wand (20 uses)'
  2857. - ''
  2858. - '&c&oYou do not have rank enough!'
  2859. '994':
  2860. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q0MDQyNzBjNmViZWI4ZmM5NGEzOTQ2YWY1MzM0ZTRhNWI2NTdhOWJmMjVlNzMzNWU3NGFiMTg1In19fQ==
  2861. data: 3
  2862. slot: 14
  2863. priority: 1
  2864. view_requirement:
  2865. requirements:
  2866. name:
  2867. type: string equals
  2868. input: '%javascript_cooldown_11_432000%'
  2869. output: 0s
  2870. name2:
  2871. type: has permission
  2872. permission: kit.VIP++
  2873. display_name: '&d&lVIP++ Kit'
  2874. lore:
  2875. - ''
  2876. - '&f&lCONTAIN:'
  2877. - '&5&l* &dArmor;'
  2878. - ' &8» &7Protection III'
  2879. - ' &8» &7Unbreaking III'
  2880. - ''
  2881. - '&5&l* &dWeapon;'
  2882. - ' &8» &7Sharpness IV'
  2883. - ' &8» &7Unbreaking III'
  2884. - ' &8» &7Fire Aspect II'
  2885. - ' &8» &7Looting II'
  2886. - ''
  2887. - '&5&l* &dTools;'
  2888. - ' &8» &7Efficiency IV'
  2889. - ' &8» &7Unbreaking II'
  2890. - ''
  2891. - '&5&l* &dItems;'
  2892. - ' &8» &7x2 Rare Star'
  2893. - ' &8» &7x96 Grass'
  2894. - ' &8» &7x96 Cobblestone'
  2895. - ' &8» &7x8 Diamond Block'
  2896. - ' &8» &7x8 Emerald Block'
  2897. - ' &8» &7x1 Sell-wand (30 uses)'
  2898. - ''
  2899. - '&5&l* &fStatus: &a&lAVAILABLE'
  2900. - '&c&oMake sure your inventory'
  2901. - '&c&ohave available slots...'
  2902. - ''
  2903. - '&5&nLeft-click to claim!'
  2904. left_click_commands:
  2905. - '[console] papi parse %player_name% %javascript_cooldown_11_start%'
  2906. - '[console] kits VIP++ %player_name%'
  2907. - '[console] sellwands give %player_name% 30'
  2908. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2909. - '[close]'
  2910. - '[refresh]'
  2911. right_click_commands:
  2912. - '[console] papi parse %player_name% %javascript_cooldown_11_start%'
  2913. - '[console] kits VIP++ %player_name%'
  2914. - '[console] sellwands give %player_name% 30'
  2915. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2916. - '[close]'
  2917. - '[refresh]'
  2918. '99234':
  2919. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q0MDQyNzBjNmViZWI4ZmM5NGEzOTQ2YWY1MzM0ZTRhNWI2NTdhOWJmMjVlNzMzNWU3NGFiMTg1In19fQ==
  2920. data: 3
  2921. slot: 14
  2922. view_requirement:
  2923. requirements:
  2924. name2:
  2925. type: has permission
  2926. permission: kit.VIP++
  2927. priority: 2
  2928. display_name: '&d&lVIP++ Kit'
  2929. lore:
  2930. - ''
  2931. - '&f&lCONTAIN:'
  2932. - '&5&l* &dArmor;'
  2933. - ' &8» &7Protection III'
  2934. - ' &8» &7Unbreaking III'
  2935. - ''
  2936. - '&5&l* &dWeapon;'
  2937. - ' &8» &7Sharpness IV'
  2938. - ' &8» &7Unbreaking III'
  2939. - ' &8» &7Fire Aspect II'
  2940. - ' &8» &7Looting II'
  2941. - ''
  2942. - '&5&l* &dTools;'
  2943. - ' &8» &7Efficiency IV'
  2944. - ' &8» &7Unbreaking II'
  2945. - ''
  2946. - '&5&l* &dItems;'
  2947. - ' &8» &7x2 Rare Star'
  2948. - ' &8» &7x96 Grass'
  2949. - ' &8» &7x96 Cobblestone'
  2950. - ' &8» &7x8 Diamond Block'
  2951. - ' &8» &7x8 Emerald Block'
  2952. - ' &8» &7x1 Sell-wand (30 uses)'
  2953. - ''
  2954. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2955. - '&7&oWait for %javascript_cooldown_11_432000%'
  2956. '929234':
  2957. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q0MDQyNzBjNmViZWI4ZmM5NGEzOTQ2YWY1MzM0ZTRhNWI2NTdhOWJmMjVlNzMzNWU3NGFiMTg1In19fQ==
  2958. data: 3
  2959. slot: 14
  2960. priority: 3
  2961. display_name: '&d&lVIP++ Kit'
  2962. lore:
  2963. - ''
  2964. - '&f&lCONTAIN:'
  2965. - '&5&l* &dArmor;'
  2966. - ' &8» &7Protection III'
  2967. - ' &8» &7Unbreaking III'
  2968. - ''
  2969. - '&5&l* &dWeapon;'
  2970. - ' &8» &7Sharpness IV'
  2971. - ' &8» &7Unbreaking III'
  2972. - ' &8» &7Fire Aspect II'
  2973. - ' &8» &7Looting II'
  2974. - ''
  2975. - '&5&l* &dTools;'
  2976. - ' &8» &7Efficiency IV'
  2977. - ' &8» &7Unbreaking II'
  2978. - ''
  2979. - '&5&l* &dItems;'
  2980. - ' &8» &7x2 Rare Star'
  2981. - ' &8» &7x96 Grass'
  2982. - ' &8» &7x96 Cobblestone'
  2983. - ' &8» &7x8 Diamond Block'
  2984. - ' &8» &7x8 Emerald Block'
  2985. - ' &8» &7x1 Sell-wand (30 uses)'
  2986. - ''
  2987. - '&c&oYou do not have rank enough!'
  2988. '2994':
  2989. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGRhOGE4YzkzODRlMjMyM2UxMzdmYjE0ZWVkOWE3MTczOTgxZmM3NjU5MGM4YmY4OWJlOGI1YmZjNDdkOTJmIn19fQ==
  2990. data: 3
  2991. slot: 15
  2992. priority: 1
  2993. view_requirement:
  2994. requirements:
  2995. name:
  2996. type: string equals
  2997. input: '%javascript_cooldown_12_432000%'
  2998. output: 0s
  2999. name2:
  3000. type: has permission
  3001. permission: kit.VIP+++
  3002. display_name: '&c&lVIP+++ Kit'
  3003. lore:
  3004. - ''
  3005. - '&f&lCONTAIN:'
  3006. - '&5&l* &dArmor;'
  3007. - ' &8» &7Protection IV'
  3008. - ' &8» &7Unbreaking IV'
  3009. - ''
  3010. - '&5&l* &dWeapon;'
  3011. - ' &8» &7Sharpness V'
  3012. - ' &8» &7Unbreaking III'
  3013. - ' &8» &7Fire Aspect II'
  3014. - ' &8» &7Looting III'
  3015. - ' &8» &7Knockback I'
  3016. - ''
  3017. - '&5&l* &dTools;'
  3018. - ' &8» &7Efficiency V'
  3019. - ' &8» &7Unbreaking IV'
  3020. - ' &8» &7Fortune I'
  3021. - ''
  3022. - '&5&l* &dItems;'
  3023. - ' &8» &7x1 Legendary Star'
  3024. - ' &8» &7x128 Grass'
  3025. - ' &8» &7x128 Cobblestone'
  3026. - ' &8» &7x16 Diamond Block'
  3027. - ' &8» &7x16 Emerald Block'
  3028. - ' &8» &7x1 Sell-wand (40 uses)'
  3029. - ''
  3030. - '&5&l* &fStatus: &a&lAVAILABLE'
  3031. - '&c&oMake sure your inventory'
  3032. - '&c&ohave available slots...'
  3033. - ''
  3034. - '&5&nLeft-click to claim!'
  3035. left_click_commands:
  3036. - '[console] papi parse %player_name% %javascript_cooldown_12_start%'
  3037. - '[console] kits VIP+++ %player_name%'
  3038. - '[console] sellwands give %player_name% 40'
  3039. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  3040. - '[close]'
  3041. - '[refresh]'
  3042. right_click_commands:
  3043. - '[console] papi parse %player_name% %javascript_cooldown_12_start%'
  3044. - '[console] kits VIP+++ %player_name%'
  3045. - '[console] sellwands give %player_name% 40'
  3046. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  3047. - '[close]'
  3048. - '[refresh]'
  3049. '299234':
  3050. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGRhOGE4YzkzODRlMjMyM2UxMzdmYjE0ZWVkOWE3MTczOTgxZmM3NjU5MGM4YmY4OWJlOGI1YmZjNDdkOTJmIn19fQ==
  3051. data: 3
  3052. slot: 15
  3053. view_requirement:
  3054. requirements:
  3055. name2:
  3056. type: has permission
  3057. permission: kit.VIP+++
  3058. priority: 2
  3059. display_name: '&c&lVIP+++ Kit'
  3060. lore:
  3061. - ''
  3062. - '&f&lCONTAIN:'
  3063. - '&5&l* &dArmor;'
  3064. - ' &8» &7Protection IV'
  3065. - ' &8» &7Unbreaking IV'
  3066. - ''
  3067. - '&5&l* &dWeapon;'
  3068. - ' &8» &7Sharpness V'
  3069. - ' &8» &7Unbreaking III'
  3070. - ' &8» &7Fire Aspect II'
  3071. - ' &8» &7Looting III'
  3072. - ' &8» &7Knockback I'
  3073. - ''
  3074. - '&5&l* &dTools;'
  3075. - ' &8» &7Efficiency V'
  3076. - ' &8» &7Unbreaking IV'
  3077. - ' &8» &7Fortune I'
  3078. - ''
  3079. - '&5&l* &dItems;'
  3080. - ' &8» &7x1 Legendary Star'
  3081. - ' &8» &7x128 Grass'
  3082. - ' &8» &7x128 Cobblestone'
  3083. - ' &8» &7x16 Diamond Block'
  3084. - ' &8» &7x16 Emerald Block'
  3085. - ' &8» &7x1 Sell-wand (40 uses)'
  3086. - ''
  3087. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  3088. - '&7&oWait for %javascript_cooldown_12_432000%'
  3089. '2929234':
  3090. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGRhOGE4YzkzODRlMjMyM2UxMzdmYjE0ZWVkOWE3MTczOTgxZmM3NjU5MGM4YmY4OWJlOGI1YmZjNDdkOTJmIn19fQ==
  3091. data: 3
  3092. slot: 15
  3093. priority: 3
  3094. display_name: '&c&lVIP+++ Kit'
  3095. lore:
  3096. - ''
  3097. - '&f&lCONTAIN:'
  3098. - '&5&l* &dArmor;'
  3099. - ' &8» &7Protection IV'
  3100. - ' &8» &7Unbreaking IV'
  3101. - ''
  3102. - '&5&l* &dWeapon;'
  3103. - ' &8» &7Sharpness V'
  3104. - ' &8» &7Unbreaking III'
  3105. - ' &8» &7Fire Aspect II'
  3106. - ' &8» &7Looting III'
  3107. - ' &8» &7Knockback I'
  3108. - ''
  3109. - '&5&l* &dTools;'
  3110. - ' &8» &7Efficiency V'
  3111. - ' &8» &7Unbreaking IV'
  3112. - ' &8» &7Fortune I'
  3113. - ''
  3114. - '&5&l* &dItems;'
  3115. - ' &8» &7x1 Legendary Star'
  3116. - ' &8» &7x128 Grass'
  3117. - ' &8» &7x128 Cobblestone'
  3118. - ' &8» &7x16 Diamond Block'
  3119. - ' &8» &7x16 Emerald Block'
  3120. - ' &8» &7x1 Sell-wand (40 uses)'
  3121. - ''
  3122. - '&c&oYou do not have rank enough!'
  3123. '23994':
  3124. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  3125. data: 3
  3126. slot: 16
  3127. priority: 1
  3128. view_requirement:
  3129. requirements:
  3130. name:
  3131. type: string equals
  3132. input: '%javascript_cooldown_13_432000%'
  3133. output: 0s
  3134. name2:
  3135. type: has permission
  3136. permission: kit.VIP++++
  3137. display_name: '&d&lVIP++++ Kit'
  3138. lore:
  3139. - ''
  3140. - '&f&lCONTAIN:'
  3141. - '&5&l* &dArmor;'
  3142. - ' &8» &7Protection V'
  3143. - ' &8» &7Unbreaking IV'
  3144. - ''
  3145. - '&5&l* &dWeapon;'
  3146. - ' &8» &7Sharpness V'
  3147. - ' &8» &7Unbreaking III'
  3148. - ' &8» &7Fire Aspect II'
  3149. - ' &8» &7Looting III'
  3150. - ' &8» &7Knockback II'
  3151. - ''
  3152. - '&5&l* &dTools;'
  3153. - ' &8» &7Efficiency VI'
  3154. - ' &8» &7Unbreaking IV'
  3155. - ' &8» &7Fortune II'
  3156. - ''
  3157. - '&5&l* &dItems;'
  3158. - ' &8» &7x2 Legendary Star'
  3159. - ' &8» &7x190 Grass'
  3160. - ' &8» &7x190 Cobblestone'
  3161. - ' &8» &7x32 Diamond Block'
  3162. - ' &8» &7x32 Emerald Block'
  3163. - ' &8» &7x1 Sell-wand (50 uses)'
  3164. - ''
  3165. - '&5&l* &fStatus: &a&lAVAILABLE'
  3166. - '&c&oMake sure your inventory'
  3167. - '&c&ohave available slots...'
  3168. - ''
  3169. - '&5&nLeft-click to claim!'
  3170. left_click_commands:
  3171. - '[console] papi parse %player_name% %javascript_cooldown_13_start%'
  3172. - '[console] kits VIP++++ %player_name%'
  3173. - '[console] sellwands give %player_name% 50'
  3174. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  3175. - '[close]'
  3176. - '[refresh]'
  3177. right_click_commands:
  3178. - '[console] papi parse %player_name% %javascript_cooldown_13_start%'
  3179. - '[console] kits VIP++++ %player_name%'
  3180. - '[console] sellwands give %player_name% 50'
  3181. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  3182. - '[close]'
  3183. - '[refresh]'
  3184. '2399234':
  3185. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  3186. data: 3
  3187. slot: 16
  3188. view_requirement:
  3189. requirements:
  3190. name2:
  3191. type: has permission
  3192. permission: kit.VIP++++
  3193. priority: 2
  3194. display_name: '&d&lVIP++++ Kit'
  3195. lore:
  3196. - ''
  3197. - '&f&lCONTAIN:'
  3198. - '&5&l* &dArmor;'
  3199. - ' &8» &7Protection V'
  3200. - ' &8» &7Unbreaking IV'
  3201. - ''
  3202. - '&5&l* &dWeapon;'
  3203. - ' &8» &7Sharpness V'
  3204. - ' &8» &7Unbreaking III'
  3205. - ' &8» &7Fire Aspect II'
  3206. - ' &8» &7Looting III'
  3207. - ' &8» &7Knockback II'
  3208. - ''
  3209. - '&5&l* &dTools;'
  3210. - ' &8» &7Efficiency VI'
  3211. - ' &8» &7Unbreaking IV'
  3212. - ' &8» &7Fortune II'
  3213. - ''
  3214. - '&5&l* &dItems;'
  3215. - ' &8» &7x2 Legendary Star'
  3216. - ' &8» &7x190 Grass'
  3217. - ' &8» &7x190 Cobblestone'
  3218. - ' &8» &7x32 Diamond Block'
  3219. - ' &8» &7x32 Emerald Block'
  3220. - ' &8» &7x1 Sell-wand (50 uses)'
  3221. - ''
  3222. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  3223. - '&7&oWait for %javascript_cooldown_13_432000%'
  3224. '23929234':
  3225. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  3226. data: 3
  3227. slot: 16
  3228. priority: 3
  3229. display_name: '&d&lVIP++++ Kit'
  3230. lore:
  3231. - ''
  3232. - '&f&lCONTAIN:'
  3233. - '&5&l* &dArmor;'
  3234. - ' &8» &7Protection V'
  3235. - ' &8» &7Unbreaking IV'
  3236. - ''
  3237. - '&5&l* &dWeapon;'
  3238. - ' &8» &7Sharpness V'
  3239. - ' &8» &7Unbreaking III'
  3240. - ' &8» &7Fire Aspect II'
  3241. - ' &8» &7Looting III'
  3242. - ' &8» &7Knockback II'
  3243. - ''
  3244. - '&5&l* &dTools;'
  3245. - ' &8» &7Efficiency VI'
  3246. - ' &8» &7Unbreaking IV'
  3247. - ' &8» &7Fortune II'
  3248. - ''
  3249. - '&5&l* &dItems;'
  3250. - ' &8» &7x2 Legendary Star'
  3251. - ' &8» &7x190 Grass'
  3252. - ' &8» &7x190 Cobblestone'
  3253. - ' &8» &7x32 Diamond Block'
  3254. - ' &8» &7x32 Emerald Block'
  3255. - ' &8» &7x1 Sell-wand (50 uses)'
  3256. - ''
  3257. - '&c&oYou do not have rank enough!'
  3258. '20':
  3259. material: 160
  3260. display_name: '&f'
  3261. data: 15
  3262. slots:
  3263. - 0
  3264. - 1
  3265. - 2
  3266. - 3
  3267. - 4
  3268. - 5
  3269. - 6
  3270. - 7
  3271. - 8
  3272. - 9
  3273. - 11
  3274. - 17
  3275. - 18
  3276. - 19
  3277. - 20
  3278. - 21
  3279. - 22
  3280. - 23
  3281. - 24
  3282. - 25
  3283. - 26
  3284. priority: 1
  3285. values:
  3286. menu_title: '&8» Island Block Values'
  3287. inventory_type: INVENTORY
  3288. open_command:
  3289. - values
  3290. - is values
  3291. - value
  3292. - island values
  3293. size: 45
  3294. items:
  3295. '23':
  3296. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM2ZDkwMjRmYzU0MTJlOGUyNjY0MTIzNzMyZDIyOTFkZmM2YmIxNzVmNzJjZjg5NDA5NmY3ZjMxMzY0MWZkNCJ9fX0=
  3297. data: 3
  3298. amount: 1
  3299. slot: 10
  3300. priority: 1
  3301. display_name: '&d&lIsland Info'
  3302. lore:
  3303. - ''
  3304. - '&fView your island stats,'
  3305. - '&fand modify settings!'
  3306. - ''
  3307. - '&5&nLeft-click to view!'
  3308. - '&5&nRight-click to update level!'
  3309. left_click_commands:
  3310. - '[console] ib open islandinfo2 %player_name%'
  3311. - '[refresh]'
  3312. right_click_commands:
  3313. - '[console] titlemanager:tm message %player_name% &7\n&aCalculating your
  3314. level...'
  3315. - '[player] is level'
  3316. - '[close]'
  3317. - '[refresh]'
  3318. '20':
  3319. material: 160
  3320. display_name: '&f'
  3321. data: 15
  3322. slots:
  3323. - 0
  3324. - 1
  3325. - 2
  3326. - 3
  3327. - 4
  3328. - 5
  3329. - 6
  3330. - 7
  3331. - 8
  3332. - 9
  3333. - 11
  3334. - 17
  3335. - 18
  3336. - 19
  3337. - 20
  3338. - 26
  3339. - 27
  3340. - 28
  3341. - 29
  3342. - 35
  3343. - 36
  3344. - 37
  3345. - 38
  3346. - 39
  3347. - 40
  3348. - 41
  3349. - 42
  3350. - 43
  3351. - 44
  3352. priority: 1
  3353. '25':
  3354. material: EMERALD_BLOCK
  3355. amount: 1
  3356. slot: 12
  3357. priority: 1
  3358. display_name: '&d&l+3 Levels'
  3359. '255':
  3360. material: DIAMOND_BLOCK
  3361. amount: 1
  3362. slot: 13
  3363. priority: 1
  3364. display_name: '&d&l+3 Levels'
  3365. '26':
  3366. material: GOLD_BLOCK
  3367. amount: 1
  3368. slot: 14
  3369. priority: 1
  3370. display_name: '&d&l+1.5 Levels'
  3371. '27':
  3372. material: IRON_BLOCK
  3373. amount: 1
  3374. slot: 15
  3375. priority: 1
  3376. display_name: '&d&l+1.5 Levels'
  3377. '28':
  3378. material: COAL_BLOCK
  3379. amount: 1
  3380. slot: 16
  3381. priority: 1
  3382. display_name: '&d&l+0.5 Levels'
  3383. '29':
  3384. material: LAPIS_BLOCK
  3385. amount: 1
  3386. slot: 21
  3387. priority: 1
  3388. display_name: '&d&l+0.25 Levels'
  3389. '30':
  3390. material: REDSTONE_BLOCK
  3391. amount: 1
  3392. slot: 22
  3393. priority: 1
  3394. display_name: '&d&l+0.25 Levels'
  3395. '31':
  3396. material: DRAGON_EGG
  3397. amount: 1
  3398. slot: 23
  3399. priority: 1
  3400. display_name: '&d&l+1000 Levels'
  3401. '32':
  3402. material: BEACON
  3403. amount: 1
  3404. slot: 24
  3405. priority: 1
  3406. display_name: '&d&l+100 Levels'
  3407. '33':
  3408. material: ENDER_CHEST
  3409. amount: 1
  3410. slot: 25
  3411. priority: 1
  3412. display_name: '&d&l+0.25 Levels'
  3413. '34':
  3414. material: 116
  3415. amount: 1
  3416. slot: 30
  3417. priority: 1
  3418. display_name: '&d&l+0.25 Levels'
  3419. '35':
  3420. material: HOPPER
  3421. amount: 1
  3422. slot: 31
  3423. priority: 1
  3424. display_name: '&d&l+0.25 Levels'
  3425. shop:
  3426. menu_title: '&8» Shops'
  3427. inventory_type: INVENTORY
  3428. open_command:
  3429. - shops
  3430. - shop
  3431. size: 45
  3432. items:
  3433. '23':
  3434. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWE0NWQxYjQxN2NiZGRjMjE3NjdiMDYwNDRlODk5YjI2NmJmNzhhNjZlMjE4NzZiZTNjMDUxNWFiNTVkNzEifX19
  3435. data: 3
  3436. amount: 1
  3437. slot: 12
  3438. priority: 1
  3439. display_name: '&d&lBuilding Blocks'
  3440. lore:
  3441. - ''
  3442. - '&5&nClick to view!'
  3443. left_click_commands:
  3444. - '[console] shop open blocks %player_name%'
  3445. - '[refresh]'
  3446. right_click_commands:
  3447. - '[console] shop open blocks %player_name%'
  3448. - '[refresh]'
  3449. '20':
  3450. material: 160
  3451. display_name: '&f'
  3452. data: 15
  3453. slots:
  3454. - 0
  3455. - 1
  3456. - 2
  3457. - 3
  3458. - 4
  3459. - 5
  3460. - 6
  3461. - 7
  3462. - 8
  3463. - 9
  3464. - 10
  3465. - 11
  3466. - 15
  3467. - 16
  3468. - 17
  3469. - 18
  3470. - 19
  3471. - 20
  3472. - 25
  3473. - 26
  3474. - 27
  3475. - 28
  3476. - 29
  3477. - 33
  3478. - 34
  3479. - 35
  3480. - 36
  3481. - 37
  3482. - 38
  3483. - 39
  3484. - 40
  3485. - 41
  3486. - 42
  3487. - 43
  3488. - 44
  3489. priority: 1
  3490. '25':
  3491. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5NGNiMjVkZTYyOGNhMzU5YjJmNmVhNWE4ODY4Y2JlMjY1OTVlZWRiMmJmZmI3NTA5NjdhZDFlZTE4NTAifX19
  3492. data: 3
  3493. amount: 1
  3494. slot: 13
  3495. priority: 1
  3496. display_name: '&d&lColored Blocks'
  3497. lore:
  3498. - ''
  3499. - '&5&nClick to view!'
  3500. left_click_commands:
  3501. - '[console] shop open coloredb %player_name%'
  3502. - '[refresh]'
  3503. right_click_commands:
  3504. - '[console] shop open coloredb %player_name%'
  3505. - '[refresh]'
  3506. '255':
  3507. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODM3NjVlOGNlMTFhZTZmMTMxYzcyNWMwN2Y1OGYyZDQxMzJkOTg0YWQ2NjM2MDM5YTdhMzZhM2M1MTI3MjEifX19
  3508. data: 3
  3509. amount: 1
  3510. slot: 14
  3511. priority: 1
  3512. display_name: '&d&lDecoration'
  3513. lore:
  3514. - ''
  3515. - '&5&nClick to view!'
  3516. left_click_commands:
  3517. - '[console] shop open decoration %player_name%'
  3518. - '[refresh]'
  3519. right_click_commands:
  3520. - '[console] shop open decoration %player_name%'
  3521. - '[refresh]'
  3522. '26':
  3523. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTIxZDhkOWFlNTI3OGUyNmJjNDM5OTkyM2QyNWNjYjkxNzNlODM3NDhlOWJhZDZkZjc2MzE0YmE5NDM2OWUifX19
  3524. data: 3
  3525. amount: 1
  3526. slot: 20
  3527. priority: 1
  3528. display_name: '&d&lFood'
  3529. lore:
  3530. - ''
  3531. - '&5&nClick to view!'
  3532. left_click_commands:
  3533. - '[console] shop open food %player_name%'
  3534. - '[refresh]'
  3535. right_click_commands:
  3536. - '[console] shop open food %player_name%'
  3537. - '[refresh]'
  3538. '27':
  3539. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDMwOTNhNWI3NzY0MmQ0MDkyMTEyZjQ2ZWE2ODE0MGZiNWFlMDRiYmQyMzFjZGExMDY2YTA0YzE4Yjg5Yzk0ZSJ9fX0=
  3540. data: 3
  3541. amount: 1
  3542. slot: 21
  3543. priority: 1
  3544. display_name: '&d&lMob Drops'
  3545. lore:
  3546. - ''
  3547. - '&5&nClick to view!'
  3548. left_click_commands:
  3549. - '[console] shop open mobdrops %player_name%'
  3550. - '[refresh]'
  3551. right_click_commands:
  3552. - '[console] shop open mobdrops %player_name%'
  3553. - '[refresh]'
  3554. '28':
  3555. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjQ3ZTJlNWQ1NWI2ZDA0OTQzNTE5YmVkMjU1N2M2MzI5ZTMzYjYwYjkwOWRlZTg5MjNjZDg4YjExNTIxMCJ9fX0=
  3556. data: 3
  3557. amount: 1
  3558. slot: 22
  3559. priority: 1
  3560. display_name: '&d&lSpawners'
  3561. lore:
  3562. - ''
  3563. - '&5&nClick to view!'
  3564. left_click_commands:
  3565. - '[openguimenu] spawners'
  3566. - '[refresh]'
  3567. right_click_commands:
  3568. - '[openguimenu] spawners'
  3569. - '[refresh]'
  3570. '29':
  3571. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWM5MDZkNjg4ZTY1ODAyNTY5ZDk3MDViNTc5YmNlNTZlZGM4NmVhNWMzNmJkZDZkNmZjMzU1MTZhNzdkNCJ9fX0=
  3572. data: 3
  3573. amount: 1
  3574. slot: 23
  3575. priority: 1
  3576. display_name: '&d&lMinerals'
  3577. lore:
  3578. - ''
  3579. - '&5&nClick to view!'
  3580. left_click_commands:
  3581. - '[console] shop open minerals %player_name%'
  3582. - '[refresh]'
  3583. right_click_commands:
  3584. - '[console] shop open minerals %player_name%'
  3585. - '[refresh]'
  3586. '30':
  3587. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWFmMzI4Yzg3YjA2ODUwOWFjYTk4MzRlZmFjZTE5NzcwNWZlNWQ0ZjA4NzE3MzFiN2IyMWNkOTliOWZkZGMifX19
  3588. data: 3
  3589. amount: 1
  3590. slot: 24
  3591. priority: 1
  3592. display_name: '&d&lFarming'
  3593. lore:
  3594. - ''
  3595. - '&5&nClick to view!'
  3596. left_click_commands:
  3597. - '[console] shop open farming %player_name%'
  3598. - '[refresh]'
  3599. right_click_commands:
  3600. - '[console] shop open farming %player_name%'
  3601. - '[refresh]'
  3602. '31':
  3603. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzczNzUxOTUxZTUyNGUxNzA3NTY1MWRlYjI0NTMyMzUyM2I2NDU2NmU3ZWNkNzM0OGU0ZTE1YjYyN2NhZWVmZCJ9fX0=
  3604. data: 3
  3605. amount: 1
  3606. slot: 30
  3607. priority: 1
  3608. display_name: '&d&lBrewing'
  3609. lore:
  3610. - ''
  3611. - '&5&nClick to view!'
  3612. left_click_commands:
  3613. - '[console] shop open brewing %player_name%'
  3614. - '[refresh]'
  3615. right_click_commands:
  3616. - '[console] shop open brewing %player_name%'
  3617. - '[refresh]'
  3618. '32':
  3619. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2NhNGQyMThkZjlkMzJjZDQ3ZDljMWQyOTQ4NzcxMjJiZTU5MTliNDE4YTZjYzNkMDg5MTYyYjEzM2YyZGIifX19
  3620. data: 3
  3621. amount: 1
  3622. slot: 31
  3623. priority: 1
  3624. display_name: '&d&lRedstone'
  3625. lore:
  3626. - ''
  3627. - '&5&nClick to view!'
  3628. left_click_commands:
  3629. - '[console] shop open redstone %player_name%'
  3630. - '[refresh]'
  3631. right_click_commands:
  3632. - '[console] shop open redstone %player_name%'
  3633. - '[refresh]'
  3634. '33':
  3635. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzI4YmRkMzQ4MTBmODY2NTI3ZGFhZjI4M2RhNzE4MjZhODM3ODI4NmIyYTQzYTYyNjYxNWZhMWIzNjM5ZSJ9fX0=
  3636. data: 3
  3637. amount: 1
  3638. slot: 32
  3639. priority: 1
  3640. display_name: '&d&lMiscellanous'
  3641. lore:
  3642. - ''
  3643. - '&5&nClick to view!'
  3644. left_click_commands:
  3645. - '[console] shop open misc %player_name%'
  3646. - '[refresh]'
  3647. right_click_commands:
  3648. - '[console] shop open misc %player_name%'
  3649. - '[refresh]'
  3650. bblocks:
  3651. menu_title: '&8» Building Blocks (page 1)'
  3652. inventory_type: INVENTORY
  3653. open_command:
  3654. - shop bblocks
  3655. size: 54
  3656. items:
  3657. '215':
  3658. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  3659. data: 3
  3660. slot: 10
  3661. priority: 2
  3662. display_name: '&d&lBack'
  3663. lore:
  3664. - ''
  3665. - '&5&nClick to back!'
  3666. left_click_commands:
  3667. - '[openguimenu] shop'
  3668. right_click_commands:
  3669. - '[openguimenu] shop'
  3670. '314':
  3671. material: ARROW
  3672. amount: 1
  3673. slot: 51
  3674. priority: 2
  3675. display_name: '&eNext page &e&l»'
  3676. left_click_commands:
  3677. - '[openguimenu] bblocks2'
  3678. right_click_commands:
  3679. - '[openguimenu] bblocks2'
  3680. '20':
  3681. material: 160
  3682. display_name: '&f'
  3683. data: 15
  3684. slots:
  3685. - 0
  3686. - 1
  3687. - 2
  3688. - 3
  3689. - 4
  3690. - 5
  3691. - 6
  3692. - 7
  3693. - 8
  3694. - 9
  3695. - 11
  3696. - 17
  3697. - 18
  3698. - 19
  3699. - 20
  3700. - 26
  3701. - 27
  3702. - 28
  3703. - 29
  3704. - 35
  3705. - 36
  3706. - 37
  3707. - 38
  3708. - 39
  3709. - 40
  3710. - 41
  3711. - 42
  3712. - 43
  3713. - 44
  3714. - 45
  3715. - 46
  3716. - 47
  3717. - 48
  3718. - 52
  3719. - 53
  3720. priority: 1
  3721. '21':
  3722. material: GRASS
  3723. amount: 5
  3724. slot: 12
  3725. priority: 2
  3726. display_name: '&d&lGrass Block'
  3727. lore:
  3728. - ''
  3729. - '&5&l* &fBuy: &e$875 &7&o(You have $%vault_eco_balance_fixed%)'
  3730. - '&5&l* &fSell: &e$10'
  3731. - ''
  3732. - '&5&nLeft-click to buy!'
  3733. - '&5&nRight-click to sell!'
  3734. left_click_commands:
  3735. - '[console] eco take %player_name% 875'
  3736. - '[console] minecraft:give %player_name% minecraft:grass 5'
  3737. - '[refresh]'
  3738. left_click_requirement:
  3739. requirements:
  3740. stone:
  3741. type: has money
  3742. amount: 875
  3743. right_click_commands:
  3744. - '[console] eco give %player_name% 10'
  3745. - '[console] ci %player_name% GRASS 5'
  3746. - '[refresh]'
  3747. right_click_requirement:
  3748. requirements:
  3749. stone:
  3750. type: has item
  3751. material: GRASS
  3752. amount: 5
  3753. '22':
  3754. material: DIRT
  3755. amount: 5
  3756. slot: 13
  3757. priority: 2
  3758. display_name: '&d&lDirt'
  3759. lore:
  3760. - ''
  3761. - '&5&l* &fBuy: &e$600'
  3762. - '&5&l* &fSell: &e$5'
  3763. - ''
  3764. - '&5&nLeft-click to buy! &7&o(You have $%vault_eco_balance_fixed%)'
  3765. - '&5&nRight-click to sell!'
  3766. left_click_commands:
  3767. - '[console] eco take %player_name% 600'
  3768. - '[console] minecraft:give %player_name% minecraft:dirt 5'
  3769. - '[refresh]'
  3770. left_click_requirement:
  3771. requirements:
  3772. stone:
  3773. type: has money
  3774. amount: 600
  3775. right_click_commands:
  3776. - '[console] eco give %player_name% 5'
  3777. - '[console] ci %player_name% DIRT 5'
  3778. - '[refresh]'
  3779. right_click_requirement:
  3780. requirements:
  3781. stone:
  3782. type: has item
  3783. material: GRASS
  3784. amount: 5
  3785. '23':
  3786. material: 110
  3787. amount: 5
  3788. slot: 14
  3789. priority: 2
  3790. display_name: '&d&lMycelium'
  3791. lore:
  3792. - ''
  3793. - '&5&l* &fBuy: &e$10,000 &7&o(You have $%vault_eco_balance_fixed%)'
  3794. - '&5&l* &fSell: &e$20'
  3795. - ''
  3796. - '&5&nLeft-click to buy!'
  3797. - '&5&nRight-click to sell!'
  3798. left_click_commands:
  3799. - '[console] eco take %player_name% 10000'
  3800. - '[console] minecraft:give %player_name% minecraft:mycelium 5'
  3801. - '[refresh]'
  3802. left_click_requirement:
  3803. requirements:
  3804. stone:
  3805. type: has money
  3806. amount: 10000
  3807. right_click_commands:
  3808. - '[console] eco give %player_name% 10'
  3809. - '[console] ci %player_name% MYCELIUM 5'
  3810. - '[refresh]'
  3811. right_click_requirement:
  3812. requirements:
  3813. stone:
  3814. type: has item
  3815. material: 110
  3816. amount: 5
  3817. '24':
  3818. material: 3
  3819. data: 2
  3820. amount: 5
  3821. slot: 15
  3822. priority: 2
  3823. display_name: '&d&lPodzol'
  3824. lore:
  3825. - ''
  3826. - '&5&l* &fBuy: &e$1,250 &7&o(You have $%vault_eco_balance_fixed%)'
  3827. - '&5&l* &fSell: &e$15'
  3828. - ''
  3829. - '&5&nLeft-click to buy!'
  3830. - '&5&nRight-click to sell!'
  3831. left_click_commands:
  3832. - '[console] eco take %player_name% 1250'
  3833. - '[console] minecraft:give %player_name% minecraft:dirt 5 2'
  3834. - '[refresh]'
  3835. left_click_requirement:
  3836. requirements:
  3837. stone:
  3838. type: has money
  3839. amount: 1250
  3840. right_click_commands:
  3841. - '[console] eco give %player_name% 15'
  3842. - '[console] ci %player_name% DIRT:2 5'
  3843. - '[refresh]'
  3844. right_click_requirement:
  3845. requirements:
  3846. stone:
  3847. type: has item
  3848. material: DIRT
  3849. data: 2
  3850. amount: 5
  3851. '25':
  3852. material: SAND
  3853. amount: 5
  3854. slot: 16
  3855. priority: 2
  3856. display_name: '&d&lSand'
  3857. lore:
  3858. - ''
  3859. - '&5&l* &fBuy: &e$875 &7&o(You have $%vault_eco_balance_fixed%)'
  3860. - '&5&l* &fSell: &e$5'
  3861. - ''
  3862. - '&5&nLeft-click to buy!'
  3863. - '&5&nRight-click to sell!'
  3864. left_click_commands:
  3865. - '[console] eco take %player_name% 875'
  3866. - '[console] minecraft:give %player_name% minecraft:sand 5'
  3867. - '[refresh]'
  3868. left_click_requirement:
  3869. requirements:
  3870. stone:
  3871. type: has money
  3872. amount: 875
  3873. right_click_commands:
  3874. - '[console] eco give %player_name% 5'
  3875. - '[console] ci %player_name% SAND 5'
  3876. - '[refresh]'
  3877. right_click_requirement:
  3878. requirements:
  3879. stone:
  3880. type: has item
  3881. material: SAND
  3882. amount: 5
  3883. '26':
  3884. material: SAND
  3885. data: 1
  3886. amount: 5
  3887. slot: 21
  3888. priority: 2
  3889. display_name: '&d&lRed Sand'
  3890. lore:
  3891. - ''
  3892. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  3893. - '&5&l* &fSell: &e$5'
  3894. - ''
  3895. - '&5&nLeft-click to buy!'
  3896. - '&5&nRight-click to sell!'
  3897. left_click_commands:
  3898. - '[console] eco take %player_name% 1000'
  3899. - '[console] minecraft:give %player_name% minecraft:sand 5 1'
  3900. - '[refresh]'
  3901. left_click_requirement:
  3902. requirements:
  3903. stone:
  3904. type: has money
  3905. amount: 1000
  3906. right_click_commands:
  3907. - '[console] eco give %player_name% 5'
  3908. - '[console] ci %player_name% SAND:1 5'
  3909. - '[refresh]'
  3910. right_click_requirement:
  3911. requirements:
  3912. stone:
  3913. type: has item
  3914. material: SAND
  3915. data: 1
  3916. amount: 5
  3917. '27':
  3918. material: GRAVEL
  3919. amount: 5
  3920. slot: 22
  3921. priority: 2
  3922. display_name: '&d&lGravel'
  3923. lore:
  3924. - ''
  3925. - '&5&l* &fBuy: &e$250 &7&o(You have $%vault_eco_balance_fixed%)'
  3926. - '&5&l* &fSell: &e$5'
  3927. - ''
  3928. - '&5&nLeft-click to buy!'
  3929. - '&5&nRight-click to sell!'
  3930. left_click_commands:
  3931. - '[console] eco take %player_name% 250'
  3932. - '[console] minecraft:give %player_name% minecraft:gravel 5'
  3933. - '[refresh]'
  3934. left_click_requirement:
  3935. requirements:
  3936. stone:
  3937. type: has money
  3938. amount: 250
  3939. right_click_commands:
  3940. - '[console] eco give %player_name% 5'
  3941. - '[console] ci %player_name% GRAVEL 5'
  3942. - '[refresh]'
  3943. right_click_requirement:
  3944. requirements:
  3945. stone:
  3946. type: has item
  3947. material: GRAVEL
  3948. amount: 5
  3949. '28':
  3950. material: LOG
  3951. amount: 5
  3952. slot: 23
  3953. priority: 2
  3954. display_name: '&d&lOak Wood'
  3955. lore:
  3956. - ''
  3957. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  3958. - '&5&l* &fSell: &e$5'
  3959. - ''
  3960. - '&5&nLeft-click to buy!'
  3961. - '&5&nRight-click to sell!'
  3962. left_click_commands:
  3963. - '[console] eco take %player_name% 1000'
  3964. - '[console] minecraft:give %player_name% minecraft:log 5'
  3965. - '[refresh]'
  3966. left_click_requirement:
  3967. requirements:
  3968. stone:
  3969. type: has money
  3970. amount: 1000
  3971. right_click_commands:
  3972. - '[console] eco give %player_name% 5'
  3973. - '[console] ci %player_name% LOG 5'
  3974. - '[refresh]'
  3975. right_click_requirement:
  3976. requirements:
  3977. stone:
  3978. type: has item
  3979. material: LOG
  3980. amount: 5
  3981. '29':
  3982. material: LOG
  3983. data: 1
  3984. amount: 5
  3985. slot: 24
  3986. priority: 2
  3987. display_name: '&d&lSpruce Wood'
  3988. lore:
  3989. - ''
  3990. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  3991. - '&5&l* &fSell: &e$5'
  3992. - ''
  3993. - '&5&nLeft-click to buy!'
  3994. - '&5&nRight-click to sell!'
  3995. left_click_commands:
  3996. - '[console] eco take %player_name% 1000'
  3997. - '[console] minecraft:give %player_name% minecraft:log 5 1'
  3998. - '[refresh]'
  3999. left_click_requirement:
  4000. requirements:
  4001. stone:
  4002. type: has money
  4003. amount: 1000
  4004. right_click_commands:
  4005. - '[console] eco give %player_name% 5'
  4006. - '[console] ci %player_name% LOG:1 5'
  4007. - '[refresh]'
  4008. right_click_requirement:
  4009. requirements:
  4010. stone:
  4011. type: has item
  4012. material: LOG
  4013. data: 1
  4014. amount: 5
  4015. '30':
  4016. material: LOG
  4017. data: 2
  4018. amount: 5
  4019. slot: 25
  4020. priority: 2
  4021. display_name: '&d&lBirch Wood'
  4022. lore:
  4023. - ''
  4024. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4025. - '&5&l* &fSell: &e$5'
  4026. - ''
  4027. - '&5&nLeft-click to buy!'
  4028. - '&5&nRight-click to sell!'
  4029. left_click_commands:
  4030. - '[console] eco take %player_name% 1000'
  4031. - '[console] minecraft:give %player_name% minecraft:log 5 2'
  4032. - '[refresh]'
  4033. left_click_requirement:
  4034. requirements:
  4035. stone:
  4036. type: has money
  4037. amount: 1000
  4038. right_click_commands:
  4039. - '[console] eco give %player_name% 5'
  4040. - '[console] ci %player_name% LOG:2 5'
  4041. - '[refresh]'
  4042. right_click_requirement:
  4043. requirements:
  4044. stone:
  4045. type: has item
  4046. material: LOG
  4047. data: 2
  4048. amount: 5
  4049. '31':
  4050. material: LOG
  4051. data: 3
  4052. amount: 5
  4053. slot: 30
  4054. priority: 2
  4055. display_name: '&d&lJungle Wood'
  4056. lore:
  4057. - ''
  4058. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4059. - '&5&l* &fSell: &e$5'
  4060. - ''
  4061. - '&5&nLeft-click to buy!'
  4062. - '&5&nRight-click to sell!'
  4063. left_click_commands:
  4064. - '[console] eco take %player_name% 1000'
  4065. - '[console] minecraft:give %player_name% minecraft:log 5 3'
  4066. - '[refresh]'
  4067. left_click_requirement:
  4068. requirements:
  4069. stone:
  4070. type: has money
  4071. amount: 1000
  4072. right_click_commands:
  4073. - '[console] eco give %player_name% 5'
  4074. - '[console] ci %player_name% LOG:3 5'
  4075. - '[refresh]'
  4076. right_click_requirement:
  4077. requirements:
  4078. stone:
  4079. type: has item
  4080. material: LOG
  4081. data: 3
  4082. amount: 5
  4083. '32':
  4084. material: 162
  4085. amount: 5
  4086. slot: 31
  4087. priority: 2
  4088. display_name: '&d&lAcacia Wood'
  4089. lore:
  4090. - ''
  4091. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4092. - '&5&l* &fSell: &e$5'
  4093. - ''
  4094. - '&5&nLeft-click to buy!'
  4095. - '&5&nRight-click to sell!'
  4096. left_click_commands:
  4097. - '[console] eco take %player_name% 1000'
  4098. - '[console] minecraft:give %player_name% minecraft:log2 5'
  4099. - '[refresh]'
  4100. left_click_requirement:
  4101. requirements:
  4102. stone:
  4103. type: has money
  4104. amount: 1000
  4105. right_click_commands:
  4106. - '[console] eco give %player_name% 5'
  4107. - '[console] ci %player_name% LOG2 5'
  4108. - '[refresh]'
  4109. right_click_requirement:
  4110. requirements:
  4111. stone:
  4112. type: has item
  4113. material: LOG2
  4114. amount: 5
  4115. '33':
  4116. material: 162
  4117. data: 1
  4118. amount: 5
  4119. slot: 32
  4120. priority: 2
  4121. display_name: '&d&lDark Oak Wood'
  4122. lore:
  4123. - ''
  4124. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4125. - '&5&l* &fSell: &e$5'
  4126. - ''
  4127. - '&5&nLeft-click to buy!'
  4128. - '&5&nRight-click to sell!'
  4129. left_click_commands:
  4130. - '[console] eco take %player_name% 1000'
  4131. - '[console] minecraft:give %player_name% minecraft:log2 5 1'
  4132. - '[refresh]'
  4133. left_click_requirement:
  4134. requirements:
  4135. stone:
  4136. type: has money
  4137. amount: 1000
  4138. right_click_commands:
  4139. - '[console] eco give %player_name% 5'
  4140. - '[console] ci %player_name% LOG2:1 5'
  4141. - '[refresh]'
  4142. right_click_requirement:
  4143. requirements:
  4144. stone:
  4145. type: has item
  4146. material: LOG2
  4147. data: 1
  4148. amount: 5
  4149. '34':
  4150. material: COBBLESTONE
  4151. amount: 5
  4152. slot: 33
  4153. priority: 2
  4154. display_name: '&d&lCobblestone'
  4155. lore:
  4156. - ''
  4157. - '&5&l* &fBuy: &e$10 &7&o(You have $%vault_eco_balance_fixed%)'
  4158. - '&5&l* &fSell: &e$5'
  4159. - ''
  4160. - '&5&nLeft-click to buy!'
  4161. - '&5&nRight-click to sell!'
  4162. left_click_commands:
  4163. - '[console] eco take %player_name% 10'
  4164. - '[console] minecraft:give %player_name% minecraft:cobblestone 5'
  4165. - '[refresh]'
  4166. left_click_requirement:
  4167. requirements:
  4168. stone:
  4169. type: has money
  4170. amount: 10
  4171. right_click_commands:
  4172. - '[console] eco give %player_name% 5'
  4173. - '[console] ci %player_name% COBBBLESTONE 5'
  4174. - '[refresh]'
  4175. right_click_requirement:
  4176. requirements:
  4177. stone:
  4178. type: has item
  4179. material: COBBLESTONE
  4180. amount: 5
  4181. '35':
  4182. material: STONE
  4183. amount: 5
  4184. slot: 34
  4185. priority: 2
  4186. display_name: '&d&lStone'
  4187. lore:
  4188. - ''
  4189. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4190. - '&5&l* &fSell: &e$5'
  4191. - ''
  4192. - '&5&nLeft-click to buy!'
  4193. - '&5&nRight-click to sell!'
  4194. left_click_commands:
  4195. - '[console] eco take %player_name% 1000'
  4196. - '[console] minecraft:give %player_name% minecraft:stone 5'
  4197. - '[refresh]'
  4198. left_click_requirement:
  4199. requirements:
  4200. stone:
  4201. type: has money
  4202. amount: 1000
  4203. right_click_commands:
  4204. - '[console] eco give %player_name% 5'
  4205. - '[console] ci %player_name% STONE 5'
  4206. - '[refresh]'
  4207. right_click_requirement:
  4208. requirements:
  4209. stone:
  4210. type: has item
  4211. material: STONE
  4212. amount: 5
  4213. bblocks2:
  4214. menu_title: '&8» Building Blocks (page 2)'
  4215. inventory_type: INVENTORY
  4216. open_command:
  4217. - shop bblocks2
  4218. size: 54
  4219. items:
  4220. '215':
  4221. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  4222. data: 3
  4223. slot: 10
  4224. priority: 2
  4225. display_name: '&d&lBack'
  4226. lore:
  4227. - ''
  4228. - '&5&nClick to back!'
  4229. left_click_commands:
  4230. - '[openguimenu] shop'
  4231. right_click_commands:
  4232. - '[openguimenu] shop'
  4233. '20':
  4234. material: 160
  4235. display_name: '&f'
  4236. data: 15
  4237. slots:
  4238. - 0
  4239. - 1
  4240. - 2
  4241. - 3
  4242. - 4
  4243. - 5
  4244. - 6
  4245. - 7
  4246. - 8
  4247. - 9
  4248. - 11
  4249. - 17
  4250. - 18
  4251. - 19
  4252. - 20
  4253. - 26
  4254. - 27
  4255. - 28
  4256. - 29
  4257. - 35
  4258. - 36
  4259. - 37
  4260. - 38
  4261. - 39
  4262. - 40
  4263. - 41
  4264. - 42
  4265. - 43
  4266. - 44
  4267. - 45
  4268. - 46
  4269. - 47
  4270. - 48
  4271. - 52
  4272. - 53
  4273. priority: 1
  4274. '21':
  4275. material: STONE
  4276. amount: 5
  4277. slot: 12
  4278. priority: 2
  4279. display_name: '&d&lGranite'
  4280. lore:
  4281. - ''
  4282. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4283. - '&5&l* &fSell: &e$5'
  4284. - ''
  4285. - '&5&nLeft-click to buy!'
  4286. - '&5&nRight-click to sell!'
  4287. left_click_commands:
  4288. - '[console] eco take %player_name% 1000'
  4289. - '[console] minecraft:give %player_name% minecraft:stone 5'
  4290. - '[refresh]'
  4291. left_click_requirement:
  4292. requirements:
  4293. stone:
  4294. type: has money
  4295. amount: 1000
  4296. right_click_commands:
  4297. - '[console] eco give %player_name% 5'
  4298. - '[console] ci %player_name% STONE 5'
  4299. - '[refresh]'
  4300. right_click_requirement:
  4301. requirements:
  4302. stone:
  4303. type: has item
  4304. material: STONE
  4305. amount: 5
  4306. '22':
  4307. material: STONE
  4308. data: 3
  4309. amount: 5
  4310. slot: 13
  4311. priority: 2
  4312. display_name: '&d&lDiorite'
  4313. lore:
  4314. - ''
  4315. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4316. - '&5&l* &fSell: &e$5'
  4317. - ''
  4318. - '&5&nLeft-click to buy!'
  4319. - '&5&nRight-click to sell!'
  4320. left_click_commands:
  4321. - '[console] eco take %player_name% 1000'
  4322. - '[console] minecraft:give %player_name% minecraft:stone 5 3'
  4323. - '[refresh]'
  4324. left_click_requirement:
  4325. requirements:
  4326. stone:
  4327. type: has money
  4328. amount: 1000
  4329. right_click_commands:
  4330. - '[console] eco give %player_name% 5'
  4331. - '[console] ci %player_name% STONE:3 5'
  4332. - '[refresh]'
  4333. right_click_requirement:
  4334. requirements:
  4335. stone:
  4336. type: has item
  4337. material: STONE
  4338. data: 3
  4339. amount: 5
  4340. '23':
  4341. material: STONE
  4342. data: 5
  4343. amount: 5
  4344. slot: 14
  4345. priority: 2
  4346. display_name: '&d&lAndesite'
  4347. lore:
  4348. - ''
  4349. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4350. - '&5&l* &fSell: &e$5'
  4351. - ''
  4352. - '&5&nLeft-click to buy!'
  4353. - '&5&nRight-click to sell!'
  4354. left_click_commands:
  4355. - '[console] eco take %player_name% 1000'
  4356. - '[console] minecraft:give %player_name% minecraft:stone 5 5'
  4357. - '[refresh]'
  4358. left_click_requirement:
  4359. requirements:
  4360. stone:
  4361. type: has money
  4362. amount: 1000
  4363. right_click_commands:
  4364. - '[console] eco give %player_name% 5'
  4365. - '[console] ci %player_name% STONE:5 5'
  4366. - '[refresh]'
  4367. right_click_requirement:
  4368. requirements:
  4369. stone:
  4370. type: has item
  4371. material: STONE
  4372. data: 5
  4373. amount: 5
  4374. '24':
  4375. material: 48
  4376. amount: 5
  4377. slot: 15
  4378. priority: 2
  4379. display_name: '&d&lMoss Stone'
  4380. lore:
  4381. - ''
  4382. - '&5&l* &fBuy: &e$500 &7&o(You have $%vault_eco_balance_fixed%)'
  4383. - '&5&l* &fSell: &e$15'
  4384. - ''
  4385. - '&5&nLeft-click to buy!'
  4386. - '&5&nRight-click to sell!'
  4387. left_click_commands:
  4388. - '[console] eco take %player_name% 500'
  4389. - '[console] minecraft:give %player_name% minecraft:mossy_cobblestone 5'
  4390. - '[refresh]'
  4391. left_click_requirement:
  4392. requirements:
  4393. stone:
  4394. type: has money
  4395. amount: 500
  4396. right_click_commands:
  4397. - '[console] eco give %player_name% 5'
  4398. - '[console] ci %player_name% 48 5'
  4399. - '[refresh]'
  4400. right_click_requirement:
  4401. requirements:
  4402. stone:
  4403. type: has item
  4404. material: 48
  4405. amount: 5
  4406. '25':
  4407. material: 43
  4408. data: 5
  4409. amount: 5
  4410. slot: 16
  4411. priority: 2
  4412. display_name: '&d&lStone Bricks'
  4413. lore:
  4414. - ''
  4415. - '&5&l* &fBuy: &e$2,500 &7&o(You have $%vault_eco_balance_fixed%)'
  4416. - '&5&l* &fSell: &e$5'
  4417. - ''
  4418. - '&5&nLeft-click to buy!'
  4419. - '&5&nRight-click to sell!'
  4420. left_click_commands:
  4421. - '[console] eco take %player_name% 2500'
  4422. - '[console] minecraft:give %player_name% minecraft:double_stone_slab 5 5'
  4423. - '[refresh]'
  4424. left_click_requirement:
  4425. requirements:
  4426. stone:
  4427. type: has money
  4428. amount: 2500
  4429. right_click_commands:
  4430. - '[console] eco give %player_name% 5'
  4431. - '[console] ci %player_name% 43:5 5'
  4432. - '[refresh]'
  4433. right_click_requirement:
  4434. requirements:
  4435. stone:
  4436. type: has item
  4437. material: 43
  4438. data: 5
  4439. amount: 5
  4440. '26':
  4441. material: SAND
  4442. data: 1
  4443. amount: 5
  4444. slot: 21
  4445. priority: 2
  4446. display_name: '&d&lRed Sand'
  4447. lore:
  4448. - ''
  4449. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4450. - '&5&l* &fSell: &e$5'
  4451. - ''
  4452. - '&5&nLeft-click to buy!'
  4453. - '&5&nRight-click to sell!'
  4454. left_click_commands:
  4455. - '[console] eco take %player_name% 1000'
  4456. - '[console] minecraft:give %player_name% minecraft:sand 5 1'
  4457. - '[refresh]'
  4458. left_click_requirement:
  4459. requirements:
  4460. stone:
  4461. type: has money
  4462. amount: 1000
  4463. right_click_commands:
  4464. - '[console] eco give %player_name% 5'
  4465. - '[console] ci %player_name% SAND:1 5'
  4466. - '[refresh]'
  4467. right_click_requirement:
  4468. requirements:
  4469. stone:
  4470. type: has item
  4471. material: SAND
  4472. data: 1
  4473. amount: 5
  4474. '27':
  4475. material: GRAVEL
  4476. amount: 5
  4477. slot: 22
  4478. priority: 2
  4479. display_name: '&d&lGravel'
  4480. lore:
  4481. - ''
  4482. - '&5&l* &fBuy: &e$250 &7&o(You have $%vault_eco_balance_fixed%)'
  4483. - '&5&l* &fSell: &e$5'
  4484. - ''
  4485. - '&5&nLeft-click to buy!'
  4486. - '&5&nRight-click to sell!'
  4487. left_click_commands:
  4488. - '[console] eco take %player_name% 250'
  4489. - '[console] minecraft:give %player_name% minecraft:gravel 5'
  4490. - '[refresh]'
  4491. left_click_requirement:
  4492. requirements:
  4493. stone:
  4494. type: has money
  4495. amount: 250
  4496. right_click_commands:
  4497. - '[console] eco give %player_name% 5'
  4498. - '[console] ci %player_name% GRAVEL 5'
  4499. - '[refresh]'
  4500. right_click_requirement:
  4501. requirements:
  4502. stone:
  4503. type: has item
  4504. material: GRAVEL
  4505. amount: 5
  4506. '28':
  4507. material: LOG
  4508. amount: 5
  4509. slot: 23
  4510. priority: 2
  4511. display_name: '&d&lOak Wood'
  4512. lore:
  4513. - ''
  4514. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4515. - '&5&l* &fSell: &e$5'
  4516. - ''
  4517. - '&5&nLeft-click to buy!'
  4518. - '&5&nRight-click to sell!'
  4519. left_click_commands:
  4520. - '[console] eco take %player_name% 1000'
  4521. - '[console] minecraft:give %player_name% minecraft:log 5'
  4522. - '[refresh]'
  4523. left_click_requirement:
  4524. requirements:
  4525. stone:
  4526. type: has money
  4527. amount: 1000
  4528. right_click_commands:
  4529. - '[console] eco give %player_name% 5'
  4530. - '[console] ci %player_name% LOG 5'
  4531. - '[refresh]'
  4532. right_click_requirement:
  4533. requirements:
  4534. stone:
  4535. type: has item
  4536. material: LOG
  4537. amount: 5
  4538. '29':
  4539. material: LOG
  4540. data: 1
  4541. amount: 5
  4542. slot: 24
  4543. priority: 2
  4544. display_name: '&d&lSpruce Wood'
  4545. lore:
  4546. - ''
  4547. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4548. - '&5&l* &fSell: &e$5'
  4549. - ''
  4550. - '&5&nLeft-click to buy!'
  4551. - '&5&nRight-click to sell!'
  4552. left_click_commands:
  4553. - '[console] eco take %player_name% 1000'
  4554. - '[console] minecraft:give %player_name% minecraft:log 5 1'
  4555. - '[refresh]'
  4556. left_click_requirement:
  4557. requirements:
  4558. stone:
  4559. type: has money
  4560. amount: 1000
  4561. right_click_commands:
  4562. - '[console] eco give %player_name% 5'
  4563. - '[console] ci %player_name% LOG:1 5'
  4564. - '[refresh]'
  4565. right_click_requirement:
  4566. requirements:
  4567. stone:
  4568. type: has item
  4569. material: LOG
  4570. data: 1
  4571. amount: 5
  4572. '30':
  4573. material: LOG
  4574. data: 2
  4575. amount: 5
  4576. slot: 25
  4577. priority: 2
  4578. display_name: '&d&lBirch Wood'
  4579. lore:
  4580. - ''
  4581. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4582. - '&5&l* &fSell: &e$5'
  4583. - ''
  4584. - '&5&nLeft-click to buy!'
  4585. - '&5&nRight-click to sell!'
  4586. left_click_commands:
  4587. - '[console] eco take %player_name% 1000'
  4588. - '[console] minecraft:give %player_name% minecraft:log 5 2'
  4589. - '[refresh]'
  4590. left_click_requirement:
  4591. requirements:
  4592. stone:
  4593. type: has money
  4594. amount: 1000
  4595. right_click_commands:
  4596. - '[console] eco give %player_name% 5'
  4597. - '[console] ci %player_name% LOG:2 5'
  4598. - '[refresh]'
  4599. right_click_requirement:
  4600. requirements:
  4601. stone:
  4602. type: has item
  4603. material: LOG
  4604. data: 2
  4605. amount: 5
  4606. '31':
  4607. material: LOG
  4608. data: 3
  4609. amount: 5
  4610. slot: 30
  4611. priority: 2
  4612. display_name: '&d&lJungle Wood'
  4613. lore:
  4614. - ''
  4615. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4616. - '&5&l* &fSell: &e$5'
  4617. - ''
  4618. - '&5&nLeft-click to buy!'
  4619. - '&5&nRight-click to sell!'
  4620. left_click_commands:
  4621. - '[console] eco take %player_name% 1000'
  4622. - '[console] minecraft:give %player_name% minecraft:log 5 3'
  4623. - '[refresh]'
  4624. left_click_requirement:
  4625. requirements:
  4626. stone:
  4627. type: has money
  4628. amount: 1000
  4629. right_click_commands:
  4630. - '[console] eco give %player_name% 5'
  4631. - '[console] ci %player_name% LOG:3 5'
  4632. - '[refresh]'
  4633. right_click_requirement:
  4634. requirements:
  4635. stone:
  4636. type: has item
  4637. material: LOG
  4638. data: 3
  4639. amount: 5
  4640. '32':
  4641. material: 162
  4642. amount: 5
  4643. slot: 31
  4644. priority: 2
  4645. display_name: '&d&lAcacia Wood'
  4646. lore:
  4647. - ''
  4648. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4649. - '&5&l* &fSell: &e$5'
  4650. - ''
  4651. - '&5&nLeft-click to buy!'
  4652. - '&5&nRight-click to sell!'
  4653. left_click_commands:
  4654. - '[console] eco take %player_name% 1000'
  4655. - '[console] minecraft:give %player_name% minecraft:log2 5'
  4656. - '[refresh]'
  4657. left_click_requirement:
  4658. requirements:
  4659. stone:
  4660. type: has money
  4661. amount: 1000
  4662. right_click_commands:
  4663. - '[console] eco give %player_name% 5'
  4664. - '[console] ci %player_name% LOG2 5'
  4665. - '[refresh]'
  4666. right_click_requirement:
  4667. requirements:
  4668. stone:
  4669. type: has item
  4670. material: LOG2
  4671. amount: 5
  4672. '33':
  4673. material: 162
  4674. data: 1
  4675. amount: 5
  4676. slot: 32
  4677. priority: 2
  4678. display_name: '&d&lDark Oak Wood'
  4679. lore:
  4680. - ''
  4681. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4682. - '&5&l* &fSell: &e$5'
  4683. - ''
  4684. - '&5&nLeft-click to buy!'
  4685. - '&5&nRight-click to sell!'
  4686. left_click_commands:
  4687. - '[console] eco take %player_name% 1000'
  4688. - '[console] minecraft:give %player_name% minecraft:log2 5 1'
  4689. - '[refresh]'
  4690. left_click_requirement:
  4691. requirements:
  4692. stone:
  4693. type: has money
  4694. amount: 1000
  4695. right_click_commands:
  4696. - '[console] eco give %player_name% 5'
  4697. - '[console] ci %player_name% LOG2:1 5'
  4698. - '[refresh]'
  4699. right_click_requirement:
  4700. requirements:
  4701. stone:
  4702. type: has item
  4703. material: LOG2
  4704. data: 1
  4705. amount: 5
  4706. '34':
  4707. material: COBBLESTONE
  4708. amount: 5
  4709. slot: 33
  4710. priority: 2
  4711. display_name: '&d&lCobblestone'
  4712. lore:
  4713. - ''
  4714. - '&5&l* &fBuy: &e$10 &7&o(You have $%vault_eco_balance_fixed%)'
  4715. - '&5&l* &fSell: &e$5'
  4716. - ''
  4717. - '&5&nLeft-click to buy!'
  4718. - '&5&nRight-click to sell!'
  4719. left_click_commands:
  4720. - '[console] eco take %player_name% 10'
  4721. - '[console] minecraft:give %player_name% minecraft:cobblestone 5'
  4722. - '[refresh]'
  4723. left_click_requirement:
  4724. requirements:
  4725. stone:
  4726. type: has money
  4727. amount: 10
  4728. right_click_commands:
  4729. - '[console] eco give %player_name% 5'
  4730. - '[console] ci %player_name% COBBBLESTONE 5'
  4731. - '[refresh]'
  4732. right_click_requirement:
  4733. requirements:
  4734. stone:
  4735. type: has item
  4736. material: COBBLESTONE
  4737. amount: 5
  4738. '35':
  4739. material: STONE
  4740. amount: 5
  4741. slot: 34
  4742. priority: 2
  4743. display_name: '&d&lStone'
  4744. lore:
  4745. - ''
  4746. - '&5&l* &fBuy: &e$1,000 &7&o(You have $%vault_eco_balance_fixed%)'
  4747. - '&5&l* &fSell: &e$5'
  4748. - ''
  4749. - '&5&nLeft-click to buy!'
  4750. - '&5&nRight-click to sell!'
  4751. left_click_commands:
  4752. - '[console] eco take %player_name% 1000'
  4753. - '[console] minecraft:give %player_name% minecraft:stone 5'
  4754. - '[refresh]'
  4755. left_click_requirement:
  4756. requirements:
  4757. stone:
  4758. type: has money
  4759. amount: 1000
  4760. right_click_commands:
  4761. - '[console] eco give %player_name% 5'
  4762. - '[console] ci %player_name% STONE 5'
  4763. - '[refresh]'
  4764. right_click_requirement:
  4765. requirements:
  4766. stone:
  4767. type: has item
  4768. material: STONE
  4769. amount: 5
  4770. backpack:
  4771. menu_title: '&8» Backpack'
  4772. open_command: backpack
  4773. inventory_type: DROPPER
  4774. size: 9
  4775. items:
  4776. '2':
  4777. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmZhNzY0YjNjMWQ0NjJmODEyNDQ3OGZmNTQzYzc2MzNmYTE5YmFmOTkxM2VlMjI4NTEzZTgxYTM2MzNkIn19fQ==
  4778. data: 3
  4779. amount: 1
  4780. slot: 4
  4781. view_requirement:
  4782. requirements:
  4783. sss:
  4784. type: has money
  4785. amount: 50000
  4786. sss2:
  4787. type: javascript
  4788. expression: '"%statistic_days_played%" >= "1"'
  4789. sss3:
  4790. type: string equals
  4791. input: '%player_has_permission_cosmicvaults.cmd%'
  4792. output: 'no'
  4793. priority: 1
  4794. display_name: '&6» &e&lBACKPACK &6»'
  4795. lore:
  4796. - ''
  4797. - '&fBuy a backpack and expand'
  4798. - '&fyour available slots to'
  4799. - '&fkeep whatever you want!'
  4800. - ''
  4801. - '&d&lINFORMATION:'
  4802. - '&5&l* &fSlots: &e1-9'
  4803. - '&5&l* &fUpgrade: &e0'
  4804. - ''
  4805. - '&d&lREQUIREMENTS:'
  4806. - '&5&l* &fMoney: &e$35,000 &7&o(You have %vault_eco_balance_fixed%)'
  4807. - '&5&l* &fPlayed: &e1 day(s)'
  4808. - ''
  4809. - '&5&nClick to buy one!'
  4810. left_click_commands:
  4811. - '[console] kit backpack %player_name%'
  4812. - '[console] pex user %player_name% add cosmicvaults.cmd'
  4813. - '[console] pex user %player_name% add cosmicvaults.size.9'
  4814. - '[console] pex user %player_name% add cosmicvaults.amt.1'
  4815. - '[console] pex user %player_name% add backpack.1'
  4816. - '[console] eco take %player_name% 35000'
  4817. - '[console] titlemanager:tm amessage %player_name% &7\n&fEnjoy the backpack!<delay=40>'
  4818. - '[close]'
  4819. right_click_commands:
  4820. - '[console] kit backpack %player_name%'
  4821. - '[console] pex user %player_name% add cosmicvaults.cmd'
  4822. - '[console] pex user %player_name% add cosmicvaults.size.9'
  4823. - '[console] pex user %player_name% add cosmicvaults.amt.1'
  4824. - '[console] pex user %player_name% add backpack.1'
  4825. - '[console] eco take %player_name% 35000'
  4826. - '[console] titlemanager:tm amessage %player_name% &7\n&fEnjoy the backpack!<delay=40>'
  4827. - '[close]'
  4828. '3':
  4829. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmZhNzY0YjNjMWQ0NjJmODEyNDQ3OGZmNTQzYzc2MzNmYTE5YmFmOTkxM2VlMjI4NTEzZTgxYTM2MzNkIn19fQ==
  4830. data: 3
  4831. amount: 1
  4832. slot: 4
  4833. view_requirement:
  4834. requirements:
  4835. sss3:
  4836. type: string equals
  4837. input: '%player_has_permission_cosmicvaults.cmd%'
  4838. output: 'no'
  4839. priority: 2
  4840. display_name: '&6» &e&lBACKPACK &6»'
  4841. lore:
  4842. - ''
  4843. - '&fBuy a backpack and expand'
  4844. - '&fyour available slots to'
  4845. - '&fkeep whatever you want!'
  4846. - ''
  4847. - '&d&lINFORMATION:'
  4848. - '&5&l* &fSlots: &e1-9'
  4849. - '&5&l* &fUpgrade: &e0'
  4850. - ''
  4851. - '&d&lREQUIREMENTS:'
  4852. - '&5&l* &fMoney: &e$35,000 &7&o(You have %vault_eco_balance_fixed%)'
  4853. - '&5&l* &fPlayed: &e1 day(s)'
  4854. - ''
  4855. - '&c&oYou don''t have requirements enough!'
  4856. '4':
  4857. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmZhNzY0YjNjMWQ0NjJmODEyNDQ3OGZmNTQzYzc2MzNmYTE5YmFmOTkxM2VlMjI4NTEzZTgxYTM2MzNkIn19fQ==
  4858. data: 3
  4859. amount: 1
  4860. slot: 4
  4861. view_requirement:
  4862. requirements:
  4863. sss:
  4864. type: has money
  4865. amount: 100000
  4866. sss2:
  4867. type: javascript
  4868. expression: '"%statistic_days_played%" >= "3"'
  4869. sss3:
  4870. type: string equals
  4871. input: '%player_has_permission_backpack.1%'
  4872. output: 'yes'
  4873. priority: 3
  4874. display_name: '&6» &e&lBACKPACK &6»'
  4875. lore:
  4876. - ''
  4877. - '&fBuy a backpack and expand'
  4878. - '&fyour available slots to'
  4879. - '&fkeep whatever you want!'
  4880. - ''
  4881. - '&d&lINFORMATION:'
  4882. - '&5&l* &fSlots: &e1-18'
  4883. - '&5&l* &fUpgrade: &e1'
  4884. - ''
  4885. - '&d&lREQUIREMENTS:'
  4886. - '&5&l* &fMoney: &e$70,000 &7&o(You have %vault_eco_balance_fixed%)'
  4887. - '&5&l* &fPlayed: &e3 day(s)'
  4888. - ''
  4889. - '&5&nClick to buy one!'
  4890. left_click_commands:
  4891. - '[console] kit backpack %player_name%'
  4892. - '[console] pex user %player_name% remove backpack.1'
  4893. - '[console] pex user %player_name% add backpack.2'
  4894. - '[console] pex user %player_name% add cosmicvaults.size.18'
  4895. - '[console] eco take %player_name% 70000'
  4896. - '[console] titlemanager:tm message %player_name% &7/n&fEnjoy the backpack!<delay=40>'
  4897. - '[close]'
  4898. right_click_commands:
  4899. - '[console] kit backpack %player_name%'
  4900. - '[console] pex user %player_name% remove backpack.1'
  4901. - '[console] pex user %player_name% add backpack.2'
  4902. - '[console] pex user %player_name% add cosmicvaults.size.18'
  4903. - '[console] eco take %player_name% 70000'
  4904. - '[console] titlemanager:tm message %player_name% &7/n&fEnjoy the backpack!<delay=40>'
  4905. - '[close]'
  4906. '5':
  4907. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmZhNzY0YjNjMWQ0NjJmODEyNDQ3OGZmNTQzYzc2MzNmYTE5YmFmOTkxM2VlMjI4NTEzZTgxYTM2MzNkIn19fQ==
  4908. data: 3
  4909. amount: 1
  4910. slot: 4
  4911. view_requirement:
  4912. requirements:
  4913. sss3:
  4914. type: string equals
  4915. input: '%player_has_permission_backpack.1%'
  4916. output: 'yes'
  4917. priority: 4
  4918. display_name: '&6» &e&lBACKPACK &6»'
  4919. lore:
  4920. - ''
  4921. - '&fBuy a backpack and expand'
  4922. - '&fyour available slots to'
  4923. - '&fkeep whatever you want!'
  4924. - ''
  4925. - '&d&lINFORMATION:'
  4926. - '&5&l* &fSlots: &e1-18'
  4927. - '&5&l* &fUpgrade: &e1'
  4928. - ''
  4929. - '&d&lREQUIREMENTS:'
  4930. - '&5&l* &fMoney: &e$70,000 &7&o(You have %vault_eco_balance_fixed%)'
  4931. - '&5&l* &fPlayed: &e3 day(s)'
  4932. - ''
  4933. - '&c&oYou don''t have requirements enough!'
  4934. '6':
  4935. material: 160
  4936. display_name: '&f'
  4937. data: 15
  4938. slots:
  4939. - 0
  4940. - 1
  4941. - 2
  4942. - 3
  4943. - 5
  4944. - 6
  4945. - 7
  4946. - 8
  4947. Tokens:
  4948. open_command:
  4949. - edsefseewrwrwr
  4950. - tokens
  4951. update_interval: 1
  4952. menu_title: '&8» Token Shop'
  4953. size: 27
  4954. items:
  4955. '9':
  4956. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTU0OTQ3ZGU3ZjUyNTk4MjU1ZDZhZmVlOWQ3N2JlZmFkOWI0ZjI0YzBjNDY2M2QyOGJjZGY4YTY0NTdmMzQifX19
  4957. data: 3
  4958. slot: 11
  4959. priority: 1
  4960. display_name: '&d&lRank Vouchers'
  4961. lore:
  4962. - ''
  4963. - '&5&l* &fIf you do not wanna buy'
  4964. - '&fthe rank, then buy them'
  4965. - '&fusing tokens!'
  4966. - ''
  4967. - '&5&nClick to view!'
  4968. left_click_commands:
  4969. - '[openguimenu] tranks'
  4970. - '[refresh]'
  4971. right_click_commands:
  4972. - '[openguimenu] tranks'
  4973. - '[refresh]'
  4974. '99':
  4975. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTI2MGQ5NDA0ZDg4YjA2YmI4NGUwZjllMGM3N2JjYTY1MGUwNDVjYzRmNGNlY2NmYTZjOTlkMWRiZDg0OWFhOCJ9fX0=
  4976. data: 3
  4977. slot: 13
  4978. priority: 1
  4979. display_name: '&d&lCrates'
  4980. lore:
  4981. - ''
  4982. - '&5&l* &fYou do not have any crate'
  4983. - '&fkey and you do not wanna buy,'
  4984. - '&fthen, buy them using tokens!'
  4985. - ''
  4986. - '&5&nClick to view!'
  4987. left_click_commands:
  4988. - '[openguimenu] tcrates'
  4989. - '[refresh]'
  4990. right_click_commands:
  4991. - '[openguimenu] tcrates'
  4992. - '[refresh]'
  4993. '92':
  4994. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzAzZjRhYzc5OGQzYmY3ZmRlMzA1OGI2MjkxZDhjYzBlMGExN2NlYTFlMTBiZGE1MWYzMTliMzQwZmNiZmY5NCJ9fX0=
  4995. data: 3
  4996. slot: 15
  4997. priority: 1
  4998. display_name: '&d&lMiscellaneous'
  4999. lore:
  5000. - ''
  5001. - '&5&l* &fIf you need any item, surely'
  5002. - '&fyou will find them here! Buy'
  5003. - '&fthem using tokens!'
  5004. - ''
  5005. - '&5&nClick to view!'
  5006. left_click_commands:
  5007. - '[openguimenu] tmisc'
  5008. - '[refresh]'
  5009. right_click_commands:
  5010. - '[openguimenu] tmisc'
  5011. - '[refresh]'
  5012. '20':
  5013. material: 160
  5014. display_name: '&f'
  5015. data: 15
  5016. slots:
  5017. - 0
  5018. - 1
  5019. - 2
  5020. - 3
  5021. - 4
  5022. - 5
  5023. - 6
  5024. - 7
  5025. - 8
  5026. - 9
  5027. - 10
  5028. - 12
  5029. - 14
  5030. - 16
  5031. - 17
  5032. - 18
  5033. - 19
  5034. - 20
  5035. - 21
  5036. - 22
  5037. - 23
  5038. - 24
  5039. - 25
  5040. - 26
  5041. priority: 1
  5042. tranks:
  5043. open_command:
  5044. - dfsargewdetewf
  5045. update_interval: 1
  5046. menu_title: '&8» Rank vouchers'
  5047. size: 27
  5048. items:
  5049. '9':
  5050. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  5051. data: 3
  5052. slot: 10
  5053. priority: 1
  5054. display_name: '&d&lBack'
  5055. lore:
  5056. - ''
  5057. - '&5&nClick to go back!'
  5058. left_click_commands:
  5059. - '[openguimenu] Tokens'
  5060. - '[refresh]'
  5061. right_click_commands:
  5062. - '[openguimenu] Tokens'
  5063. - '[refresh]'
  5064. '99':
  5065. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  5066. data: 3
  5067. slot: 12
  5068. priority: 1
  5069. view_requirement:
  5070. requirements:
  5071. name:
  5072. type: '>='
  5073. input: '%tokenmanager_tokens%'
  5074. output: 300
  5075. display_name: '&a&lVIP Rank'
  5076. lore:
  5077. - ''
  5078. - '&5&l* &fObtain a &a&lVIP &frank'
  5079. - '&fvoucher without paying money!'
  5080. - ''
  5081. - '&d&lREQUIREMENTS:'
  5082. - '&5&l* &fTokens: &c300 &7&o(You have %tokenmanager_tokens%)'
  5083. - ''
  5084. - '&5&nClick to buy!'
  5085. left_click_commands:
  5086. - '[console] voucher give %player_name% RVIP'
  5087. - '[console] tm remove %player_name% 300'
  5088. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5089. the rank sucessfully!'
  5090. - '[close]'
  5091. - '[refresh]'
  5092. right_click_commands:
  5093. - '[console] voucher give %player_name% RVIP'
  5094. - '[console] tm remove %player_name% 300'
  5095. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5096. the rank sucessfully!'
  5097. - '[close]'
  5098. - '[refresh]'
  5099. '9923':
  5100. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  5101. data: 3
  5102. slot: 12
  5103. priority: 2
  5104. display_name: '&a&lVIP Rank'
  5105. lore:
  5106. - ''
  5107. - '&5&l* &fObtain a &a&lVIP &frank'
  5108. - '&fvoucher without paying money!'
  5109. - ''
  5110. - '&d&lREQUIREMENTS:'
  5111. - '&5&l* &fTokens: &c300 &7&o(You have %tokenmanager_tokens%)'
  5112. - ''
  5113. - '&c&oYou do not have enough tokens!'
  5114. '934':
  5115. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzFiMTg0NzY4ZDZmMTJlMzVhOWIyZTlkMmU5NmUxMTY2ODZiZmJmMGQ5MmZhYmJkNjJjODM1N2JhMjA1OTI3In19fQ==
  5116. data: 3
  5117. slot: 13
  5118. priority: 1
  5119. view_requirement:
  5120. requirements:
  5121. name:
  5122. type: '>='
  5123. input: '%tokenmanager_tokens%'
  5124. output: 500
  5125. display_name: '&b&lVIP+ Rank'
  5126. lore:
  5127. - ''
  5128. - '&5&l* &fObtain a &b&lVIP+ &frank'
  5129. - '&fvoucher without paying money!'
  5130. - ''
  5131. - '&d&lREQUIREMENTS:'
  5132. - '&5&l* &fTokens: &c500 &7&o(You have %tokenmanager_tokens%)'
  5133. - ''
  5134. - '&5&nClick to buy!'
  5135. left_click_commands:
  5136. - '[console] voucher give %player_name% RVIP+'
  5137. - '[console] tm remove %player_name% 500'
  5138. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5139. the rank sucessfully!'
  5140. - '[close]'
  5141. - '[refresh]'
  5142. right_click_commands:
  5143. - '[console] voucher give %player_name% RVIP+'
  5144. - '[console] tm remove %player_name% 500'
  5145. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5146. the rank sucessfully!'
  5147. - '[close]'
  5148. - '[refresh]'
  5149. '12312':
  5150. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzFiMTg0NzY4ZDZmMTJlMzVhOWIyZTlkMmU5NmUxMTY2ODZiZmJmMGQ5MmZhYmJkNjJjODM1N2JhMjA1OTI3In19fQ==
  5151. data: 3
  5152. slot: 13
  5153. priority: 2
  5154. display_name: '&b&lVIP+ Rank'
  5155. lore:
  5156. - ''
  5157. - '&5&l* &fObtain a &b&lVIP+ &frank'
  5158. - '&fvoucher without paying money!'
  5159. - ''
  5160. - '&d&lREQUIREMENTS:'
  5161. - '&5&l* &fTokens: &c500 &7&o(You have %tokenmanager_tokens%)'
  5162. - ''
  5163. - '&c&oYou do not have enough tokens!'
  5164. '20':
  5165. material: 160
  5166. display_name: '&f'
  5167. data: 15
  5168. slots:
  5169. - 0
  5170. - 1
  5171. - 2
  5172. - 3
  5173. - 4
  5174. - 5
  5175. - 6
  5176. - 7
  5177. - 8
  5178. - 9
  5179. - 11
  5180. - 17
  5181. - 18
  5182. - 19
  5183. - 20
  5184. - 21
  5185. - 22
  5186. - 23
  5187. - 24
  5188. - 25
  5189. - 26
  5190. priority: 1
  5191. tcrates:
  5192. open_command:
  5193. - dfsargewdetewffd
  5194. update_interval: 1
  5195. menu_title: '&8» Crates'
  5196. size: 27
  5197. items:
  5198. '9':
  5199. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  5200. data: 3
  5201. slot: 10
  5202. priority: 1
  5203. display_name: '&d&lBack'
  5204. lore:
  5205. - ''
  5206. - '&5&nClick to go back!'
  5207. left_click_commands:
  5208. - '[openguimenu] Tokens'
  5209. - '[refresh]'
  5210. right_click_commands:
  5211. - '[openguimenu] Tokens'
  5212. - '[refresh]'
  5213. '99':
  5214. material: 131
  5215. slot: 12
  5216. priority: 1
  5217. view_requirement:
  5218. requirements:
  5219. name:
  5220. type: '>='
  5221. input: '%tokenmanager_tokens%'
  5222. output: 40
  5223. display_name: '&d&lCommon Key'
  5224. lore:
  5225. - ''
  5226. - '&5&l* &fObtain an &d&lCOMMON &fkey'
  5227. - '&fwithout paying money!'
  5228. - ''
  5229. - '&d&lREQUIREMENTS:'
  5230. - '&5&l* &fTokens: &c40 &7&o(You have %tokenmanager_tokens%)'
  5231. - ''
  5232. - '&5&nClick to buy!'
  5233. left_click_commands:
  5234. - '[console] cc give physical mythical 1 %player_name%'
  5235. - '[console] tm remove %player_name% 40'
  5236. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5237. the key sucessfully!'
  5238. - '[close]'
  5239. - '[refresh]'
  5240. right_click_commands:
  5241. - '[console] cc give physical mythical 1 %player_name%'
  5242. - '[console] tm remove %player_name% 40'
  5243. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5244. the key sucessfully!'
  5245. - '[close]'
  5246. - '[refresh]'
  5247. '9923':
  5248. material: 131
  5249. slot: 12
  5250. priority: 2
  5251. display_name: '&d&lCommon Key'
  5252. lore:
  5253. - ''
  5254. - '&5&l* &fObtain an &d&lCOMMON &fkey'
  5255. - '&fwithout paying money!'
  5256. - ''
  5257. - '&d&lREQUIREMENTS:'
  5258. - '&5&l* &fTokens: &c40 &7&o(You have %tokenmanager_tokens%)'
  5259. - ''
  5260. - '&c&oYou do not have enough tokens!'
  5261. '934':
  5262. material: 131
  5263. slot: 13
  5264. priority: 1
  5265. view_requirement:
  5266. requirements:
  5267. name:
  5268. type: '>='
  5269. input: '%tokenmanager_tokens%'
  5270. output: 50
  5271. display_name: '&c&lRare Key'
  5272. lore:
  5273. - ''
  5274. - '&5&l* &fObtain an &c&lRARE &fkey'
  5275. - '&fwithout paying money!'
  5276. - ''
  5277. - '&d&lREQUIREMENTS:'
  5278. - '&5&l* &fTokens: &c50 &7&o(You have %tokenmanager_tokens%)'
  5279. - ''
  5280. - '&5&nClick to buy!'
  5281. left_click_commands:
  5282. - '[console] cc give physical elemental 1 %player_name%'
  5283. - '[console] tm remove %player_name% 50'
  5284. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5285. the key sucessfully!'
  5286. - '[close]'
  5287. - '[refresh]'
  5288. right_click_commands:
  5289. - '[console] cc give physical elemental 1 %player_name%'
  5290. - '[console] tm remove %player_name% 50'
  5291. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5292. the key sucessfully!'
  5293. - '[close]'
  5294. - '[refresh]'
  5295. '12312':
  5296. material: 131
  5297. slot: 13
  5298. priority: 2
  5299. display_name: '&c&lRare Key'
  5300. lore:
  5301. - ''
  5302. - '&5&l* &fObtain an &c&lRARE &fkey'
  5303. - '&fwithout paying money!'
  5304. - ''
  5305. - '&d&lREQUIREMENTS:'
  5306. - '&5&l* &fTokens: &c50 &7&o(You have %tokenmanager_tokens%)'
  5307. - ''
  5308. - '&c&oYou do not have enough tokens!'
  5309. '9234':
  5310. material: 131
  5311. slot: 14
  5312. priority: 1
  5313. view_requirement:
  5314. requirements:
  5315. name:
  5316. type: '>='
  5317. input: '%tokenmanager_tokens%'
  5318. output: 60
  5319. display_name: '&d&lLegendary Key'
  5320. lore:
  5321. - ''
  5322. - '&5&l* &fObtain an &e&lLEGENDARY &fkey'
  5323. - '&fwithout paying money!'
  5324. - ''
  5325. - '&d&lREQUIREMENTS:'
  5326. - '&5&l* &fTokens: &c60 &7&o(You have %tokenmanager_tokens%)'
  5327. - ''
  5328. - '&5&nClick to buy!'
  5329. left_click_commands:
  5330. - '[console] cc give physical guardian 1 %player_name%'
  5331. - '[console] tm remove %player_name% 60'
  5332. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5333. the key sucessfully!'
  5334. - '[close]'
  5335. - '[refresh]'
  5336. right_click_commands:
  5337. - '[console] cc give physical guardian 1 %player_name%'
  5338. - '[console] tm remove %player_name% 60'
  5339. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5340. the key sucessfully!'
  5341. - '[close]'
  5342. - '[refresh]'
  5343. '122312':
  5344. material: 131
  5345. slot: 14
  5346. priority: 2
  5347. display_name: '&d&lLegendary Key'
  5348. lore:
  5349. - ''
  5350. - '&5&l* &fObtain an &e&lLEGENDARY &fkey'
  5351. - '&fwithout paying money!'
  5352. - ''
  5353. - '&d&lREQUIREMENTS:'
  5354. - '&5&l* &fTokens: &c60 &7&o(You have %tokenmanager_tokens%)'
  5355. - ''
  5356. - '&c&oYou do not have enough tokens!'
  5357. '20':
  5358. material: 160
  5359. display_name: '&f'
  5360. data: 15
  5361. slots:
  5362. - 0
  5363. - 1
  5364. - 2
  5365. - 3
  5366. - 4
  5367. - 5
  5368. - 6
  5369. - 7
  5370. - 8
  5371. - 9
  5372. - 11
  5373. - 17
  5374. - 18
  5375. - 19
  5376. - 20
  5377. - 21
  5378. - 22
  5379. - 23
  5380. - 24
  5381. - 25
  5382. - 26
  5383. priority: 1
  5384. tmisc:
  5385. open_command:
  5386. - drfseargewdetewffd
  5387. update_interval: 1
  5388. menu_title: '&8» Miscellaneous'
  5389. size: 27
  5390. items:
  5391. '9':
  5392. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  5393. data: 3
  5394. slot: 10
  5395. priority: 1
  5396. display_name: '&d&lBack'
  5397. lore:
  5398. - ''
  5399. - '&5&nClick to go back!'
  5400. left_click_commands:
  5401. - '[openguimenu] Tokens'
  5402. - '[refresh]'
  5403. right_click_commands:
  5404. - '[openguimenu] Tokens'
  5405. - '[refresh]'
  5406. '99':
  5407. material: 378
  5408. slot: 12
  5409. priority: 1
  5410. view_requirement:
  5411. requirements:
  5412. name:
  5413. type: '>='
  5414. input: '%tokenmanager_tokens%'
  5415. output: 35
  5416. display_name: '&d&lProtection Orb'
  5417. lore:
  5418. - ''
  5419. - '&5&l* &fProtects an item from'
  5420. - '&fbeing destroyed due to a failed'
  5421. - '&fenchantment star.'
  5422. - ''
  5423. - '&d&lREQUIREMENTS:'
  5424. - '&5&l* &fTokens: &c35 &7&o(You have %tokenmanager_tokens%)'
  5425. - ''
  5426. - '&5&nClick to buy!'
  5427. left_click_commands:
  5428. - '[console] ce scroll white 1 %player_name%'
  5429. - '[console] tm remove %player_name% 35'
  5430. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5431. the item sucessfully!'
  5432. - '[close]'
  5433. - '[refresh]'
  5434. right_click_commands:
  5435. - '[console] ce scroll white 1 %player_name%'
  5436. - '[console] tm remove %player_name% 35'
  5437. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5438. the item sucessfully!'
  5439. - '[close]'
  5440. - '[refresh]'
  5441. '9923':
  5442. material: 378
  5443. slot: 12
  5444. priority: 2
  5445. display_name: '&d&lProtection Orb'
  5446. lore:
  5447. - ''
  5448. - '&5&l* &fProtects an item from'
  5449. - '&fbeing destroyed due to a failed'
  5450. - '&fenchantment star.'
  5451. - ''
  5452. - '&d&lREQUIREMENTS:'
  5453. - '&5&l* &fTokens: &c35 &7&o(You have %tokenmanager_tokens%)'
  5454. - ''
  5455. - '&c&oYou do not have enough tokens!'
  5456. '934':
  5457. material: 421
  5458. slot: 13
  5459. priority: 1
  5460. view_requirement:
  5461. requirements:
  5462. name:
  5463. type: '>='
  5464. input: '%tokenmanager_tokens%'
  5465. output: 35
  5466. display_name: '&d&lRename Tag'
  5467. lore:
  5468. - ''
  5469. - '&5&l* &fRename and customize'
  5470. - '&fyour equipment.'
  5471. - ''
  5472. - '&d&lREQUIREMENTS:'
  5473. - '&5&l* &fTokens: &c35 &7&o(You have %tokenmanager_tokens%)'
  5474. - ''
  5475. - '&5&nClick to buy!'
  5476. left_click_commands:
  5477. - '[console] rt 1 %player_name%'
  5478. - '[console] tm remove %player_name% 35'
  5479. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5480. the item sucessfully!'
  5481. - '[close]'
  5482. - '[refresh]'
  5483. right_click_commands:
  5484. - '[console] rt 1 %player_name%'
  5485. - '[console] tm remove %player_name% 35'
  5486. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5487. the item sucessfully!'
  5488. - '[close]'
  5489. - '[refresh]'
  5490. '12312':
  5491. material: 421
  5492. slot: 13
  5493. priority: 2
  5494. display_name: '&d&lRename Tag'
  5495. lore:
  5496. - ''
  5497. - '&5&l* &fRename and customize'
  5498. - '&fyour equipment.'
  5499. - ''
  5500. - '&d&lREQUIREMENTS:'
  5501. - '&5&l* &fTokens: &c35 &7&o(You have %tokenmanager_tokens%)'
  5502. - ''
  5503. - '&c&oYou do not have enough tokens!'
  5504. '9234':
  5505. material: PAPER
  5506. slot: 14
  5507. priority: 1
  5508. view_requirement:
  5509. requirements:
  5510. name:
  5511. type: '>='
  5512. input: '%tokenmanager_tokens%'
  5513. output: 35
  5514. display_name: '&d&lBlack Scroll'
  5515. lore:
  5516. - ''
  5517. - '&5&l* &fRemoves a random enchantment'
  5518. - '&ffrom an item and converts it'
  5519. - '&finto a &e95% &fsuccess book.'
  5520. - ''
  5521. - '&d&lREQUIREMENTS:'
  5522. - '&5&l* &fTokens: &c35 &7&o(You have %tokenmanager_tokens%)'
  5523. - ''
  5524. - '&5&nClick to buy!'
  5525. left_click_commands:
  5526. - '[console] ce scroll black 1 %player_name%'
  5527. - '[console] tm remove %player_name% 35'
  5528. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5529. the item sucessfully!'
  5530. - '[close]'
  5531. - '[refresh]'
  5532. right_click_commands:
  5533. - '[console] ce scroll black 1 %player_name%'
  5534. - '[console] tm remove %player_name% 35'
  5535. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5536. the item sucessfully!'
  5537. - '[close]'
  5538. - '[refresh]'
  5539. '122312':
  5540. material: PAPER
  5541. slot: 14
  5542. priority: 2
  5543. display_name: '&d&lBlack Scroll'
  5544. lore:
  5545. - ''
  5546. - '&5&l* &fRemoves a random enchantment'
  5547. - '&ffrom an item and converts it'
  5548. - '&finto a &e95% &fsuccess book.'
  5549. - ''
  5550. - '&d&lREQUIREMENTS:'
  5551. - '&5&l* &fTokens: &c35 &7&o(You have %tokenmanager_tokens%)'
  5552. - ''
  5553. - '&c&oYou do not have enough tokens!'
  5554. '353':
  5555. material: 286
  5556. slot: 15
  5557. priority: 1
  5558. view_requirement:
  5559. requirements:
  5560. name:
  5561. type: '>='
  5562. input: '%tokenmanager_tokens%'
  5563. output: 10
  5564. display_name: '&d&lSell Wand (30 uses)'
  5565. lore:
  5566. - ''
  5567. - '&5&l* &fSells items automatically'
  5568. - '&flinking to any chest!'
  5569. - ''
  5570. - '&d&lREQUIREMENTS:'
  5571. - '&5&l* &fTokens: &c10 &7&o(You have %tokenmanager_tokens%)'
  5572. - ''
  5573. - '&5&nClick to buy!'
  5574. left_click_commands:
  5575. - '[console] sellwands give %player_name% 30'
  5576. - '[console] tm remove %player_name% 10'
  5577. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5578. the item sucessfully!'
  5579. - '[close]'
  5580. - '[refresh]'
  5581. right_click_commands:
  5582. - '[console] sellwands give %player_name% 30'
  5583. - '[console] tm remove %player_name% 10'
  5584. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5585. the item sucessfully!'
  5586. - '[close]'
  5587. - '[refresh]'
  5588. '343':
  5589. material: 286
  5590. slot: 15
  5591. priority: 2
  5592. display_name: '&d&lSell Wand (30 uses)'
  5593. lore:
  5594. - ''
  5595. - '&5&l* &fSells items automatically'
  5596. - '&flinking to any chest!'
  5597. - ''
  5598. - '&d&lREQUIREMENTS:'
  5599. - '&5&l* &fTokens: &c10 &7&o(You have %tokenmanager_tokens%)'
  5600. - ''
  5601. - '&c&oYou do not have enough tokens!'
  5602. '3532':
  5603. material: 286
  5604. slot: 16
  5605. priority: 1
  5606. view_requirement:
  5607. requirements:
  5608. name:
  5609. type: '>='
  5610. input: '%tokenmanager_tokens%'
  5611. output: 15
  5612. display_name: '&d&lSell Wand (50 uses)'
  5613. lore:
  5614. - ''
  5615. - '&5&l* &fSells items automatically'
  5616. - '&flinking to any chest!'
  5617. - ''
  5618. - '&d&lREQUIREMENTS:'
  5619. - '&5&l* &fTokens: &c15 &7&o(You have %tokenmanager_tokens%)'
  5620. - ''
  5621. - '&5&nClick to buy!'
  5622. left_click_commands:
  5623. - '[console] sellwands give %player_name% 50'
  5624. - '[console] tm remove %player_name% 15'
  5625. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5626. the item sucessfully!'
  5627. - '[close]'
  5628. - '[refresh]'
  5629. right_click_commands:
  5630. - '[console] sellwands give %player_name% 50'
  5631. - '[console] tm remove %player_name% 15'
  5632. - '[console] titlemanager:tm message %player_name% &7\n&fYou have claimed
  5633. the item sucessfully!'
  5634. - '[close]'
  5635. - '[refresh]'
  5636. '3432':
  5637. material: 286
  5638. slot: 16
  5639. priority: 2
  5640. display_name: '&d&lSell Wand (50 uses)'
  5641. lore:
  5642. - ''
  5643. - '&5&l* &fSells items automatically'
  5644. - '&flinking to any chest!'
  5645. - ''
  5646. - '&d&lREQUIREMENTS:'
  5647. - '&5&l* &fTokens: &c15 &7&o(You have %tokenmanager_tokens%)'
  5648. - ''
  5649. - '&c&oYou do not have enough tokens!'
  5650. '20':
  5651. material: 160
  5652. display_name: '&f'
  5653. data: 15
  5654. slots:
  5655. - 0
  5656. - 1
  5657. - 2
  5658. - 3
  5659. - 4
  5660. - 5
  5661. - 6
  5662. - 7
  5663. - 8
  5664. - 9
  5665. - 11
  5666. - 17
  5667. - 18
  5668. - 19
  5669. - 20
  5670. - 21
  5671. - 22
  5672. - 23
  5673. - 24
  5674. - 25
  5675. - 26
  5676. priority: 1
  5677. chatcolor:
  5678. open_command:
  5679. - chatcolor
  5680. - color
  5681. update_interval: 1
  5682. menu_title: '&8» Chat Color'
  5683. size: 36
  5684. items:
  5685. '99':
  5686. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDIxNmNhYWFhYTNmNjE2NzkzZDE4ZTk0M2NkM2E0NjMzMTM0M2JiNmU3NzQyZTVjZDc4MWZmZmVkZDYwNGIifX19
  5687. data: 3
  5688. slot: 13
  5689. priority: 1
  5690. view_requirement:
  5691. requirements:
  5692. permission:
  5693. type: has permission
  5694. permission: chatcolor.lightblue
  5695. display_name: '&b&lLight Blue'
  5696. lore:
  5697. - ''
  5698. - '&fChange your chat color to'
  5699. - '&blight blue &fand stands out'
  5700. - '&fabove the others!'
  5701. - ''
  5702. - '&d&lREQUIREMENTS:'
  5703. - '&5&l* &fRank: &b&lVIP+ &7and higher'
  5704. - ''
  5705. - '&5&nClick to select!'
  5706. left_click_commands:
  5707. - '[console] chatcolor set %player_name% aqua'
  5708. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5709. &b&lLight Blue&f!'
  5710. - '[close]'
  5711. - '[refresh]'
  5712. right_click_commands:
  5713. - '[console] chatcolor set %player_name% aqua'
  5714. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5715. &b&lLight Blue&f!'
  5716. - '[close]'
  5717. - '[refresh]'
  5718. '9923':
  5719. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDIxNmNhYWFhYTNmNjE2NzkzZDE4ZTk0M2NkM2E0NjMzMTM0M2JiNmU3NzQyZTVjZDc4MWZmZmVkZDYwNGIifX19
  5720. data: 3
  5721. slot: 13
  5722. priority: 2
  5723. display_name: '&b&lLight Blue'
  5724. lore:
  5725. - ''
  5726. - '&fChange your chat color to'
  5727. - '&blight blue &fand stands out'
  5728. - '&fabove the others!'
  5729. - ''
  5730. - '&d&lREQUIREMENTS:'
  5731. - '&5&l* &fRank: &b&lVIP+ &7and higher'
  5732. - ''
  5733. - '&c&oYou do not have rank enough!'
  5734. '919':
  5735. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY2YTVjOTg5MjhmYTVkNGI1ZDViOGVmYjQ5MDE1NWI0ZGRhMzk1NmJjYWE5MzcxMTc3ODE0NTMyY2ZjIn19fQ==
  5736. data: 3
  5737. slot: 11
  5738. priority: 1
  5739. view_requirement:
  5740. requirements:
  5741. permission:
  5742. type: has permission
  5743. permission: chatcolor.white
  5744. display_name: '&f&lWhite'
  5745. lore:
  5746. - ''
  5747. - '&fChange your chat color to'
  5748. - '&fwhite &fand stands out'
  5749. - '&fabove the others!'
  5750. - ''
  5751. - '&d&lREQUIREMENTS:'
  5752. - '&5&l* &fRank: &a&lVIP &7and higher'
  5753. - ''
  5754. - '&5&nClick to select!'
  5755. left_click_commands:
  5756. - '[console] chatcolor set %player_name% white'
  5757. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5758. &f&lWhite&f!'
  5759. - '[close]'
  5760. - '[refresh]'
  5761. right_click_commands:
  5762. - '[console] chatcolor set %player_name% white'
  5763. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5764. &f&lWhite&f!'
  5765. - '[close]'
  5766. - '[refresh]'
  5767. '91923':
  5768. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY2YTVjOTg5MjhmYTVkNGI1ZDViOGVmYjQ5MDE1NWI0ZGRhMzk1NmJjYWE5MzcxMTc3ODE0NTMyY2ZjIn19fQ==
  5769. data: 3
  5770. slot: 11
  5771. priority: 2
  5772. display_name: '&f&lWhite'
  5773. lore:
  5774. - ''
  5775. - '&fChange your chat color to'
  5776. - '&fwhite &fand stands out'
  5777. - '&fabove the others!'
  5778. - ''
  5779. - '&d&lREQUIREMENTS:'
  5780. - '&5&l* &fRank: &a&lVIP &7and higher'
  5781. - ''
  5782. - '&c&oYou do not have rank enough!'
  5783. '929':
  5784. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjhmZmYyMmM2ZTY1NDZkMGQ4ZWI3Zjk3NjMzOTg0MDdkZDJhYjgwZjc0ZmUzZDE2YjEwYTk4M2VjYWYzNDdlIn19fQ==
  5785. data: 3
  5786. slot: 12
  5787. priority: 1
  5788. view_requirement:
  5789. requirements:
  5790. permission:
  5791. type: has permission
  5792. permission: chatcolor.lightgreen
  5793. display_name: '&a&lLight Green'
  5794. lore:
  5795. - ''
  5796. - '&fChange your chat color to'
  5797. - '&alight green &fand stands out'
  5798. - '&fabove the others!'
  5799. - ''
  5800. - '&d&lREQUIREMENTS:'
  5801. - '&5&l* &fRank: &a&lVIP &7and higher'
  5802. - ''
  5803. - '&5&nClick to select!'
  5804. left_click_commands:
  5805. - '[console] chatcolor set %player_name% green'
  5806. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5807. &a&lGreen&f!'
  5808. - '[close]'
  5809. - '[refresh]'
  5810. right_click_commands:
  5811. - '[console] chatcolor set %player_name% green'
  5812. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5813. &a&lGreen&f!'
  5814. - '[close]'
  5815. - '[refresh]'
  5816. '92923':
  5817. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjhmZmYyMmM2ZTY1NDZkMGQ4ZWI3Zjk3NjMzOTg0MDdkZDJhYjgwZjc0ZmUzZDE2YjEwYTk4M2VjYWYzNDdlIn19fQ==
  5818. data: 3
  5819. slot: 12
  5820. priority: 2
  5821. display_name: '&a&lLight Green'
  5822. lore:
  5823. - ''
  5824. - '&fChange your chat color to'
  5825. - '&alight green &fand stands out'
  5826. - '&fabove the others!'
  5827. - ''
  5828. - '&d&lREQUIREMENTS:'
  5829. - '&5&l* &fRank: &a&lVIP &7and higher'
  5830. - ''
  5831. - '&c&oYou do not have rank enough!'
  5832. '939':
  5833. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmExMWE1MWY2NTc2Mjg1ZjlmOWM4YWE3ZGVkMWVlMTJjMjAyZjE1ZDc5MWM3MzJiNTg2ZGRhZTcwNjRiMCJ9fX0=
  5834. data: 3
  5835. slot: 14
  5836. priority: 1
  5837. view_requirement:
  5838. requirements:
  5839. permission:
  5840. type: has permission
  5841. permission: chatcolor.pink
  5842. display_name: '&d&lPink'
  5843. lore:
  5844. - ''
  5845. - '&fChange your chat color to'
  5846. - '&dpink &fand stands out'
  5847. - '&fabove the others!'
  5848. - ''
  5849. - '&d&lREQUIREMENTS:'
  5850. - '&5&l* &fRank: &d&lVIP++ &7and higher'
  5851. - ''
  5852. - '&5&nClick to select!'
  5853. left_click_commands:
  5854. - '[console] chatcolor set %player_name% light_purple'
  5855. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5856. &d&lPink&f!'
  5857. - '[close]'
  5858. - '[refresh]'
  5859. right_click_commands:
  5860. - '[console] chatcolor set %player_name% light_purple'
  5861. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5862. &d&lPink&f!'
  5863. - '[close]'
  5864. - '[refresh]'
  5865. '93923':
  5866. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmExMWE1MWY2NTc2Mjg1ZjlmOWM4YWE3ZGVkMWVlMTJjMjAyZjE1ZDc5MWM3MzJiNTg2ZGRhZTcwNjRiMCJ9fX0=
  5867. data: 3
  5868. slot: 14
  5869. priority: 2
  5870. display_name: '&d&lPink'
  5871. lore:
  5872. - ''
  5873. - '&fChange your chat color to'
  5874. - '&dpink &fand stands out'
  5875. - '&fabove the others!'
  5876. - ''
  5877. - '&d&lREQUIREMENTS:'
  5878. - '&5&l* &fRank: &d&lVIP++ &7and higher'
  5879. - ''
  5880. - '&c&oYou do not have rank enough!'
  5881. '9529':
  5882. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTM2ZDcxODQzYzY3ZjU0ZTEzYmE2MTg3ZGE0OGQ4ZjI0OThjMmFmOGEyMmY4NTY4NjQxNzg2MmY2MWFlMTYxIn19fQ==
  5883. data: 3
  5884. slot: 15
  5885. priority: 1
  5886. view_requirement:
  5887. requirements:
  5888. permission:
  5889. type: has permission
  5890. permission: chatcolor.red
  5891. display_name: '&c&lRed'
  5892. lore:
  5893. - ''
  5894. - '&fChange your chat color to'
  5895. - '&cred &fand stands out'
  5896. - '&fabove the others!'
  5897. - ''
  5898. - '&d&lREQUIREMENTS:'
  5899. - '&5&l* &fRank: &c&lVIP+++ &7and higher'
  5900. - ''
  5901. - '&5&nClick to select!'
  5902. left_click_commands:
  5903. - '[console] chatcolor set %player_name% red'
  5904. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5905. &c&lRed&f!'
  5906. - '[close]'
  5907. - '[refresh]'
  5908. right_click_commands:
  5909. - '[console] chatcolor set %player_name% red'
  5910. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5911. &c&lRed&f!'
  5912. - '[close]'
  5913. - '[refresh]'
  5914. '959223':
  5915. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTM2ZDcxODQzYzY3ZjU0ZTEzYmE2MTg3ZGE0OGQ4ZjI0OThjMmFmOGEyMmY4NTY4NjQxNzg2MmY2MWFlMTYxIn19fQ==
  5916. data: 3
  5917. slot: 15
  5918. priority: 2
  5919. display_name: '&c&lRed'
  5920. lore:
  5921. - ''
  5922. - '&fChange your chat color to'
  5923. - '&cred &fand stands out'
  5924. - '&fabove the others!'
  5925. - ''
  5926. - '&d&lREQUIREMENTS:'
  5927. - '&5&l* &fRank: &c&lVIP+++ &7and higher'
  5928. - ''
  5929. - '&c&oYou do not have rank enough!'
  5930. '19529':
  5931. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGY0ZGMzYzM3NTNiZjViMGI3ZjA4MWNkYjQ5YjgzZDM3NDI4YTEyZTQxODdmNjM0NmRlYzA2ZmFjNTRjZSJ9fX0=
  5932. data: 3
  5933. slot: 21
  5934. priority: 1
  5935. view_requirement:
  5936. requirements:
  5937. permission:
  5938. type: has permission
  5939. permission: chatcolor.darkred
  5940. display_name: '&4&lDark Red'
  5941. lore:
  5942. - ''
  5943. - '&fChange your chat color to'
  5944. - '&4dark red &fand stands out'
  5945. - '&fabove the others!'
  5946. - ''
  5947. - '&d&lREQUIREMENTS:'
  5948. - '&5&l* &fRank: &e&lVIP++++'
  5949. - ''
  5950. - '&5&nClick to select!'
  5951. left_click_commands:
  5952. - '[console] chatcolor set %player_name% dark_red'
  5953. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5954. &4&lDark Red&f!'
  5955. - '[close]'
  5956. - '[refresh]'
  5957. right_click_commands:
  5958. - '[console] chatcolor set %player_name% dark_red'
  5959. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5960. &4&lDark Red&f!'
  5961. - '[close]'
  5962. - '[refresh]'
  5963. '1959223':
  5964. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGY0ZGMzYzM3NTNiZjViMGI3ZjA4MWNkYjQ5YjgzZDM3NDI4YTEyZTQxODdmNjM0NmRlYzA2ZmFjNTRjZSJ9fX0=
  5965. data: 3
  5966. slot: 21
  5967. priority: 2
  5968. display_name: '&4&lDark Red'
  5969. lore:
  5970. - ''
  5971. - '&fChange your chat color to'
  5972. - '&4dark red &fand stands out'
  5973. - '&fabove the others!'
  5974. - ''
  5975. - '&d&lREQUIREMENTS:'
  5976. - '&5&l* &fRank: &e&lVIP++++'
  5977. - ''
  5978. - '&c&oYou do not have rank enough!'
  5979. '192529':
  5980. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzY0MTY4MmY0MzYwNmM1YzlhZDI2YmM3ZWE4YTMwZWU0NzU0N2M5ZGZkM2M2Y2RhNDllMWMxYTI4MTZjZjBiYSJ9fX0=
  5981. data: 3
  5982. slot: 22
  5983. priority: 1
  5984. view_requirement:
  5985. requirements:
  5986. permission:
  5987. type: has permission
  5988. permission: chatcolor.yellow
  5989. display_name: '&d&lYellow'
  5990. lore:
  5991. - ''
  5992. - '&fChange your chat color to'
  5993. - '&eyellow &fand stands out'
  5994. - '&fabove the others!'
  5995. - ''
  5996. - '&d&lREQUIREMENTS:'
  5997. - '&5&l* &fRank: &e&lVIP++++'
  5998. - ''
  5999. - '&5&nClick to select!'
  6000. left_click_commands:
  6001. - '[console] chatcolor set %player_name% yellow'
  6002. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  6003. &e&lYellow&f!'
  6004. - '[close]'
  6005. - '[refresh]'
  6006. right_click_commands:
  6007. - '[console] chatcolor set %player_name% yellow'
  6008. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  6009. &e&lYellow&f!'
  6010. - '[close]'
  6011. - '[refresh]'
  6012. '19259223':
  6013. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzY0MTY4MmY0MzYwNmM1YzlhZDI2YmM3ZWE4YTMwZWU0NzU0N2M5ZGZkM2M2Y2RhNDllMWMxYTI4MTZjZjBiYSJ9fX0=
  6014. data: 3
  6015. slot: 22
  6016. priority: 2
  6017. display_name: '&d&lYellow'
  6018. lore:
  6019. - ''
  6020. - '&fChange your chat color to'
  6021. - '&eyellow &fand stands out'
  6022. - '&fabove the others!'
  6023. - ''
  6024. - '&d&lREQUIREMENTS:'
  6025. - '&5&l* &fRank: &e&lVIP++++'
  6026. - ''
  6027. - '&c&oYou do not have rank enough!'
  6028. '1925329':
  6029. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmM0ODg2ZWYzNjJiMmM4MjNhNmFhNjUyNDFjNWM3ZGU3MWM5NGQ4ZWM1ODIyYzUxZTk2OTc2NjQxZjUzZWEzNSJ9fX0=
  6030. data: 3
  6031. slot: 23
  6032. priority: 1
  6033. view_requirement:
  6034. requirements:
  6035. permission:
  6036. type: has permission
  6037. permission: chatcolor.gold
  6038. display_name: '&6&lGold'
  6039. lore:
  6040. - ''
  6041. - '&fChange your chat color to'
  6042. - '&6gold &fand stands out'
  6043. - '&fabove the others!'
  6044. - ''
  6045. - '&d&lREQUIREMENTS:'
  6046. - '&5&l* &fRank: &e&lVIP++++'
  6047. - ''
  6048. - '&5&nClick to select!'
  6049. left_click_commands:
  6050. - '[console] chatcolor set %player_name% gold'
  6051. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  6052. &6&lGold&f!'
  6053. - '[close]'
  6054. - '[refresh]'
  6055. right_click_commands:
  6056. - '[console] chatcolor set %player_name% gold'
  6057. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  6058. &6&lGold&f!'
  6059. - '[close]'
  6060. - '[refresh]'
  6061. '192592323':
  6062. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmM0ODg2ZWYzNjJiMmM4MjNhNmFhNjUyNDFjNWM3ZGU3MWM5NGQ4ZWM1ODIyYzUxZTk2OTc2NjQxZjUzZWEzNSJ9fX0=
  6063. data: 3
  6064. slot: 23
  6065. priority: 2
  6066. display_name: '&6&lGold'
  6067. lore:
  6068. - ''
  6069. - '&fChange your chat color to'
  6070. - '&6gold &fand stands out'
  6071. - '&fabove the others!'
  6072. - ''
  6073. - '&d&lREQUIREMENTS:'
  6074. - '&5&l* &fRank: &e&lVIP++++'
  6075. - ''
  6076. - '&c&oYou do not have rank enough!'
  6077. '1925923223':
  6078. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2VkMWFiYTczZjYzOWY0YmM0MmJkNDgxOTZjNzE1MTk3YmUyNzEyYzNiOTYyYzk3ZWJmOWU5ZWQ4ZWZhMDI1In19fQ==
  6079. data: 3
  6080. slot: 4
  6081. priority: 1
  6082. display_name: '&d&lReset color'
  6083. lore:
  6084. - ''
  6085. - '&fReset your chat color to'
  6086. - '&7&lGRAY &fif you are'
  6087. - '&fbored of colors!'
  6088. - ''
  6089. - '&5&nClick to reset!'
  6090. left_click_commands:
  6091. - '[console] chatcolor reset %player_name%'
  6092. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  6093. color!'
  6094. - '[close]'
  6095. - '[refresh]'
  6096. right_click_commands:
  6097. - '[console] chatcolor reset %player_name%'
  6098. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  6099. color!'
  6100. - '[close]'
  6101. - '[refresh]'
  6102. '20':
  6103. material: 160
  6104. display_name: '&f'
  6105. data: 15
  6106. slots:
  6107. - 0
  6108. - 1
  6109. - 2
  6110. - 3
  6111. - 5
  6112. - 6
  6113. - 7
  6114. - 8
  6115. - 9
  6116. - 10
  6117. - 16
  6118. - 17
  6119. - 18
  6120. - 19
  6121. - 20
  6122. - 24
  6123. - 25
  6124. - 26
  6125. - 27
  6126. - 28
  6127. - 29
  6128. - 30
  6129. - 31
  6130. - 32
  6131. - 33
  6132. - 34
  6133. - 35
  6134. priority: 1
  6135. actionsmember:
  6136. open_command:
  6137. - dfsargewdeetewffasde
  6138. update_interval: 1
  6139. menu_title: '&8» Role Actions'
  6140. size: 36
  6141. items:
  6142. '9':
  6143. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  6144. data: 3
  6145. slot: 10
  6146. priority: 1
  6147. display_name: '&d&lBack'
  6148. lore:
  6149. - ''
  6150. - '&5&nClick to go back!'
  6151. left_click_commands:
  6152. - '[openguimenu] island'
  6153. - '[refresh]'
  6154. right_click_commands:
  6155. - '[openguimenu] island'
  6156. - '[refresh]'
  6157. '9911':
  6158. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6159. data: 3
  6160. slot: 12
  6161. priority: 1
  6162. view_requirement:
  6163. requirements:
  6164. music:
  6165. type: string equals
  6166. input: '%javascript_permissionscore%'
  6167. output: 'yes'
  6168. display_name: '&d&lSet home'
  6169. lore:
  6170. - ''
  6171. - '&fSet island''s home main'
  6172. - '&fhome or others to your'
  6173. - '&fcurrent location!'
  6174. - ''
  6175. - '&d&lREQUIREMENTS:'
  6176. - '&5&l* &fIsland Rank: &7Member'
  6177. - ''
  6178. - '&5&nLeft-click to set main home!'
  6179. - '&5&nRight-click to set a home!'
  6180. - '&c&oYou will only be able to'
  6181. - '&c&oset more homes if you'
  6182. - '&c&oupgrades the island homes.'
  6183. left_click_commands:
  6184. - '[player] is sethome'
  6185. - '[console] titlemanager:tm message %player_name% &7\n&fYou have set the
  6186. home successfully!'
  6187. - '[close]'
  6188. - '[refresh]'
  6189. right_click_commands:
  6190. - '[player] is sethome <-a Home name>'
  6191. - '[close]'
  6192. - '[refresh]'
  6193. 934fsdf1:
  6194. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6195. data: 3
  6196. slot: 13
  6197. priority: 1
  6198. view_requirement:
  6199. requirements:
  6200. music:
  6201. type: string equals
  6202. input: '%askyblock_owner%'
  6203. output: '%player_name%'
  6204. display_name: '&d&lInvite player'
  6205. lore:
  6206. - ''
  6207. - '&fInvite some players to your'
  6208. - '&fisland to make it better.'
  6209. - '&fAnd meet new people!'
  6210. - ''
  6211. - '&d&lREQUIREMENTS:'
  6212. - '&5&l* &fRank: &cOwner'
  6213. - ''
  6214. - '&5&nClick to invite players!'
  6215. left_click_commands:
  6216. - '[player] is invite <-a Player Name>'
  6217. - '[close]'
  6218. - '[refresh]'
  6219. right_click_commands:
  6220. - '[player] is invite <-a Player Name>'
  6221. - '[close]'
  6222. - '[refresh]'
  6223. 1235ffds121:
  6224. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6225. data: 3
  6226. slot: 13
  6227. priority: 2
  6228. display_name: '&d&lInvite player'
  6229. lore:
  6230. - ''
  6231. - '&fInvite some players to your'
  6232. - '&fisland to make it better.'
  6233. - '&fAnd meet new people!'
  6234. - ''
  6235. - '&d&lREQUIREMENTS:'
  6236. - '&5&l* &fRank: &cOwner'
  6237. - ''
  6238. - '&c&oYou do not have island rank enough!'
  6239. '92123242':
  6240. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6241. data: 3
  6242. slot: 14
  6243. priority: 1
  6244. view_requirement:
  6245. requirements:
  6246. music:
  6247. type: string equals
  6248. input: '%askyblock_owner%'
  6249. output: '%player_name%'
  6250. display_name: '&d&lKick player'
  6251. lore:
  6252. - ''
  6253. - '&fKick any player from your'
  6254. - '&fisland team if he bothers you!'
  6255. - ''
  6256. - '&d&lREQUIREMENTS:'
  6257. - '&5&l* &fRank: &cOwner'
  6258. - ''
  6259. - '&5&nClick to kick members!'
  6260. left_click_commands:
  6261. - '[player] is kick <-a Player Name>'
  6262. - '[close]'
  6263. - '[refresh]'
  6264. right_click_commands:
  6265. - '[player] is kick <-a Player Name>'
  6266. - '[close]'
  6267. - '[refresh]'
  6268. 122d2312:
  6269. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6270. data: 3
  6271. slot: 14
  6272. priority: 2
  6273. display_name: '&d&lKick player'
  6274. lore:
  6275. - ''
  6276. - '&fKick any player from your'
  6277. - '&fisland team if he bothers you!'
  6278. - ''
  6279. - '&d&lREQUIREMENTS:'
  6280. - '&5&l* &fRank: &7Member'
  6281. - ''
  6282. - '&c&oYou do not have island rank enough!'
  6283. 9213sa42:
  6284. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6285. data: 3
  6286. slot: 15
  6287. priority: 1
  6288. view_requirement:
  6289. requirements:
  6290. music:
  6291. type: string equals
  6292. input: '%javascript_permissionscore%'
  6293. output: 'yes'
  6294. display_name: '&d&lExpel players'
  6295. lore:
  6296. - ''
  6297. - '&fExpel players from your island'
  6298. - '&fonly if they are in your island'
  6299. - '&fat this moment!'
  6300. - ''
  6301. - '&d&lREQUIREMENTS:'
  6302. - '&5&l* &fRank: &7Member'
  6303. - ''
  6304. - '&5&nClick to expel players!'
  6305. left_click_commands:
  6306. - '[player] is expel <-a Player Name>'
  6307. - '[close]'
  6308. - '[refresh]'
  6309. right_click_commands:
  6310. - '[player] is expel <-a Player Name>'
  6311. - '[close]'
  6312. - '[refresh]'
  6313. '9253242':
  6314. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6315. data: 3
  6316. slot: 16
  6317. priority: 1
  6318. view_requirement:
  6319. requirements:
  6320. music:
  6321. type: string equals
  6322. input: '%askyblock_owner%'
  6323. output: '%player_name%'
  6324. display_name: '&d&lChange leader'
  6325. lore:
  6326. - ''
  6327. - '&fMake another player leader of'
  6328. - '&fyour island if you want to'
  6329. - '&fleave!'
  6330. - ''
  6331. - '&d&lREQUIREMENTS:'
  6332. - '&5&l* &fRank: &cOwner'
  6333. - ''
  6334. - '&5&nClick to change leader!'
  6335. left_click_commands:
  6336. - '[player] is makeleader <-a Player Name>'
  6337. - '[close]'
  6338. - '[refresh]'
  6339. right_click_commands:
  6340. - '[player] is makeleader <-a Player Name>'
  6341. - '[close]'
  6342. - '[refresh]'
  6343. '12522312':
  6344. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6345. data: 3
  6346. slot: 16
  6347. priority: 2
  6348. display_name: '&d&lChange leader'
  6349. lore:
  6350. - ''
  6351. - '&fMake another player leader of'
  6352. - '&fyour island if you want to'
  6353. - '&fleave!'
  6354. - ''
  6355. - '&d&lREQUIREMENTS:'
  6356. - '&5&l* &fRank: &cOwner'
  6357. - ''
  6358. - '&c&oYou do not have island rank enough!'
  6359. 92532as42:
  6360. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6361. data: 3
  6362. slot: 21
  6363. priority: 1
  6364. view_requirement:
  6365. requirements:
  6366. music:
  6367. type: string equals
  6368. input: '%askyblock_owner%'
  6369. output: '%player_name%'
  6370. display_name: '&d&lChange biome'
  6371. lore:
  6372. - ''
  6373. - '&fChange the current biome'
  6374. - '&fof your island to another'
  6375. - '&fone!'
  6376. - ''
  6377. - '&d&lREQUIREMENTS:'
  6378. - '&5&l* &fRank: &cOwner'
  6379. - ''
  6380. - '&5&nClick to change biome!'
  6381. left_click_commands:
  6382. - '[player] is biomes'
  6383. - '[close]'
  6384. - '[refresh]'
  6385. right_click_commands:
  6386. - '[player] is biomes'
  6387. - '[close]'
  6388. - '[refresh]'
  6389. 1252as2312:
  6390. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6391. data: 3
  6392. slot: 21
  6393. priority: 2
  6394. display_name: '&d&lChange biome'
  6395. lore:
  6396. - ''
  6397. - '&fChange the current biome'
  6398. - '&fof your island to another'
  6399. - '&fone!'
  6400. - ''
  6401. - '&d&lREQUIREMENTS:'
  6402. - '&5&l* &fRank: &cOwner'
  6403. - ''
  6404. - '&c&oYou do not have island rank enough!'
  6405. '213124':
  6406. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6407. data: 3
  6408. slot: 22
  6409. priority: 1
  6410. view_requirement:
  6411. requirements:
  6412. music:
  6413. type: string equals
  6414. input: '%askyblock_owner%'
  6415. output: '%player_name%'
  6416. display_name: '&d&lReset island'
  6417. lore:
  6418. - ''
  6419. - '&fReset and reload your current'
  6420. - '&fisland to start again!'
  6421. - '&7&o(Only if you have resets available)'
  6422. - ''
  6423. - '&d&lREQUIREMENTS:'
  6424. - '&5&l* &fRank: &cOwner'
  6425. - ''
  6426. - '&5&nLeft-click to reset island!'
  6427. - '&5&nRight-click to buy resets!'
  6428. left_click_commands:
  6429. - '[player] is reset'
  6430. - '[close]'
  6431. - '[refresh]'
  6432. right_click_commands:
  6433. - '[player] is reset'
  6434. - '[close]'
  6435. - '[refresh]'
  6436. '2131524':
  6437. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6438. data: 3
  6439. slot: 22
  6440. priority: 2
  6441. display_name: '&d&lReset island'
  6442. lore:
  6443. - ''
  6444. - '&fReset and reload your current'
  6445. - '&fisland to start again!'
  6446. - '&7&o(Only if you have resets available)'
  6447. - ''
  6448. - '&d&lREQUIREMENTS:'
  6449. - '&5&l* &fRank: &cOwner'
  6450. - ''
  6451. - '&c&oYou do not have island rank enough!'
  6452. '2131246':
  6453. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6454. data: 3
  6455. slot: 23
  6456. priority: 1
  6457. view_requirement:
  6458. requirements:
  6459. music:
  6460. type: string equals
  6461. input: '%askyblock_owner%'
  6462. output: '%player_name%'
  6463. display_name: '&d&lChange name'
  6464. lore:
  6465. - ''
  6466. - '&fChange the current island'
  6467. - '&fname showed to the players!'
  6468. - ''
  6469. - '&d&lREQUIREMENTS:'
  6470. - '&5&l* &fRank: &cOwner'
  6471. - ''
  6472. - '&5&nClick to change name!'
  6473. left_click_commands:
  6474. - '[player] is name <-a Island Name>'
  6475. - '[close]'
  6476. - '[refresh]'
  6477. right_click_commands:
  6478. - '[player] is name <-a Island Name>'
  6479. - '[close]'
  6480. - '[refresh]'
  6481. '213166765246':
  6482. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6483. data: 3
  6484. slot: 23
  6485. priority: 2
  6486. display_name: '&d&lChange name'
  6487. lore:
  6488. - ''
  6489. - '&fChange the current island'
  6490. - '&fname showed to the players!'
  6491. - ''
  6492. - '&d&lREQUIREMENTS:'
  6493. - '&5&l* &fRank: &cOwner'
  6494. - ''
  6495. - '&c&oYou do not have island rank enough!'
  6496. '213112384246':
  6497. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6498. data: 3
  6499. slot: 24
  6500. priority: 1
  6501. view_requirement:
  6502. requirements:
  6503. music:
  6504. type: string equals
  6505. input: '%askyblock_owner%'
  6506. output: '%player_name%'
  6507. display_name: '&d&lChange border'
  6508. lore:
  6509. - ''
  6510. - '&fChange the current island'
  6511. - '&fborder color to a'
  6512. - '&fexclusive one!'
  6513. - ''
  6514. - '&d&lINFORMATION:'
  6515. - '&5&l* &fColor: &7%isborder_color%'
  6516. - ''
  6517. - '&d&lREQUIREMENTS:'
  6518. - '&5&l* &fRank: &cOwner'
  6519. - ''
  6520. - '&5&nClick to change color!'
  6521. left_click_commands:
  6522. - '[openguimenu] isborders'
  6523. - '[close]'
  6524. - '[refresh]'
  6525. right_click_commands:
  6526. - '[openguimenu] isborders'
  6527. - '[close]'
  6528. - '[refresh]'
  6529. '213152146':
  6530. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  6531. data: 3
  6532. slot: 24
  6533. priority: 2
  6534. display_name: '&d&lChange border'
  6535. lore:
  6536. - ''
  6537. - '&fChange the current island'
  6538. - '&fborder color to a'
  6539. - '&fexclusive one!'
  6540. - ''
  6541. - '&d&lINFORMATION:'
  6542. - '&5&l* &fColor: &7%isborder_color%'
  6543. - ''
  6544. - '&d&lREQUIREMENTS:'
  6545. - '&5&l* &fRank: &cOwner'
  6546. - ''
  6547. - '&c&oYou do not have island rank enough!'
  6548. '20':
  6549. material: 160
  6550. display_name: '&f'
  6551. data: 15
  6552. slots:
  6553. - 0
  6554. - 1
  6555. - 2
  6556. - 3
  6557. - 4
  6558. - 5
  6559. - 6
  6560. - 7
  6561. - 8
  6562. - 9
  6563. - 11
  6564. - 17
  6565. - 18
  6566. - 19
  6567. - 20
  6568. - 26
  6569. - 27
  6570. - 28
  6571. - 29
  6572. - 30
  6573. - 31
  6574. - 32
  6575. - 33
  6576. - 34
  6577. - 35
  6578. - 36
  6579. priority: 1
  6580. spawners:
  6581. menu_title: '&8» Spawners'
  6582. inventory_type: INVENTORY
  6583. open_command:
  6584. - spawners
  6585. size: 36
  6586. items:
  6587. '215':
  6588. material: BOOK
  6589. slot: 31
  6590. priority: 2
  6591. display_name: '&d&lCategories'
  6592. lore:
  6593. - ''
  6594. - '&fReturn to the main page'
  6595. - '&fof categories to buy/sell'
  6596. - '&fother items!'
  6597. - ''
  6598. - '&5&nClick to back!'
  6599. left_click_commands:
  6600. - '[openguimenu] shop'
  6601. right_click_commands:
  6602. - '[openguimenu] shop'
  6603. '20':
  6604. material: 160
  6605. display_name: '&f'
  6606. data: 15
  6607. slots:
  6608. - 27
  6609. - 28
  6610. - 29
  6611. - 30
  6612. - 32
  6613. - 33
  6614. - 34
  6615. - 35
  6616. priority: 1
  6617. '21':
  6618. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmY0ODFmNzczNDdmZTU5YzA4MzY2NWM5ZWZiYjQ5MDcxZDQ5M2VhMjAyNzQ1NGFlZTg3NzM1ZDYzYmYzYiJ9fX0=
  6619. data: 3
  6620. slot: 0
  6621. display_name: '&eSheep Spawner'
  6622. lore:
  6623. - ''
  6624. - '&5&l* &fBuy: &e$400000 &7&o(You have $%vault_eco_balance_fixed%)'
  6625. - ''
  6626. - '&5&nLeft-click to buy!'
  6627. left_click_commands:
  6628. - '[console] us givespawner %player_name% sheep 1'
  6629. - '[console] eco take %player_name% 400000'
  6630. - '[refresh]'
  6631. left_click_requirement:
  6632. requirements:
  6633. stone:
  6634. type: has money
  6635. amount: 400000
  6636. deny_commands:
  6637. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6638. '22':
  6639. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTI3YWQ1MWRkNzczYjcyZGNhMWMxM2U2ZjM1NDdhODMxODFhYWQ5MTE2NTI4Mjk5OWJiZGYxM2EzYjNjOSJ9fX0=
  6640. data: 3
  6641. slot: 1
  6642. display_name: '&ePig Spawner'
  6643. lore:
  6644. - ''
  6645. - '&5&l* &fBuy: &e$900000 &7&o(You have $%vault_eco_balance_fixed%)'
  6646. - ''
  6647. - '&5&nLeft-click to buy!'
  6648. left_click_commands:
  6649. - '[console] us givespawner %player_name% pig 1'
  6650. - '[console] eco take %player_name% 900000'
  6651. - '[refresh]'
  6652. left_click_requirement:
  6653. requirements:
  6654. stone:
  6655. type: has money
  6656. amount: 900000
  6657. deny_commands:
  6658. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6659. '23':
  6660. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTQxOWYxNWZmNTRkYWU1ZDA0MGY5YjlkOGViMmE4OTg5ZTY3NjcxMDkyMmEwY2ExNjRkYTYxM2NhNjFlOSJ9fX0=
  6661. data: 3
  6662. slot: 2
  6663. display_name: '&eCow Spawner'
  6664. lore:
  6665. - ''
  6666. - '&5&l* &fBuy: &e$1250000 &7&o(You have $%vault_eco_balance_fixed%)'
  6667. - ''
  6668. - '&5&nLeft-click to buy!'
  6669. left_click_commands:
  6670. - '[console] us givespawner %player_name% cow 1'
  6671. - '[console] eco take %player_name% 1250000'
  6672. - '[refresh]'
  6673. left_click_requirement:
  6674. requirements:
  6675. stone:
  6676. type: has money
  6677. amount: 1250000
  6678. deny_commands:
  6679. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6680. '24':
  6681. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDQyOWZmMWQyMDE1Y2IxMTM5ODQ3MWJiMmY4OTVmN2I0YzNjY2VjMjAxZTRhZDdhODZmZjI0Yjc0NDg3OGMifX19
  6682. data: 3
  6683. slot: 3
  6684. display_name: '&eChicken Spawner'
  6685. lore:
  6686. - ''
  6687. - '&5&l* &fBuy: &e$300000 &7&o(You have $%vault_eco_balance_fixed%)'
  6688. - ''
  6689. - '&5&nLeft-click to buy!'
  6690. left_click_commands:
  6691. - '[console] us givespawner %player_name% chicken 1'
  6692. - '[console] eco take %player_name% 300000'
  6693. - '[refresh]'
  6694. left_click_requirement:
  6695. requirements:
  6696. stone:
  6697. type: has money
  6698. amount: 300000
  6699. deny_commands:
  6700. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6701. '25':
  6702. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDFiM2IwMmUzNmFlOTg1MGRmMjVhYTA5YzJjYTVhMTdiOWM2NjE2Y2U1M2UwYjE0MWFkMzYwYjZjNjdjIn19fQ==
  6703. data: 3
  6704. slot: 4
  6705. display_name: '&eMoshroom Spawner'
  6706. lore:
  6707. - ''
  6708. - '&5&l* &fBuy: &e$1000000 &7&o(You have $%vault_eco_balance_fixed%)'
  6709. - ''
  6710. - '&5&nLeft-click to buy!'
  6711. left_click_commands:
  6712. - '[console] us givespawner %player_name% moshroom 1'
  6713. - '[console] eco take %player_name% 1000000'
  6714. - '[refresh]'
  6715. left_click_requirement:
  6716. requirements:
  6717. stone:
  6718. type: has money
  6719. amount: 1000000
  6720. deny_commands:
  6721. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6722. '26':
  6723. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWM2ZDVhYmJmNjhjY2IyMzg2YmYxNmFmMjVhYzM4ZDhiNzdiYjBlMDQzMTUyNDYxYmQ5N2YzZjYzMGRiYjhiYyJ9fX0=
  6724. data: 3
  6725. slot: 5
  6726. display_name: '&eHorse Spawner'
  6727. lore:
  6728. - ''
  6729. - '&5&l* &fBuy: &e$550000 &7&o(You have $%vault_eco_balance_fixed%)'
  6730. - ''
  6731. - '&5&nLeft-click to buy!'
  6732. left_click_commands:
  6733. - '[console] us givespawner %player_name% horse 1'
  6734. - '[console] eco take %player_name% 550000'
  6735. - '[refresh]'
  6736. left_click_requirement:
  6737. requirements:
  6738. stone:
  6739. type: has money
  6740. amount: 550000
  6741. deny_commands:
  6742. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6743. '27':
  6744. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGI1MjJmNmQ3N2MwNjk2YzlkMWYyYWQ0OWJmYTNjYjgyMDVhNWU2MjNhZjFjNDIwYmQ3NDBkYzQ3MTkxNGU5NyJ9fX0=
  6745. data: 3
  6746. slot: 6
  6747. display_name: '&eDonkey Spawner'
  6748. lore:
  6749. - ''
  6750. - '&5&l* &fBuy: &e$500000 &7&o(You have $%vault_eco_balance_fixed%)'
  6751. - ''
  6752. - '&5&nLeft-click to buy!'
  6753. left_click_commands:
  6754. - '[console] us givespawner %player_name% donkey 1'
  6755. - '[console] eco take %player_name% 500000'
  6756. - '[refresh]'
  6757. left_click_requirement:
  6758. requirements:
  6759. stone:
  6760. type: has money
  6761. amount: 500000
  6762. deny_commands:
  6763. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6764. '28':
  6765. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTRhZDc4ZjdhZGE3YzYzNzY0NDllZjk0OWM5Yzg3ZmRlY2U4ODJiNWEyZjE0Y2ZiZjhlYWM2ZmVhNjU3ZjRjNyJ9fX0=
  6766. data: 3
  6767. slot: 7
  6768. display_name: '&eMule Spawner'
  6769. lore:
  6770. - ''
  6771. - '&5&l* &fBuy: &e$550000 &7&o(You have $%vault_eco_balance_fixed%)'
  6772. - ''
  6773. - '&5&nLeft-click to buy!'
  6774. left_click_commands:
  6775. - '[console] us givespawner %player_name% mule 1'
  6776. - '[console] eco take %player_name% 550000'
  6777. - '[refresh]'
  6778. left_click_requirement:
  6779. requirements:
  6780. stone:
  6781. type: has money
  6782. amount: 550000
  6783. deny_commands:
  6784. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6785. '29':
  6786. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjNlMDZlZDg4MDkyNDNlMzE3MzkzZjYxNjI2NzliMmMxZmU2OTExZWRhMmQzMGNiOTljZmM4MmQzNDdjYiJ9fX0=
  6787. data: 3
  6788. slot: 8
  6789. display_name: '&eRabbit Spawner'
  6790. lore:
  6791. - ''
  6792. - '&5&l* &fBuy: &e$225000 &7&o(You have $%vault_eco_balance_fixed%)'
  6793. - ''
  6794. - '&5&nLeft-click to buy!'
  6795. left_click_commands:
  6796. - '[console] us givespawner %player_name% rabbit 1'
  6797. - '[console] eco take %player_name% 225000'
  6798. - '[refresh]'
  6799. left_click_requirement:
  6800. requirements:
  6801. stone:
  6802. type: has money
  6803. amount: 225000
  6804. deny_commands:
  6805. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6806. '30':
  6807. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDM5OWM5NzNkNjQ5NmQxZDI1ODQ5MmMyOGQ0Yzk1OTU2YWMzYTI1Mzc2MmJmMTVmNzY0NGFmMWY1NzI4ZGQifX19
  6808. data: 3
  6809. slot: 9
  6810. display_name: '&eWolf Spawner'
  6811. lore:
  6812. - ''
  6813. - '&5&l* &fBuy: &e$225000 &7&o(You have $%vault_eco_balance_fixed%)'
  6814. - ''
  6815. - '&5&nLeft-click to buy!'
  6816. left_click_commands:
  6817. - '[console] us givespawner %player_name% wolf 1'
  6818. - '[console] eco take %player_name% 225000'
  6819. - '[refresh]'
  6820. left_click_requirement:
  6821. requirements:
  6822. stone:
  6823. type: has money
  6824. amount: 225000
  6825. deny_commands:
  6826. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6827. '31':
  6828. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzU3OWE3NDNiNjZiZDBiNGQ1NTk4OThlZDFiOTg1N2E0OWYxMTI3ZDlkMjM3YmVkM2RjOTdiY2ViOTM3OWE1In19fQ==
  6829. data: 3
  6830. slot: 10
  6831. display_name: '&eOcelot Spawner'
  6832. lore:
  6833. - ''
  6834. - '&5&l* &fBuy: &e$225000 &7&o(You have $%vault_eco_balance_fixed%)'
  6835. - ''
  6836. - '&5&nLeft-click to buy!'
  6837. left_click_commands:
  6838. - '[console] us givespawner %player_name% ocelot 1'
  6839. - '[console] eco take %player_name% 225000'
  6840. - '[refresh]'
  6841. left_click_requirement:
  6842. requirements:
  6843. stone:
  6844. type: has money
  6845. amount: 225000
  6846. deny_commands:
  6847. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6848. '32':
  6849. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDQ5MDg4ODYxZmMxZTE0YjYwNWE1MTU0ZDc5ZmE3ZGQ2NWUwNDFhNWM2MzVkMjQ3NDRiM2UxNTI1MzUifX19
  6850. data: 3
  6851. slot: 11
  6852. display_name: '&eSquid Spawner'
  6853. lore:
  6854. - ''
  6855. - '&5&l* &fBuy: &e$500000 &7&o(You have $%vault_eco_balance_fixed%)'
  6856. - ''
  6857. - '&5&nLeft-click to buy!'
  6858. left_click_commands:
  6859. - '[console] us givespawner %player_name% squid 1'
  6860. - '[console] eco take %player_name% 500000'
  6861. - '[refresh]'
  6862. left_click_requirement:
  6863. requirements:
  6864. stone:
  6865. type: has money
  6866. amount: 500000
  6867. deny_commands:
  6868. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6869. '33':
  6870. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTNjOGFhM2ZkZTI5NWZhOWY5YzI3ZjczNGJkYmFiMTFkMzNhMmU0M2U4NTVhY2NkNzQ2NTM1MjM3NzQxM2IifX19
  6871. data: 3
  6872. slot: 12
  6873. display_name: '&eBat Spawner'
  6874. lore:
  6875. - ''
  6876. - '&5&l* &fBuy: &e$200000 &7&o(You have $%vault_eco_balance_fixed%)'
  6877. - ''
  6878. - '&5&nLeft-click to buy!'
  6879. left_click_commands:
  6880. - '[console] us givespawner %player_name% bat 1'
  6881. - '[console] eco take %player_name% 200000'
  6882. - '[refresh]'
  6883. left_click_requirement:
  6884. requirements:
  6885. stone:
  6886. type: has money
  6887. amount: 200000
  6888. deny_commands:
  6889. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6890. '34':
  6891. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzdmODQ0YmZlYTI1NDI5ZDQ1ZTFmY2Y5NmVmNjY1NGRmYWFhNmZjOTAyZGMxYjZiNjhjMGFiYzEzNDM0NDcifX19
  6892. data: 3
  6893. slot: 13
  6894. display_name: '&eZombie Spawner'
  6895. lore:
  6896. - ''
  6897. - '&5&l* &fBuy: &e$825000 &7&o(You have $%vault_eco_balance_fixed%)'
  6898. - ''
  6899. - '&5&nLeft-click to buy!'
  6900. left_click_commands:
  6901. - '[console] us givespawner %player_name% zombie 1'
  6902. - '[console] eco take %player_name% 825000'
  6903. - '[refresh]'
  6904. left_click_requirement:
  6905. requirements:
  6906. stone:
  6907. type: has money
  6908. amount: 825000
  6909. deny_commands:
  6910. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6911. '35':
  6912. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc3MDU1Y2FkYWNiYjBmOGYzNWMxZDE4YWNjMmVkODZlMGJjYzZkNzNkZGE3MWU0YzU5ZjdlYTI4YjdiMjdiNiJ9fX0=
  6913. data: 3
  6914. slot: 14
  6915. display_name: '&eSkeleton Spawner'
  6916. lore:
  6917. - ''
  6918. - '&5&l* &fBuy: &e$785000 &7&o(You have $%vault_eco_balance_fixed%)'
  6919. - ''
  6920. - '&5&nLeft-click to buy!'
  6921. left_click_commands:
  6922. - '[console] us givespawner %player_name% skeleton 1'
  6923. - '[console] eco take %player_name% 785000'
  6924. - '[refresh]'
  6925. left_click_requirement:
  6926. requirements:
  6927. stone:
  6928. type: has money
  6929. amount: 785000
  6930. deny_commands:
  6931. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6932. '36':
  6933. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWQ1OWFhNzhjYjdlOWI2Y2E2ZmVlNDEyMTMyOTA1OWRkNjhhZmRkYzBjOGI1M2E5MDZiNzk1Mzk5NGU4YTc2In19fQ==
  6934. data: 3
  6935. slot: 15
  6936. display_name: '&eSpider Spawner'
  6937. lore:
  6938. - ''
  6939. - '&5&l* &fBuy: &e$850000 &7&o(You have $%vault_eco_balance_fixed%)'
  6940. - ''
  6941. - '&5&nLeft-click to buy!'
  6942. left_click_commands:
  6943. - '[console] us givespawner %player_name% spider 1'
  6944. - '[console] eco take %player_name% 850000'
  6945. - '[refresh]'
  6946. left_click_requirement:
  6947. requirements:
  6948. stone:
  6949. type: has money
  6950. amount: 850000
  6951. deny_commands:
  6952. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6953. '37':
  6954. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTY2MTcxMzEyNTBlNTc4MzMzYTQ0MWZkZjRhNWI4YzYyMTYzNjQwYTlkMDZjZDY3ZGI4OTAzMWQwM2FjY2Y2In19fQ==
  6955. data: 3
  6956. slot: 16
  6957. display_name: '&eCave Spider Spawner'
  6958. lore:
  6959. - ''
  6960. - '&5&l* &fBuy: &e$850000 &7&o(You have $%vault_eco_balance_fixed%)'
  6961. - ''
  6962. - '&5&nLeft-click to buy!'
  6963. left_click_commands:
  6964. - '[console] us givespawner %player_name% cave_spider 1'
  6965. - '[console] eco take %player_name% 850000'
  6966. - '[refresh]'
  6967. left_click_requirement:
  6968. requirements:
  6969. stone:
  6970. type: has money
  6971. amount: 850000
  6972. deny_commands:
  6973. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6974. '38':
  6975. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODdjNjNkOTA3OWI3NWY5MDk3OTc4M2NmMDdjYTcyNmY2NWUzMDI0NDE1YWM2MjJhN2M5MDZjZDI1MDgyYWYifX19
  6976. data: 3
  6977. slot: 17
  6978. display_name: '&eCreeper Spawner'
  6979. lore:
  6980. - ''
  6981. - '&5&l* &fBuy: &e$1000000 &7&o(You have $%vault_eco_balance_fixed%)'
  6982. - ''
  6983. - '&5&nLeft-click to buy!'
  6984. left_click_commands:
  6985. - '[console] us givespawner %player_name% creeper 1'
  6986. - '[console] eco take %player_name% 1000000'
  6987. - '[refresh]'
  6988. left_click_requirement:
  6989. requirements:
  6990. stone:
  6991. type: has money
  6992. amount: 1000000
  6993. deny_commands:
  6994. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  6995. '39':
  6996. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTMzMGFmMTdmODUxMmVkM2I0OWU3OGJjYTdlZjJkODNmMmRjMWU1OThhOGNiNTQyZWNjM2I2YmVjZWU5ZjU3In19fQ==
  6997. data: 3
  6998. slot: 18
  6999. display_name: '&eSlime Spawner'
  7000. lore:
  7001. - ''
  7002. - '&5&l* &fBuy: &e$1000000 &7&o(You have $%vault_eco_balance_fixed%)'
  7003. - ''
  7004. - '&5&nLeft-click to buy!'
  7005. left_click_commands:
  7006. - '[console] us givespawner %player_name% slime 1'
  7007. - '[console] eco take %player_name% 1000000'
  7008. - '[refresh]'
  7009. left_click_requirement:
  7010. requirements:
  7011. stone:
  7012. type: has money
  7013. amount: 1000000
  7014. deny_commands:
  7015. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7016. '40':
  7017. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTE4NTY1N2MzOGFjZGQ4Zjk1ZTFkMmNkMTExNWJiMGYxMTEzOWFkMmIzY2U0NDIyNjdlNjk3MDZkOTE2ZSJ9fX0=
  7018. data: 3
  7019. slot: 19
  7020. display_name: '&eMagma Cube Spawner'
  7021. lore:
  7022. - ''
  7023. - '&5&l* &fBuy: &e$1250000 &7&o(You have $%vault_eco_balance_fixed%)'
  7024. - ''
  7025. - '&5&nLeft-click to buy!'
  7026. left_click_commands:
  7027. - '[console] us givespawner %player_name% magma_cube 1'
  7028. - '[console] eco take %player_name% 1250000'
  7029. - '[refresh]'
  7030. left_click_requirement:
  7031. requirements:
  7032. stone:
  7033. type: has money
  7034. amount: 1250000
  7035. deny_commands:
  7036. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7037. '41':
  7038. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDA2MzEwYTg5NTJiMjY1YzZlNmJlZDQzNDgyMzlkZGVhOGU1NDgyYzhjNjhiZTZmZmY5ODFiYTgwNTZiZjJlIn19fQ==
  7039. data: 3
  7040. slot: 20
  7041. display_name: '&eSilverfish Spawner'
  7042. lore:
  7043. - ''
  7044. - '&5&l* &fBuy: &e$175000 &7&o(You have $%vault_eco_balance_fixed%)'
  7045. - ''
  7046. - '&5&nLeft-click to buy!'
  7047. left_click_commands:
  7048. - '[console] us givespawner %player_name% silverfish 1'
  7049. - '[console] eco take %player_name% 175000'
  7050. - '[refresh]'
  7051. left_click_requirement:
  7052. requirements:
  7053. stone:
  7054. type: has money
  7055. amount: 175000
  7056. deny_commands:
  7057. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7058. '42':
  7059. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2JlYWM1MDFlOTdkYjFjYzAzNTI4N2QwNjhhOGViNTM4ZTU1ZWY4MDJmNWNjYTI1NjgzOTMzYTI0MzEzNmMifX19
  7060. data: 3
  7061. slot: 21
  7062. display_name: '&eEndermite Spawner'
  7063. lore:
  7064. - ''
  7065. - '&5&l* &fBuy: &e$175000 &7&o(You have $%vault_eco_balance_fixed%)'
  7066. - ''
  7067. - '&5&nLeft-click to buy!'
  7068. left_click_commands:
  7069. - '[console] us givespawner %player_name% endermite 1'
  7070. - '[console] eco take %player_name% 175000'
  7071. - '[refresh]'
  7072. left_click_requirement:
  7073. requirements:
  7074. stone:
  7075. type: has money
  7076. amount: 175000
  7077. deny_commands:
  7078. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7079. '43':
  7080. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWZiZGNlZWY3NzNkOTU5YjQ5ZGRkOTYxNWY0MjY5YzE3NmUyMzE1NGQ0NTc1MjY2NzQyOGRjNGUzZmQ0ZCJ9fX0=
  7081. data: 3
  7082. slot: 22
  7083. display_name: '&eWitch Spawner'
  7084. lore:
  7085. - ''
  7086. - '&5&l* &fBuy: &e$800000 &7&o(You have $%vault_eco_balance_fixed%)'
  7087. - ''
  7088. - '&5&nLeft-click to buy!'
  7089. left_click_commands:
  7090. - '[console] us givespawner %player_name% witch 1'
  7091. - '[console] eco take %player_name% 800000'
  7092. - '[refresh]'
  7093. left_click_requirement:
  7094. requirements:
  7095. stone:
  7096. type: has money
  7097. amount: 800000
  7098. deny_commands:
  7099. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7100. '44':
  7101. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzdjMGQwMTBkZDBlNTEyZmZlYTEwOGQ3YzVmZTY5ZDU3NmMzMWVjMjY2Yzg4NGI1MWVjMGIyOGNjNDU3In19fQ==
  7102. data: 3
  7103. slot: 23
  7104. display_name: '&eEnderman Spawner'
  7105. lore:
  7106. - ''
  7107. - '&5&l* &fBuy: &e$1000000 &7&o(You have $%vault_eco_balance_fixed%)'
  7108. - ''
  7109. - '&5&nLeft-click to buy!'
  7110. left_click_commands:
  7111. - '[console] us givespawner %player_name% enderman 1'
  7112. - '[console] eco take %player_name% 1000000'
  7113. - '[refresh]'
  7114. left_click_requirement:
  7115. requirements:
  7116. stone:
  7117. type: has money
  7118. amount: 1000000
  7119. deny_commands:
  7120. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7121. '45':
  7122. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTMzYWNhZTZlMDc1YTU3OGNjZmM3ZGMyZDVhMTVkYmNjZmE4ZjU5YzYwOWY5NzAzODg5ZWY1NGM3NDJjNTYifX19
  7123. data: 3
  7124. slot: 24
  7125. display_name: '&eBlaze Spawner'
  7126. lore:
  7127. - ''
  7128. - '&5&l* &fBuy: &e$1250000 &7&o(You have $%vault_eco_balance_fixed%)'
  7129. - ''
  7130. - '&5&nLeft-click to buy!'
  7131. left_click_commands:
  7132. - '[console] us givespawner %player_name% blaze 1'
  7133. - '[console] eco take %player_name% 1250000'
  7134. - '[refresh]'
  7135. left_click_requirement:
  7136. requirements:
  7137. stone:
  7138. type: has money
  7139. amount: 1250000
  7140. deny_commands:
  7141. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7142. '46':
  7143. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWY3ZGU5ZmFmYThmY2I3N2Q1OTQ0ZTYyOGI3MjA0MmI5Zjc5ODhkZTQzZTQyMjk4M2M3OGQzNzYyZDZkNyJ9fX0=
  7144. data: 3
  7145. slot: 25
  7146. display_name: '&ePigman Spawner'
  7147. lore:
  7148. - ''
  7149. - '&5&l* &fBuy: &e$1250000 &7&o(You have $%vault_eco_balance_fixed%)'
  7150. - ''
  7151. - '&5&nLeft-click to buy!'
  7152. left_click_commands:
  7153. - '[console] us givespawner %player_name% pigman 1'
  7154. - '[console] eco take %player_name% 1250000'
  7155. - '[refresh]'
  7156. left_click_requirement:
  7157. requirements:
  7158. stone:
  7159. type: has money
  7160. amount: 1250000
  7161. deny_commands:
  7162. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7163. '47':
  7164. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmUxMTlhYWE0OTk5NjQ4YTc1Yjk3OGVmYWZhOTdlZGFiMWNkY2ExZmYxZDgzMDFiYTYxY2RjMmRiMTYwNmUyMiJ9fX0=
  7165. data: 3
  7166. slot: 26
  7167. display_name: '&eGuardian Spawner'
  7168. lore:
  7169. - ''
  7170. - '&5&l* &fBuy: &e$1250000 &7&o(You have $%vault_eco_balance_fixed%)'
  7171. - ''
  7172. - '&5&nLeft-click to buy!'
  7173. left_click_commands:
  7174. - '[console] us givespawner %player_name% guardian 1'
  7175. - '[console] eco take %player_name% 1250000'
  7176. - '[refresh]'
  7177. left_click_requirement:
  7178. requirements:
  7179. stone:
  7180. type: has money
  7181. amount: 1250000
  7182. deny_commands:
  7183. - '[message] &e&lSHOP &8| &cYou do not have money enough to buy this!'
  7184. Isupgrades:
  7185. open_command:
  7186. - is upgrade
  7187. - island upgrades
  7188. - is upgrades
  7189. - island upgrade
  7190. update_interval: 1
  7191. menu_title: '&8» Island Upgrades'
  7192. size: 27
  7193. items:
  7194. '10':
  7195. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2JmYjQxZjg2NmU3ZThlNTkzNjU5OTg2YzlkNmU4OGNkMzc2NzdiM2Y3YmQ0NDI1M2U1ODcxZTY2ZDFkNDI0In19fQ==
  7196. data: 3
  7197. slot: 11
  7198. priority: 1
  7199. display_name: '&d&lIsland Size Upgrade'
  7200. lore:
  7201. - ''
  7202. - '&fPurchase these upgrades to'
  7203. - '&fincrease the size of your'
  7204. - '&fisland border.'
  7205. - ''
  7206. - '&d&lINFORMATION:'
  7207. - '&5&l* &fCurrency: &dBalance'
  7208. - '&5&l* &fProgress: %javascript_border%'
  7209. - '&5&l* &fDefault: &a50x50 Size'
  7210. - ''
  7211. - '&5&nClick to proceed!'
  7212. left_click_commands:
  7213. - '[openguimenu] Upgradesisize'
  7214. - '[close]'
  7215. - '[refresh]'
  7216. right_click_commands:
  7217. - '[openguimenu] Upgradesisize'
  7218. - '[close]'
  7219. - '[refresh]'
  7220. '9':
  7221. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTUzZjIzYTlkZGE5ZTRkZWJhNmNkZjBmODhmZGE4NDEyMjk2NTg2NTliNzFlMzc5OWE2YjU0ZGVmZTkyYzYifX19
  7222. data: 3
  7223. slot: 12
  7224. priority: 1
  7225. display_name: '&d&lTeam Size Upgrade'
  7226. lore:
  7227. - ''
  7228. - '&fPurchase these upgrades to increase'
  7229. - '&fthe limit of how many players'
  7230. - '&fcan be on your island''s team.'
  7231. - ''
  7232. - '&d&lINFORMATION:'
  7233. - '&5&l* &fCurrency: &dBalance'
  7234. - '&5&l* &fProgress: %javascript_team%'
  7235. - '&5&l* &fDefault: &a2 Members'
  7236. - ''
  7237. - '&5&nClick to proceed!'
  7238. left_click_commands:
  7239. - '[openguimenu] uisteam'
  7240. - '[close]'
  7241. - '[refresh]'
  7242. right_click_commands:
  7243. - '[openguimenu] uisteam'
  7244. - '[close]'
  7245. - '[refresh]'
  7246. '11':
  7247. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmEyODI5OTg5NmY0MTNmZTVkYjg0YTM4NTQ2MjQ1OGY3YmQxNjQ2ZTg2MjVjMjViMjY2M2UxMmE2YiJ9fX0=
  7248. data: 3
  7249. slot: 13
  7250. priority: 1
  7251. display_name: '&d&lIsland Homes Upgrade'
  7252. lore:
  7253. - ''
  7254. - '&fPurchase these upgrades to'
  7255. - '&fincrease the limit of how many'
  7256. - '&fhomes you can set on your own island.'
  7257. - ''
  7258. - '&d&lINFORMATION:'
  7259. - '&5&l* &fCurrency: &dBalance'
  7260. - '&5&l* &fProgress: %javascript_homes%'
  7261. - '&5&l* &fDefault: &a1 Home'
  7262. - ''
  7263. - '&5&nClick to proceed!'
  7264. left_click_commands:
  7265. - '[openguimenu] uishomes'
  7266. - '[close]'
  7267. - '[refresh]'
  7268. right_click_commands:
  7269. - '[openguimenu] uishomes'
  7270. - '[close]'
  7271. - '[refresh]'
  7272. '12':
  7273. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTQ0NGViZDQ3MzUyODZmNWE3ZWYzMTZlZDdmMTlkMjZjYTAyYTE5ZWQxNjQwOWY5MjdlODg4Zjg2NDJkNmQifX19
  7274. data: 3
  7275. slot: 14
  7276. priority: 1
  7277. display_name: '&d&lGenerator Upgrade'
  7278. lore:
  7279. - ''
  7280. - '&fThese upgrades, based on island'
  7281. - '&flevels will improve the ore production'
  7282. - '&fof your island''s generators.'
  7283. - ''
  7284. - '&d&lINFORMATION:'
  7285. - '&5&l* &fCurrency: &dIsland Level'
  7286. - '&5&l* &fDefault: &aStone/Cobblestone'
  7287. - ''
  7288. - '&5&nClick to proceed!'
  7289. left_click_commands:
  7290. - '[openguimenu] oregen'
  7291. - '[close]'
  7292. - '[refresh]'
  7293. right_click_commands:
  7294. - '[openguimenu] oregen'
  7295. - '[close]'
  7296. - '[refresh]'
  7297. '13':
  7298. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDZjMzQ2OWNiODQ2M2QyNmZlMGVmNzFmYTc5MGU3Y2M5NWNiNDI5NGQ1NDcwZDdlZmRjZTBjNDkxYzVlZSJ9fX0=
  7299. data: 3
  7300. slot: 15
  7301. priority: 1
  7302. display_name: '&d&lHopper Limit Upgrade'
  7303. lore:
  7304. - ''
  7305. - '&fPurchase these upgrades to'
  7306. - '&fincrease the limit of how many'
  7307. - '&fhoppers you can have on your island.'
  7308. - ''
  7309. - '&d&lINFORMATION:'
  7310. - '&5&l* &fCurrency: &dRank'
  7311. - '&5&l* &fProgress: %javascript_hoppers%'
  7312. - '&5&l* &fDefault: &a100 Hoppers'
  7313. - ''
  7314. - '&5&nClick to proceed!'
  7315. left_click_commands:
  7316. - '[console] titlemanager:tm message %player_name% &7\n&fYou have to buy a
  7317. rank to upgrade it!'
  7318. - '[close]'
  7319. - '[refresh]'
  7320. right_click_commands:
  7321. - '[console] titlemanager:tm message %player_name% &7\n&fYou have to buy a
  7322. rank to upgrade it!'
  7323. - '[close]'
  7324. - '[refresh]'
  7325. '20':
  7326. material: 160
  7327. display_name: '&f'
  7328. data: 15
  7329. slots:
  7330. - 0
  7331. - 1
  7332. - 2
  7333. - 3
  7334. - 4
  7335. - 5
  7336. - 6
  7337. - 7
  7338. - 8
  7339. - 9
  7340. - 10
  7341. - 16
  7342. - 17
  7343. - 18
  7344. - 19
  7345. - 20
  7346. - 21
  7347. - 22
  7348. - 23
  7349. - 24
  7350. - 25
  7351. - 26
  7352. priority: 1
  7353. Upgradesisize:
  7354. update_interval: 1
  7355. menu_title: '&8» Island Size Upgrades'
  7356. open_command: dsfgweedfdsgdsdf
  7357. inventory_type: DROPPER
  7358. size: 27
  7359. items:
  7360. '10':
  7361. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzJmYThmMzhjN2IyMjA5NjYxOWMzYTZkNjQ5OGI0MDU1MzBlNDhkNWQ0ZjkxZTJhYWNlYTU3ODg0NGQ1YzY3In19fQ==
  7362. data: 3
  7363. slot: 4
  7364. view_requirement:
  7365. requirements:
  7366. music:
  7367. type: string equals
  7368. input: '%javascript_border%'
  7369. output: '&c■■■'
  7370. priority: 1
  7371. display_name: '&d&lSize Upgrade #1'
  7372. lore:
  7373. - ''
  7374. - '&fExpand your island border'
  7375. - '&fby purchasing this next'
  7376. - '&fupgrade.'
  7377. - ''
  7378. - '&d&lINFORMATION:'
  7379. - '&5&l* &fNew size: &b&l125x125'
  7380. - '&5&l* &fRating Bar: &a⬛&c⬛⬛'
  7381. - ''
  7382. - '&d&lREQUIREMENTS:'
  7383. - '&5&l* &fBalance: &e$160,000'
  7384. - ''
  7385. - '&5&nClick to upgrade!'
  7386. left_click_commands:
  7387. - '[console] pex user %player_name% add askyblock.island.range.125'
  7388. - '[console] eco take %player_name% 160000'
  7389. - '[close]'
  7390. - '[refresh]'
  7391. right_click_commands:
  7392. - '[console] pex user %player_name% add askyblock.island.range.125'
  7393. - '[console] eco take %player_name% 160000'
  7394. - '[close]'
  7395. - '[refresh]'
  7396. left_click_requirement:
  7397. requirements:
  7398. name:
  7399. type: has money
  7400. amount: 160000
  7401. deny_commands:
  7402. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7403. this upgrade!'
  7404. - '[close]'
  7405. right_click_requirement:
  7406. requirements:
  7407. name:
  7408. type: has money
  7409. amount: 160000
  7410. deny_commands:
  7411. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7412. this upgrade!'
  7413. - '[close]'
  7414. '9':
  7415. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGM5MzY1NjQyYzZlZGRjZmVkZjViNWUxNGUyYmM3MTI1N2Q5ZTRhMzM2M2QxMjNjNmYzM2M1NWNhZmJmNmQifX19
  7416. data: 3
  7417. slot: 4
  7418. view_requirement:
  7419. requirements:
  7420. music:
  7421. type: string equals
  7422. input: '%javascript_border%'
  7423. output: '&a■&c■■'
  7424. priority: 2
  7425. display_name: '&d&lSize Upgrade #2'
  7426. lore:
  7427. - ''
  7428. - '&fExpand your island border'
  7429. - '&fby purchasing this next'
  7430. - '&fupgrade.'
  7431. - ''
  7432. - '&d&lINFORMATION:'
  7433. - '&5&l* &fNew size: &b&l150x150'
  7434. - '&5&l* &fRating Bar: &a⬛⬛&c⬛'
  7435. - ''
  7436. - '&d&lREQUIREMENTS:'
  7437. - '&5&l* &fBalance: &e$200,000'
  7438. - ''
  7439. - '&5&nClick to upgrade!'
  7440. left_click_commands:
  7441. - '[console] pex user %player_name% add askyblock.island.range.150'
  7442. - '[console] eco take %player_name% 200000'
  7443. - '[close]'
  7444. - '[refresh]'
  7445. right_click_commands:
  7446. - '[console] pex user %player_name% add askyblock.island.range.150'
  7447. - '[console] eco take %player_name% 200000'
  7448. - '[close]'
  7449. - '[refresh]'
  7450. left_click_requirement:
  7451. requirements:
  7452. name:
  7453. type: has money
  7454. amount: 200000
  7455. deny_commands:
  7456. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7457. this upgrade!'
  7458. - '[close]'
  7459. right_click_requirement:
  7460. requirements:
  7461. name:
  7462. type: has money
  7463. amount: 200000
  7464. deny_commands:
  7465. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7466. this upgrade!'
  7467. - '[close]'
  7468. '11':
  7469. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmFmZjJlYjQ5OGU1YzZhMDQ0ODRmMGM5Zjc4NWI0NDg0NzlhYjIxM2RmOTVlYzkxMTc2YTMwOGExMmFkZDcwIn19fQ==
  7470. data: 3
  7471. slot: 4
  7472. view_requirement:
  7473. requirements:
  7474. music:
  7475. type: string equals
  7476. input: '%javascript_border%'
  7477. output: '&a■■&c■'
  7478. priority: 3
  7479. display_name: '&d&lSize Upgrade #3'
  7480. lore:
  7481. - ''
  7482. - '&fExpand your island border'
  7483. - '&fby purchasing this next'
  7484. - '&fupgrade.'
  7485. - ''
  7486. - '&d&lINFORMATION:'
  7487. - '&5&l* &fNew size: &b&l200x200'
  7488. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  7489. - ''
  7490. - '&d&lREQUIREMENTS:'
  7491. - '&5&l* &fBalance: &e$280,000'
  7492. - ''
  7493. - '&5&nClick to upgrade!'
  7494. left_click_commands:
  7495. - '[console] pex user %player_name% add askyblock.island.range.200'
  7496. - '[console] eco take %player_name% 280000'
  7497. - '[close]'
  7498. - '[refresh]'
  7499. right_click_commands:
  7500. - '[console] pex user %player_name% add askyblock.island.range.200'
  7501. - '[console] eco take %player_name% 280000'
  7502. - '[close]'
  7503. - '[refresh]'
  7504. left_click_requirement:
  7505. requirements:
  7506. name:
  7507. type: has money
  7508. amount: 280000
  7509. deny_commands:
  7510. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7511. this upgrade!'
  7512. - '[close]'
  7513. right_click_requirement:
  7514. requirements:
  7515. name:
  7516. type: has money
  7517. amount: 280000
  7518. deny_commands:
  7519. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7520. this upgrade!'
  7521. - '[close]'
  7522. '12':
  7523. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2JmYjQxZjg2NmU3ZThlNTkzNjU5OTg2YzlkNmU4OGNkMzc2NzdiM2Y3YmQ0NDI1M2U1ODcxZTY2ZDFkNDI0In19fQ==
  7524. data: 3
  7525. slot: 4
  7526. priority: 4
  7527. display_name: '&d&lSize Upgrade Full'
  7528. lore:
  7529. - ''
  7530. - '&fYou got all the island'
  7531. - '&fsize upgrades of your island,'
  7532. - '&fcongratulations!'
  7533. - ''
  7534. - '&d&lINFORMATION:'
  7535. - '&5&l* &fCurrent size: &b&l200x200'
  7536. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  7537. '20':
  7538. material: 160
  7539. display_name: '&f'
  7540. data: 15
  7541. slots:
  7542. - 0
  7543. - 1
  7544. - 2
  7545. - 3
  7546. - 5
  7547. - 6
  7548. - 7
  7549. - 8
  7550. priority: 1
  7551. uisteam:
  7552. open_command:
  7553. - dsfgweedfdsgd
  7554. update_interval: 1
  7555. menu_title: '&8» Island Team Upgrades'
  7556. inventory_type: DROPPER
  7557. size: 27
  7558. items:
  7559. '10':
  7560. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGFjYzU5OTQ4ODQ1NzNkYmM2Y2Q3YjUwM2NjNTViNzMzYjE4Yjg1YTFhZWE1ZjQwMWMwNjUzMjZjYzNjM2YifX19
  7561. data: 3
  7562. slot: 4
  7563. view_requirement:
  7564. requirements:
  7565. music:
  7566. type: string equals
  7567. input: '%javascript_team%'
  7568. output: '&c■■■■■'
  7569. priority: 1
  7570. display_name: '&d&lTeam Upgrade #1'
  7571. lore:
  7572. - ''
  7573. - '&fExpand your island team size'
  7574. - '&fby purchasing this next'
  7575. - '&fupgrade.'
  7576. - ''
  7577. - '&d&lINFORMATION:'
  7578. - '&5&l* &fNew limit: &b&l4'
  7579. - '&5&l* &fRating Bar: &a⬛&c⬛⬛⬛⬛'
  7580. - ''
  7581. - '&d&lREQUIREMENTS:'
  7582. - '&5&l* &fBalance: &e$250,000'
  7583. - ''
  7584. - '&5&nClick to upgrade!'
  7585. left_click_commands:
  7586. - '[console] pex user %player_name% add askyblock.team.maxsize.4'
  7587. - '[console] eco take %player_name% 250000'
  7588. - '[close]'
  7589. - '[refresh]'
  7590. right_click_commands:
  7591. - '[console] pex user %player_name% add askyblock.team.maxsize.4'
  7592. - '[console] eco take %player_name% 250000'
  7593. - '[close]'
  7594. - '[refresh]'
  7595. left_click_requirement:
  7596. requirements:
  7597. name:
  7598. type: has money
  7599. amount: 250000
  7600. deny_commands:
  7601. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7602. this upgrade!'
  7603. - '[close]'
  7604. right_click_requirement:
  7605. requirements:
  7606. name:
  7607. type: has money
  7608. amount: 250000
  7609. deny_commands:
  7610. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7611. this upgrade!'
  7612. - '[close]'
  7613. '9':
  7614. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDk2ZTJhM2ZlMWVkNjQ0MzZlOGQ2MGI5Zjk5OWZmMzg3MDFhYzEzYjE0NTEwZGFjYmYwNzA0MDYwZmIyYSJ9fX0=
  7615. data: 3
  7616. slot: 4
  7617. view_requirement:
  7618. requirements:
  7619. music:
  7620. type: string equals
  7621. input: '%javascript_team%'
  7622. output: '&a■&c■■■■'
  7623. priority: 2
  7624. display_name: '&d&lTeam Upgrade #2'
  7625. lore:
  7626. - ''
  7627. - '&fExpand your island team size'
  7628. - '&fby purchasing this next'
  7629. - '&fupgrade.'
  7630. - ''
  7631. - '&d&lINFORMATION:'
  7632. - '&5&l* &fNew limit: &b&l6'
  7633. - '&5&l* &fRating Bar: &a⬛⬛&c⬛⬛⬛'
  7634. - ''
  7635. - '&d&lREQUIREMENTS:'
  7636. - '&5&l* &fBalance: &e$500,000'
  7637. - ''
  7638. - '&5&nClick to upgrade!'
  7639. left_click_commands:
  7640. - '[console] pex user %player_name% add askyblock.team.maxsize.6'
  7641. - '[console] eco take %player_name% 500000'
  7642. - '[close]'
  7643. - '[refresh]'
  7644. right_click_commands:
  7645. - '[console] pex user %player_name% add askyblock.team.maxsize.6'
  7646. - '[console] eco take %player_name% 500000'
  7647. - '[close]'
  7648. - '[refresh]'
  7649. left_click_requirement:
  7650. requirements:
  7651. name:
  7652. type: has money
  7653. amount: 500000
  7654. deny_commands:
  7655. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7656. this upgrade!'
  7657. - '[close]'
  7658. right_click_requirement:
  7659. requirements:
  7660. name:
  7661. type: has money
  7662. amount: 500000
  7663. deny_commands:
  7664. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7665. this upgrade!'
  7666. - '[close]'
  7667. '11':
  7668. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzZjNzZmNjJjYjZiNTU3NDk3ZjMyMmZmOTUzNzJlNDUxOGNhN2Q5ODc5Yjc2ZDQ2ZGE5ZWUwMWEzY2FiZTk0ZiJ9fX0=
  7669. data: 3
  7670. slot: 4
  7671. view_requirement:
  7672. requirements:
  7673. music:
  7674. type: string equals
  7675. input: '%javascript_team%'
  7676. output: '&a■■&c■■■'
  7677. priority: 3
  7678. display_name: '&d&lTeam Upgrade #3'
  7679. lore:
  7680. - ''
  7681. - '&fExpand your island team size'
  7682. - '&fby purchasing this next'
  7683. - '&fupgrade.'
  7684. - ''
  7685. - '&d&lINFORMATION:'
  7686. - '&5&l* &fNew limit: &b&l8'
  7687. - '&5&l* &fRating Bar: &a⬛⬛⬛&c⬛⬛'
  7688. - ''
  7689. - '&d&lREQUIREMENTS:'
  7690. - '&5&l* &fBalance: &e$800,000'
  7691. - ''
  7692. - '&5&nClick to upgrade!'
  7693. left_click_commands:
  7694. - '[console] pex user %player_name% add askyblock.team.maxsize.8'
  7695. - '[console] eco take %player_name% 800000'
  7696. - '[close]'
  7697. - '[refresh]'
  7698. right_click_commands:
  7699. - '[console] pex user %player_name% add askyblock.team.maxsize.8'
  7700. - '[console] eco take %player_name% 800000'
  7701. - '[close]'
  7702. - '[refresh]'
  7703. left_click_requirement:
  7704. requirements:
  7705. name:
  7706. type: has money
  7707. amount: 800000
  7708. deny_commands:
  7709. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7710. this upgrade!'
  7711. - '[close]'
  7712. right_click_requirement:
  7713. requirements:
  7714. name:
  7715. type: has money
  7716. amount: 800000
  7717. deny_commands:
  7718. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7719. this upgrade!'
  7720. - '[close]'
  7721. '12':
  7722. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTdmZTMzNjJkNWQ3MGE3ODczZDU4MjI2MTNlZjdiZDgxMjk3MmM3MmEzZmFkZDUwNWNiYmE2NDY2YjViYiJ9fX0=
  7723. data: 3
  7724. slot: 4
  7725. view_requirement:
  7726. requirements:
  7727. music:
  7728. type: string equals
  7729. input: '%javascript_team%'
  7730. output: '&a■■■&c■■'
  7731. priority: 4
  7732. display_name: '&d&lTeam Upgrade #4'
  7733. lore:
  7734. - ''
  7735. - '&fExpand your island team size'
  7736. - '&fby purchasing this next'
  7737. - '&fupgrade.'
  7738. - ''
  7739. - '&d&lINFORMATION:'
  7740. - '&5&l* &fNew limit: &b&l10'
  7741. - '&5&l* &fRating Bar: &a⬛⬛⬛⬛&c⬛'
  7742. - ''
  7743. - '&d&lREQUIREMENTS:'
  7744. - '&5&l* &fBalance: &e$1,100,000'
  7745. - ''
  7746. - '&5&nClick to upgrade!'
  7747. left_click_commands:
  7748. - '[console] pex user %player_name% add askyblock.team.maxsize.10'
  7749. - '[console] eco take %player_name% 1100000'
  7750. - '[close]'
  7751. - '[refresh]'
  7752. right_click_commands:
  7753. - '[console] pex user %player_name% add askyblock.team.maxsize.10'
  7754. - '[console] eco take %player_name% 1100000'
  7755. - '[close]'
  7756. - '[refresh]'
  7757. left_click_requirement:
  7758. requirements:
  7759. name:
  7760. type: has money
  7761. amount: 1100000
  7762. deny_commands:
  7763. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7764. this upgrade!'
  7765. - '[close]'
  7766. right_click_requirement:
  7767. requirements:
  7768. name:
  7769. type: has money
  7770. amount: 1100000
  7771. deny_commands:
  7772. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7773. this upgrade!'
  7774. - '[close]'
  7775. '13':
  7776. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzdjMWJhNDk2MWQxMTlkMDZmOGFmOTkxNzlkNmU2MWFjOWQ2ZWM2ZmFkYjMyZmE1NTY1NzkxYWZiMTY1OWMifX19
  7777. data: 3
  7778. slot: 4
  7779. view_requirement:
  7780. requirements:
  7781. music:
  7782. type: string equals
  7783. input: '%javascript_team%'
  7784. output: '&a■■■■&c■'
  7785. priority: 5
  7786. display_name: '&d&lTeam Upgrade #5'
  7787. lore:
  7788. - ''
  7789. - '&fExpand your island team size'
  7790. - '&fby purchasing this next'
  7791. - '&fupgrade.'
  7792. - ''
  7793. - '&d&lINFORMATION:'
  7794. - '&5&l* &fNew limit: &b&l12'
  7795. - '&5&l* &fRating Bar: &a⬛⬛⬛⬛⬛'
  7796. - ''
  7797. - '&d&lREQUIREMENTS:'
  7798. - '&5&l* &fBalance: &e$1,400,000'
  7799. - ''
  7800. - '&5&nClick to upgrade!'
  7801. left_click_commands:
  7802. - '[console] pex user %player_name% add askyblock.team.maxsize.12'
  7803. - '[console] eco take %player_name% 1400000'
  7804. - '[close]'
  7805. - '[refresh]'
  7806. right_click_commands:
  7807. - '[console] pex user %player_name% add askyblock.team.maxsize.12'
  7808. - '[console] eco take %player_name% 1400000'
  7809. - '[close]'
  7810. - '[refresh]'
  7811. left_click_requirement:
  7812. requirements:
  7813. name:
  7814. type: has money
  7815. amount: 1400000
  7816. deny_commands:
  7817. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7818. this upgrade!'
  7819. - '[close]'
  7820. right_click_requirement:
  7821. requirements:
  7822. name:
  7823. type: has money
  7824. amount: 1400000
  7825. deny_commands:
  7826. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7827. this upgrade!'
  7828. - '[close]'
  7829. '14':
  7830. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2JmYjQxZjg2NmU3ZThlNTkzNjU5OTg2YzlkNmU4OGNkMzc2NzdiM2Y3YmQ0NDI1M2U1ODcxZTY2ZDFkNDI0In19fQ==
  7831. data: 3
  7832. slot: 4
  7833. priority: 4
  7834. display_name: '&d&lTeam Upgrade Full'
  7835. lore:
  7836. - ''
  7837. - '&fYou got all the team'
  7838. - '&fsize upgrades of your island,'
  7839. - '&fcongratulations!'
  7840. - ''
  7841. - '&d&lINFORMATION:'
  7842. - '&5&l* &fCurrent limit: &b&l12'
  7843. - '&5&l* &fRating Bar: &a⬛⬛⬛⬛⬛'
  7844. '20':
  7845. material: 160
  7846. display_name: '&f'
  7847. data: 15
  7848. slots:
  7849. - 0
  7850. - 1
  7851. - 2
  7852. - 3
  7853. - 5
  7854. - 6
  7855. - 7
  7856. - 8
  7857. priority: 1
  7858. uishomes:
  7859. open_command:
  7860. - dsfgwdfgweewdd
  7861. update_interval: 1
  7862. menu_title: '&8» Island Homes Upgrades'
  7863. inventory_type: DROPPER
  7864. size: 27
  7865. items:
  7866. '10':
  7867. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Y3Y2RlZWZjNmQzN2ZlY2FiNjc2YzU4NGJmNjIwODMyYWFhYzg1Mzc1ZTlmY2JmZjI3MzcyNDkyZDY5ZiJ9fX0=
  7868. data: 3
  7869. slot: 4
  7870. view_requirement:
  7871. requirements:
  7872. music:
  7873. type: string equals
  7874. input: '%javascript_homes%'
  7875. output: '&c■■■'
  7876. priority: 1
  7877. display_name: '&d&lHome Upgrade #1'
  7878. lore:
  7879. - ''
  7880. - '&fExpand your island home limit'
  7881. - '&fby purchasing this next'
  7882. - '&fupgrade.'
  7883. - ''
  7884. - '&d&lINFORMATION:'
  7885. - '&5&l* &fNew limit: &b&l2 Homes'
  7886. - '&5&l* &fRating Bar: &a⬛&c⬛⬛'
  7887. - ''
  7888. - '&d&lREQUIREMENTS:'
  7889. - '&5&l* &fBalance: &e$10,000'
  7890. - ''
  7891. - '&5&nClick to upgrade!'
  7892. left_click_commands:
  7893. - '[console] pex user %player_name% add askyblock.island.maxhomes.2'
  7894. - '[console] eco take %player_name% 10000'
  7895. - '[close]'
  7896. - '[refresh]'
  7897. right_click_commands:
  7898. - '[console] pex user %player_name% add askyblock.island.maxhomes.2'
  7899. - '[console] eco take %player_name% 10000'
  7900. - '[close]'
  7901. - '[refresh]'
  7902. left_click_requirement:
  7903. requirements:
  7904. name:
  7905. type: has money
  7906. amount: 10000
  7907. deny_commands:
  7908. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7909. this upgrade!'
  7910. - '[close]'
  7911. right_click_requirement:
  7912. requirements:
  7913. name:
  7914. type: has money
  7915. amount: 10000
  7916. deny_commands:
  7917. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7918. this upgrade!'
  7919. - '[close]'
  7920. '9':
  7921. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDk5MTBjZjYwMGQyMWEwNDA0ZDlkZjRiMGQ2NTllZDQ4NDE4NmFlMDYxNDI3MGY3YTY0MjlmNzA0ZDBiZGJjOSJ9fX0=
  7922. data: 3
  7923. slot: 4
  7924. view_requirement:
  7925. requirements:
  7926. music:
  7927. type: string equals
  7928. input: '%javascript_homes%'
  7929. output: '&a■&c■■'
  7930. priority: 2
  7931. display_name: '&d&lTeam Upgrade #2'
  7932. lore:
  7933. - ''
  7934. - '&fExpand your island home limit'
  7935. - '&fby purchasing this next'
  7936. - '&fupgrade.'
  7937. - ''
  7938. - '&d&lINFORMATION:'
  7939. - '&5&l* &fNew limit: &b&l4 Homes'
  7940. - '&5&l* &fRating Bar: &a⬛⬛&c⬛'
  7941. - ''
  7942. - '&d&lREQUIREMENTS:'
  7943. - '&5&l* &fBalance: &e$20,000'
  7944. - ''
  7945. - '&5&nClick to upgrade!'
  7946. left_click_commands:
  7947. - '[console] pex user %player_name% add askyblock.island.maxhomes.4'
  7948. - '[console] eco take %player_name% 20000'
  7949. - '[close]'
  7950. - '[refresh]'
  7951. right_click_commands:
  7952. - '[console] pex user %player_name% add askyblock.island.maxhomes.4'
  7953. - '[console] eco take %player_name% 20000'
  7954. - '[close]'
  7955. - '[refresh]'
  7956. left_click_requirement:
  7957. requirements:
  7958. name:
  7959. type: has money
  7960. amount: 20000
  7961. deny_commands:
  7962. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7963. this upgrade!'
  7964. - '[close]'
  7965. right_click_requirement:
  7966. requirements:
  7967. name:
  7968. type: has money
  7969. amount: 20000
  7970. deny_commands:
  7971. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  7972. this upgrade!'
  7973. - '[close]'
  7974. '11':
  7975. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmRjYmJhNmM3NTFkYWI1ZjJiMzA5YmM1OTQxZThlYTc5ODc3Y2NlNDI1NjkzNmExODk4MTFlZDdlYzM2ZDI1YyJ9fX0=
  7976. data: 3
  7977. slot: 4
  7978. view_requirement:
  7979. requirements:
  7980. music:
  7981. type: string equals
  7982. input: '%javascript_homes%'
  7983. output: '&a■■&c■'
  7984. priority: 3
  7985. display_name: '&d&lTeam Upgrade #3'
  7986. lore:
  7987. - ''
  7988. - '&fExpand your island home limit'
  7989. - '&fby purchasing this next'
  7990. - '&fupgrade.'
  7991. - ''
  7992. - '&d&lINFORMATION:'
  7993. - '&5&l* &fNew limit: &b&l6 Homes'
  7994. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  7995. - ''
  7996. - '&d&lREQUIREMENTS:'
  7997. - '&5&l* &fBalance: &e$30,000'
  7998. - ''
  7999. - '&5&nClick to upgrade!'
  8000. left_click_commands:
  8001. - '[console] pex user %player_name% add askyblock.island.maxhomes.6'
  8002. - '[console] eco take %player_name% 30000'
  8003. - '[close]'
  8004. - '[refresh]'
  8005. right_click_commands:
  8006. - '[console] pex user %player_name% add askyblock.island.maxhomes.6'
  8007. - '[console] eco take %player_name% 30000'
  8008. - '[close]'
  8009. - '[refresh]'
  8010. left_click_requirement:
  8011. requirements:
  8012. name:
  8013. type: has money
  8014. amount: 30000
  8015. deny_commands:
  8016. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  8017. this upgrade!'
  8018. - '[close]'
  8019. right_click_requirement:
  8020. requirements:
  8021. name:
  8022. type: has money
  8023. amount: 30000
  8024. deny_commands:
  8025. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  8026. this upgrade!'
  8027. - '[close]'
  8028. '14':
  8029. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmRjYmJhNmM3NTFkYWI1ZjJiMzA5YmM1OTQxZThlYTc5ODc3Y2NlNDI1NjkzNmExODk4MTFlZDdlYzM2ZDI1YyJ9fX0=
  8030. data: 3
  8031. slot: 4
  8032. priority: 4
  8033. display_name: '&d&lHomes Upgrade Full'
  8034. lore:
  8035. - ''
  8036. - '&fYou got all the homes'
  8037. - '&flimit upgrades of your island,'
  8038. - '&fcongratulations!'
  8039. - ''
  8040. - '&d&lINFORMATION:'
  8041. - '&5&l* &fCurrent limit: &b&l6 Homes'
  8042. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  8043. '20':
  8044. material: 160
  8045. display_name: '&f'
  8046. data: 15
  8047. slots:
  8048. - 0
  8049. - 1
  8050. - 2
  8051. - 3
  8052. - 5
  8053. - 6
  8054. - 7
  8055. - 8
  8056. priority: 1
  8057. tags:
  8058. open_command:
  8059. - tags
  8060. - tag
  8061. - deluxetags:tags
  8062. update_interval: 1
  8063. menu_title: '&8» Tags'
  8064. size: 36
  8065. items:
  8066. '99':
  8067. material: 421
  8068. slot: 13
  8069. priority: 1
  8070. view_requirement:
  8071. requirements:
  8072. permission:
  8073. type: has permission
  8074. permission: tag.heart
  8075. display_name: '&d&lHeart'
  8076. lore:
  8077. - ''
  8078. - '&fChange your tag to a'
  8079. - '&cheart &fand stands out'
  8080. - '&fabove the others!'
  8081. - ''
  8082. - '&d&lINFORMATION:'
  8083. - '&5&l* &fTag: &c❤'
  8084. - ''
  8085. - '&d&lREQUIREMENTS:'
  8086. - '&5&l* &fAccess to this tag'
  8087. - ''
  8088. - '&5&nClick to select!'
  8089. left_click_commands:
  8090. - '[console] tags set %player_name% heart'
  8091. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8092. the &c❤ &ftag!'
  8093. - '[close]'
  8094. - '[refresh]'
  8095. right_click_commands:
  8096. - '[console] tags set %player_name% heart'
  8097. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8098. the &c❤ &ftag!'
  8099. - '[close]'
  8100. - '[refresh]'
  8101. '9923':
  8102. material: 421
  8103. slot: 13
  8104. priority: 2
  8105. display_name: '&d&lHeart'
  8106. lore:
  8107. - ''
  8108. - '&fChange your tag to a'
  8109. - '&cheart &fand stands out'
  8110. - '&fabove the others!'
  8111. - ''
  8112. - '&d&lINFORMATION:'
  8113. - '&5&l* &fTag: &c❤'
  8114. - ''
  8115. - '&d&lREQUIREMENTS:'
  8116. - '&5&l* &fAccess to this tag'
  8117. - ''
  8118. - '&c&oYou do not have this tag!'
  8119. '919':
  8120. material: 421
  8121. slot: 11
  8122. priority: 1
  8123. view_requirement:
  8124. requirements:
  8125. permission:
  8126. type: has permission
  8127. permission: tag.arrow
  8128. display_name: '&d&lArrow'
  8129. lore:
  8130. - ''
  8131. - '&fChange your tag to a'
  8132. - '&barrow &fand stands out'
  8133. - '&fabove the others!'
  8134. - ''
  8135. - '&d&lINFORMATION:'
  8136. - '&5&l* &fTag: &b➳'
  8137. - ''
  8138. - '&d&lREQUIREMENTS:'
  8139. - '&5&l* &fAccess to this tag'
  8140. - ''
  8141. - '&5&nClick to select!'
  8142. left_click_commands:
  8143. - '[console] tags set %player_name% arrow'
  8144. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8145. the &b➳ &ftag!'
  8146. - '[close]'
  8147. - '[refresh]'
  8148. right_click_commands:
  8149. - '[console] tags set %player_name% heart'
  8150. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8151. the &b➳ &ftag!'
  8152. - '[close]'
  8153. - '[refresh]'
  8154. '91923':
  8155. material: 421
  8156. slot: 11
  8157. priority: 2
  8158. display_name: '&d&lArrow'
  8159. lore:
  8160. - ''
  8161. - '&fChange your tag to a'
  8162. - '&barrow &fand stands out'
  8163. - '&fabove the others!'
  8164. - ''
  8165. - '&d&lINFORMATION:'
  8166. - '&5&l* &fTag: &b➳'
  8167. - ''
  8168. - '&d&lREQUIREMENTS:'
  8169. - '&5&l* &fAccess to this tag'
  8170. - ''
  8171. - '&c&oYou do not have this tag!'
  8172. '929':
  8173. material: 421
  8174. slot: 12
  8175. priority: 1
  8176. view_requirement:
  8177. requirements:
  8178. permission:
  8179. type: has permission
  8180. permission: tag.flower
  8181. display_name: '&d&lFlower'
  8182. lore:
  8183. - ''
  8184. - '&fChange your tag to a'
  8185. - '&dflower &fand stands out'
  8186. - '&fabove the others!'
  8187. - ''
  8188. - '&d&lINFORMATION:'
  8189. - '&5&l* &fTag: &d❀'
  8190. - ''
  8191. - '&d&lREQUIREMENTS:'
  8192. - '&5&l* &fAccess to this tag'
  8193. - ''
  8194. - '&5&nClick to select!'
  8195. left_click_commands:
  8196. - '[console] tags set %player_name% flower'
  8197. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8198. the &d❀ &ftag!'
  8199. - '[close]'
  8200. - '[refresh]'
  8201. right_click_commands:
  8202. - '[console] tags set %player_name% flower'
  8203. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8204. the &d❀ &ftag!'
  8205. - '[close]'
  8206. - '[refresh]'
  8207. '92923':
  8208. material: 421
  8209. slot: 12
  8210. priority: 2
  8211. display_name: '&d&lFlower'
  8212. lore:
  8213. - ''
  8214. - '&fChange your tag to a'
  8215. - '&dflower &fand stands out'
  8216. - '&fabove the others!'
  8217. - ''
  8218. - '&d&lINFORMATION:'
  8219. - '&5&l* &fTag: &d❀'
  8220. - ''
  8221. - '&d&lREQUIREMENTS:'
  8222. - '&5&l* &fAccess to this tag'
  8223. - ''
  8224. - '&c&oYou do not have this tag!'
  8225. '939':
  8226. material: 421
  8227. slot: 14
  8228. priority: 1
  8229. view_requirement:
  8230. requirements:
  8231. permission:
  8232. type: has permission
  8233. permission: tag.peace
  8234. display_name: '&d&lPeace'
  8235. lore:
  8236. - ''
  8237. - '&fChange your tag to a'
  8238. - '&dpeace &fand stands out'
  8239. - '&fabove the others!'
  8240. - ''
  8241. - '&d&lINFORMATION:'
  8242. - '&5&l* &fTag: &d✌'
  8243. - ''
  8244. - '&d&lREQUIREMENTS:'
  8245. - '&5&l* &fAccess to this tag'
  8246. - ''
  8247. - '&5&nClick to select!'
  8248. left_click_commands:
  8249. - '[console] tags set %player_name% peace'
  8250. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8251. the &d✌ &ftag!'
  8252. - '[close]'
  8253. - '[refresh]'
  8254. right_click_commands:
  8255. - '[console] tags set %player_name% peace'
  8256. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8257. the &d✌ &ftag!'
  8258. - '[close]'
  8259. - '[refresh]'
  8260. '93923':
  8261. material: 421
  8262. slot: 14
  8263. priority: 2
  8264. display_name: '&d&lPeace'
  8265. lore:
  8266. - ''
  8267. - '&fChange your tag to a'
  8268. - '&dpeace &fand stands out'
  8269. - '&fabove the others!'
  8270. - ''
  8271. - '&d&lINFORMATION:'
  8272. - '&5&l* &fTag: &d✌'
  8273. - ''
  8274. - '&d&lREQUIREMENTS:'
  8275. - '&5&l* &fAccess to this tag'
  8276. - ''
  8277. - '&c&oYou do not have this tag!'
  8278. '9529':
  8279. material: 421
  8280. slot: 15
  8281. priority: 1
  8282. view_requirement:
  8283. requirements:
  8284. permission:
  8285. type: has permission
  8286. permission: tag.music
  8287. display_name: '&d&lMusic'
  8288. lore:
  8289. - ''
  8290. - '&fChange your tag to a'
  8291. - '&amusic &fand stands out'
  8292. - '&fabove the others!'
  8293. - ''
  8294. - '&d&lINFORMATION:'
  8295. - '&5&l* &fTag: &a♫'
  8296. - ''
  8297. - '&d&lREQUIREMENTS:'
  8298. - '&5&l* &fAccess to this tag'
  8299. - ''
  8300. - '&5&nClick to select!'
  8301. left_click_commands:
  8302. - '[console] tags set %player_name% music'
  8303. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8304. the &a♫ &ftag!'
  8305. - '[close]'
  8306. - '[refresh]'
  8307. right_click_commands:
  8308. - '[console] tags set %player_name% music'
  8309. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8310. the &a♫ &ftag!'
  8311. - '[close]'
  8312. - '[refresh]'
  8313. '959223':
  8314. material: 421
  8315. slot: 15
  8316. priority: 2
  8317. display_name: '&d&lMusic'
  8318. lore:
  8319. - ''
  8320. - '&fChange your tag to a'
  8321. - '&amusic &fand stands out'
  8322. - '&fabove the others!'
  8323. - ''
  8324. - '&d&lINFORMATION:'
  8325. - '&5&l* &fTag: &a♫'
  8326. - ''
  8327. - '&d&lREQUIREMENTS:'
  8328. - '&5&l* &fAccess to this tag'
  8329. - ''
  8330. - '&c&oYou do not have this tag!'
  8331. '19529':
  8332. material: 421
  8333. slot: 21
  8334. priority: 1
  8335. view_requirement:
  8336. requirements:
  8337. permission:
  8338. type: has permission
  8339. permission: tag.scissors
  8340. display_name: '&d&lScissors'
  8341. lore:
  8342. - ''
  8343. - '&fChange your tag to a'
  8344. - '&3scissors &fand stands out'
  8345. - '&fabove the others!'
  8346. - ''
  8347. - '&d&lINFORMATION:'
  8348. - '&5&l* &fTag: &3✂'
  8349. - ''
  8350. - '&d&lREQUIREMENTS:'
  8351. - '&5&l* &fAccess to this tag'
  8352. - ''
  8353. - '&5&nClick to select!'
  8354. left_click_commands:
  8355. - '[console] tags set %player_name% scissors'
  8356. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8357. the &3✂ &ftag!'
  8358. - '[close]'
  8359. - '[refresh]'
  8360. right_click_commands:
  8361. - '[console] tags set %player_name% scissors'
  8362. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8363. the &3✂ &ftag!'
  8364. - '[close]'
  8365. - '[refresh]'
  8366. '1959223':
  8367. material: 421
  8368. slot: 21
  8369. priority: 2
  8370. display_name: '&d&lScissors'
  8371. lore:
  8372. - ''
  8373. - '&fChange your tag to a'
  8374. - '&3scissors &fand stands out'
  8375. - '&fabove the others!'
  8376. - ''
  8377. - '&d&lINFORMATION:'
  8378. - '&5&l* &fTag: &3✂'
  8379. - ''
  8380. - '&d&lREQUIREMENTS:'
  8381. - '&5&l* &fAccess to this tag'
  8382. - ''
  8383. - '&c&oYou do not have this tag!'
  8384. '192529':
  8385. material: 421
  8386. slot: 22
  8387. priority: 1
  8388. view_requirement:
  8389. requirements:
  8390. permission:
  8391. type: has permission
  8392. permission: tag.toxic
  8393. display_name: '&d&lToxic'
  8394. lore:
  8395. - ''
  8396. - '&fChange your tag to a'
  8397. - '&etoxic &fand stands out'
  8398. - '&fabove the others!'
  8399. - ''
  8400. - '&d&lINFORMATION:'
  8401. - '&5&l* &fTag: &e☢'
  8402. - ''
  8403. - '&d&lREQUIREMENTS:'
  8404. - '&5&l* &fAccess to this tag'
  8405. - ''
  8406. - '&5&nClick to select!'
  8407. left_click_commands:
  8408. - '[console] tags set %player_name% toxic'
  8409. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8410. the &e☢ &ftag!'
  8411. - '[close]'
  8412. - '[refresh]'
  8413. right_click_commands:
  8414. - '[console] tags set %player_name% toxic'
  8415. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8416. the &e☢ &ftag!'
  8417. - '[close]'
  8418. - '[refresh]'
  8419. '19259223':
  8420. material: 421
  8421. slot: 22
  8422. priority: 2
  8423. display_name: '&d&lToxic'
  8424. lore:
  8425. - ''
  8426. - '&fChange your tag to a'
  8427. - '&etoxic &fand stands out'
  8428. - '&fabove the others!'
  8429. - ''
  8430. - '&d&lINFORMATION:'
  8431. - '&5&l* &fTag: &e☢'
  8432. - ''
  8433. - '&d&lREQUIREMENTS:'
  8434. - '&5&l* &fAccess to this tag'
  8435. - ''
  8436. - '&c&oYou do not have this tag!'
  8437. '1925329':
  8438. material: 421
  8439. slot: 23
  8440. priority: 1
  8441. view_requirement:
  8442. requirements:
  8443. permission:
  8444. type: has permission
  8445. permission: tag.snowman
  8446. display_name: '&d&lSnowman'
  8447. lore:
  8448. - ''
  8449. - '&fChange your tag to a'
  8450. - '&bsnowman &fand stands out'
  8451. - '&fabove the others!'
  8452. - ''
  8453. - '&d&lINFORMATION:'
  8454. - '&5&l* &fTag: &b☃'
  8455. - ''
  8456. - '&d&lREQUIREMENTS:'
  8457. - '&5&l* &fAccess to this tag'
  8458. - ''
  8459. - '&5&nClick to select!'
  8460. left_click_commands:
  8461. - '[console] tags set %player_name% snowman'
  8462. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8463. the &b☃ &ftag!'
  8464. - '[close]'
  8465. - '[refresh]'
  8466. right_click_commands:
  8467. - '[console] tags set %player_name% snowman'
  8468. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8469. the &b☃ &ftag!'
  8470. - '[close]'
  8471. - '[refresh]'
  8472. '192592323':
  8473. material: 421
  8474. slot: 23
  8475. priority: 2
  8476. display_name: '&d&lSnowman'
  8477. lore:
  8478. - ''
  8479. - '&fChange your tag to a'
  8480. - '&bsnowman &fand stands out'
  8481. - '&fabove the others!'
  8482. - ''
  8483. - '&d&lINFORMATION:'
  8484. - '&5&l* &fTag: &b☃'
  8485. - ''
  8486. - '&d&lREQUIREMENTS:'
  8487. - '&5&l* &fAccess to this tag'
  8488. - ''
  8489. - '&c&oYou do not have rank enough!'
  8490. '1925923223':
  8491. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2VkMWFiYTczZjYzOWY0YmM0MmJkNDgxOTZjNzE1MTk3YmUyNzEyYzNiOTYyYzk3ZWJmOWU5ZWQ4ZWZhMDI1In19fQ==
  8492. data: 3
  8493. slot: 4
  8494. priority: 1
  8495. display_name: '&d&lReset tag'
  8496. lore:
  8497. - ''
  8498. - '&fReset your tag and remove'
  8499. - '&fany tag of your name if you'
  8500. - '&fare bored of tags!'
  8501. - ''
  8502. - '&5&nClick to reset!'
  8503. left_click_commands:
  8504. - '[console] tags clear %player_name%'
  8505. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  8506. tag!'
  8507. - '[close]'
  8508. - '[refresh]'
  8509. right_click_commands:
  8510. - '[console] tags clear %player_name%'
  8511. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  8512. tag!'
  8513. - '[close]'
  8514. - '[refresh]'
  8515. '20':
  8516. material: 160
  8517. display_name: '&f'
  8518. data: 15
  8519. slots:
  8520. - 0
  8521. - 1
  8522. - 2
  8523. - 3
  8524. - 5
  8525. - 6
  8526. - 7
  8527. - 8
  8528. - 9
  8529. - 10
  8530. - 16
  8531. - 17
  8532. - 18
  8533. - 19
  8534. - 20
  8535. - 24
  8536. - 25
  8537. - 26
  8538. - 27
  8539. - 28
  8540. - 29
  8541. - 30
  8542. - 31
  8543. - 32
  8544. - 33
  8545. - 34
  8546. - 35
  8547. priority: 1
  8548. dungeonkits:
  8549. open_command:
  8550. - asfwedwdwefee3es
  8551. update_interval: 1
  8552. menu_title: '&8» Dungeon Kits'
  8553. size: 27
  8554. items:
  8555. '99':
  8556. material: BOW
  8557. slot: 13
  8558. priority: 1
  8559. display_name: '&a&lArcher'
  8560. lore:
  8561. - ''
  8562. - '&fBecome a archer and'
  8563. - '&fstart shooting mobs!'
  8564. - ''
  8565. - '&5&nClick to select!'
  8566. left_click_commands:
  8567. - '[player] ma class archer'
  8568. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8569. the &a&lArcher &fkit&f!'
  8570. - '[close]'
  8571. - '[refresh]'
  8572. right_click_commands:
  8573. - '[player] ma class archer'
  8574. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8575. the &a&lArcher &fkit&f!'
  8576. - '[close]'
  8577. - '[refresh]'
  8578. '929':
  8579. material: GOLD_SWORD
  8580. slot: 12
  8581. priority: 1
  8582. display_name: '&b&lKnight'
  8583. lore:
  8584. - ''
  8585. - '&fBecome a knight and'
  8586. - '&fstart defending friends!'
  8587. - ''
  8588. - '&5&nClick to select!'
  8589. left_click_commands:
  8590. - '[player] ma class knight'
  8591. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8592. the &b&lKnight &fkit&f!'
  8593. - '[close]'
  8594. - '[refresh]'
  8595. right_click_commands:
  8596. - '[player] ma class knight'
  8597. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8598. the &b&lKnight &fkit&f!'
  8599. - '[close]'
  8600. - '[refresh]'
  8601. '939':
  8602. material: 377
  8603. slot: 14
  8604. priority: 1
  8605. display_name: '&d&lMage'
  8606. lore:
  8607. - ''
  8608. - '&fBecome a mage and'
  8609. - '&fstart healing yourself!'
  8610. - ''
  8611. - '&5&nClick to select!'
  8612. left_click_commands:
  8613. - '[player] ma class mage'
  8614. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8615. the &d&lMage &fkit&f!'
  8616. - '[close]'
  8617. - '[refresh]'
  8618. right_click_commands:
  8619. - '[player] ma class mage'
  8620. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8621. the &d&lMage &fkit&f!'
  8622. - '[close]'
  8623. - '[refresh]'
  8624. '1925923223':
  8625. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2VkMWFiYTczZjYzOWY0YmM0MmJkNDgxOTZjNzE1MTk3YmUyNzEyYzNiOTYyYzk3ZWJmOWU5ZWQ4ZWZhMDI1In19fQ==
  8626. data: 3
  8627. slot: 4
  8628. priority: 1
  8629. display_name: '&c&lLeave'
  8630. lore:
  8631. - ''
  8632. - '&fLeave the dungeon if'
  8633. - '&fyou decided not to play'
  8634. - '&fat this moment!'
  8635. - ''
  8636. - '&5&nClick to leave!'
  8637. left_click_commands:
  8638. - '[player] ma leave'
  8639. - '[console] titlemanager:tm message %player_name% &7\n&cYou have left the
  8640. dungeon!'
  8641. - '[close]'
  8642. - '[refresh]'
  8643. right_click_commands:
  8644. - '[player] ma leave'
  8645. - '[console] titlemanager:tm message %player_name% &7\n&cYou have left the
  8646. dungeon!'
  8647. - '[close]'
  8648. - '[refresh]'
  8649. '20':
  8650. material: 160
  8651. display_name: '&f'
  8652. data: 15
  8653. slots:
  8654. - 0
  8655. - 1
  8656. - 2
  8657. - 3
  8658. - 5
  8659. - 6
  8660. - 7
  8661. - 8
  8662. - 9
  8663. - 10
  8664. - 11
  8665. - 15
  8666. - 16
  8667. - 17
  8668. - 18
  8669. - 19
  8670. - 20
  8671. - 21
  8672. - 22
  8673. - 23
  8674. - 24
  8675. - 25
  8676. - 26
  8677. priority: 1
  8678. disguises:
  8679. open_command:
  8680. - d
  8681. - disguises
  8682. - od
  8683. - idisguises:d
  8684. update_interval: 1
  8685. menu_title: '&8» Disguises'
  8686. size: 54
  8687. items:
  8688. '99':
  8689. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzRmMGExNmEyYzg3MzJkMTU3NjczNDBkZDdmODEzMTU4YzU3ZTEyNDBkNWQyMzNjODdkMTVhNDY2OWI0NmQifX19
  8690. data: 3
  8691. slot: 13
  8692. priority: 1
  8693. view_requirement:
  8694. requirements:
  8695. permission:
  8696. type: has permission
  8697. permission: disguise.chicken
  8698. display_name: '&d&lChicken'
  8699. lore:
  8700. - ''
  8701. - '&fChange your disguise'
  8702. - '&fand hide your'
  8703. - '&fidentity!'
  8704. - ''
  8705. - '&d&lINFORMATION:'
  8706. - '&5&l* &fDisguise: &aChicken'
  8707. - ''
  8708. - '&d&lREQUIREMENTS:'
  8709. - '&5&l* &fRank: &a&lVIP'
  8710. - ''
  8711. - '&5&nClick to select!'
  8712. left_click_commands:
  8713. - '[console] od %player_name% chicken'
  8714. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8715. the &aChicken &fdisguise!'
  8716. - '[close]'
  8717. - '[refresh]'
  8718. right_click_commands:
  8719. - '[console] od %player_name% chicken'
  8720. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8721. the &aChicken &fdisguise!'
  8722. - '[close]'
  8723. - '[refresh]'
  8724. '9923':
  8725. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzRmMGExNmEyYzg3MzJkMTU3NjczNDBkZDdmODEzMTU4YzU3ZTEyNDBkNWQyMzNjODdkMTVhNDY2OWI0NmQifX19
  8726. data: 3
  8727. slot: 13
  8728. priority: 2
  8729. display_name: '&d&lChicken'
  8730. lore:
  8731. - ''
  8732. - '&fChange your disguise'
  8733. - '&fand hide your'
  8734. - '&fidentity!'
  8735. - ''
  8736. - '&d&lINFORMATION:'
  8737. - '&5&l* &fDisguise: &aChicken'
  8738. - ''
  8739. - '&d&lREQUIREMENTS:'
  8740. - '&5&l* &fRank: &a&lVIP'
  8741. - ''
  8742. - '&c&oYou do not have rank enough!'
  8743. '919':
  8744. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmNlY2U5MTQzMGYyNGE5ODg2ZmIxNzJjMDJmODA3OGZiNDA3MmE1OWYwMWE0ODEwZGI3NGJhNDU0YmM5MTAifX19
  8745. data: 3
  8746. slot: 11
  8747. priority: 1
  8748. view_requirement:
  8749. requirements:
  8750. permission:
  8751. type: has permission
  8752. permission: disguise.pig
  8753. display_name: '&d&lPig'
  8754. lore:
  8755. - ''
  8756. - '&fChange your disguise'
  8757. - '&fand hide your'
  8758. - '&fidentity!'
  8759. - ''
  8760. - '&d&lINFORMATION:'
  8761. - '&5&l* &fDisguise: &aPig'
  8762. - ''
  8763. - '&d&lREQUIREMENTS:'
  8764. - '&5&l* &fRank: &a&lVIP &7or higher'
  8765. - ''
  8766. - '&5&nClick to select!'
  8767. left_click_commands:
  8768. - '[console] od %player_name% pig'
  8769. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8770. the &aPig &fdisguise!'
  8771. - '[close]'
  8772. - '[refresh]'
  8773. right_click_commands:
  8774. - '[console] od %player_name% chicken'
  8775. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8776. the &aPig &fdisguise!'
  8777. - '[close]'
  8778. - '[refresh]'
  8779. '91923':
  8780. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmNlY2U5MTQzMGYyNGE5ODg2ZmIxNzJjMDJmODA3OGZiNDA3MmE1OWYwMWE0ODEwZGI3NGJhNDU0YmM5MTAifX19
  8781. data: 3
  8782. slot: 11
  8783. priority: 2
  8784. display_name: '&d&lPig'
  8785. lore:
  8786. - ''
  8787. - '&fChange your disguise'
  8788. - '&fand hide your'
  8789. - '&fidentity!'
  8790. - ''
  8791. - '&d&lINFORMATION:'
  8792. - '&5&l* &fDisguise: &aPig'
  8793. - ''
  8794. - '&d&lREQUIREMENTS:'
  8795. - '&5&l* &fRank: &a&lVIP &7or higher'
  8796. - ''
  8797. - '&c&oYou do not have rank enough!'
  8798. '929':
  8799. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWIzNDEwNmNjMmVhYzk3OTM0OWQ1YmM2YTAxMDUzNDcyNmY3M2ZiOTYwYzIyOGE4ZDkxODk3NjQyYmVkMGIwIn19fQ==
  8800. data: 3
  8801. slot: 12
  8802. priority: 1
  8803. view_requirement:
  8804. requirements:
  8805. permission:
  8806. type: has permission
  8807. permission: disguise.cow
  8808. display_name: '&d&lCow'
  8809. lore:
  8810. - ''
  8811. - '&fChange your disguise'
  8812. - '&fand hide your'
  8813. - '&fidentity!'
  8814. - ''
  8815. - '&d&lINFORMATION:'
  8816. - '&5&l* &fDisguise: &aCow'
  8817. - ''
  8818. - '&d&lREQUIREMENTS:'
  8819. - '&5&l* &fRank: &a&lVIP &7or higher'
  8820. - ''
  8821. - '&5&nClick to select!'
  8822. left_click_commands:
  8823. - '[console] od %player_name% cow'
  8824. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8825. the &aCow &fdisguise!'
  8826. - '[close]'
  8827. - '[refresh]'
  8828. right_click_commands:
  8829. - '[console] od %player_name% cow'
  8830. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8831. the &aCow &fdisguise!'
  8832. - '[close]'
  8833. - '[refresh]'
  8834. '92923':
  8835. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWIzNDEwNmNjMmVhYzk3OTM0OWQ1YmM2YTAxMDUzNDcyNmY3M2ZiOTYwYzIyOGE4ZDkxODk3NjQyYmVkMGIwIn19fQ==
  8836. data: 3
  8837. slot: 12
  8838. priority: 2
  8839. display_name: '&d&lCow'
  8840. lore:
  8841. - ''
  8842. - '&fChange your disguise'
  8843. - '&fand hide your'
  8844. - '&fidentity!'
  8845. - ''
  8846. - '&d&lINFORMATION:'
  8847. - '&5&l* &fDisguise: &aCow'
  8848. - ''
  8849. - '&d&lREQUIREMENTS:'
  8850. - '&5&l* &fRank: &a&lVIP &7or higher'
  8851. - ''
  8852. - '&c&oYou do not have rank enough!'
  8853. '939':
  8854. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWQ3M2YwZGRlNDE1NjhjNzNmMjUyYTIyZjM2YmVkY2Q0M2UwMzNjNTk1MTdhN2VlOGY5YTMxMzE5OTcyYjI3In19fQ==
  8855. data: 3
  8856. slot: 14
  8857. priority: 1
  8858. view_requirement:
  8859. requirements:
  8860. permission:
  8861. type: has permission
  8862. permission: disguise.sheep
  8863. display_name: '&d&lSheep'
  8864. lore:
  8865. - ''
  8866. - '&fChange your disguise'
  8867. - '&fand hide your'
  8868. - '&fidentity!'
  8869. - ''
  8870. - '&d&lINFORMATION:'
  8871. - '&5&l* &fDisguise: &aSheep'
  8872. - ''
  8873. - '&d&lREQUIREMENTS:'
  8874. - '&5&l* &fRank: &a&lVIP &7or higher'
  8875. - ''
  8876. - '&5&nClick to select!'
  8877. left_click_commands:
  8878. - '[console] od %player_name% sheep'
  8879. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8880. the &aSheep &fdisguise!'
  8881. - '[close]'
  8882. - '[refresh]'
  8883. right_click_commands:
  8884. - '[console] od %player_name% sheep'
  8885. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8886. the &aSheep &fdisguise!'
  8887. - '[close]'
  8888. - '[refresh]'
  8889. '93923':
  8890. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWQ3M2YwZGRlNDE1NjhjNzNmMjUyYTIyZjM2YmVkY2Q0M2UwMzNjNTk1MTdhN2VlOGY5YTMxMzE5OTcyYjI3In19fQ==
  8891. data: 3
  8892. slot: 14
  8893. priority: 2
  8894. display_name: '&d&lSheep'
  8895. lore:
  8896. - ''
  8897. - '&fChange your disguise'
  8898. - '&fand hide your'
  8899. - '&fidentity!'
  8900. - ''
  8901. - '&d&lINFORMATION:'
  8902. - '&5&l* &fDisguise: &aSheep'
  8903. - ''
  8904. - '&d&lREQUIREMENTS:'
  8905. - '&5&l* &fRank: &a&lVIP &7or higher'
  8906. - ''
  8907. - '&c&oYou do not have rank enough!'
  8908. '9529':
  8909. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWZjZWI0ZjRlYjZhMjQ0Njg4N2U2ZGZlMmM4NjdjZjk5OThjNmYyNjZiYWU4Y2ZiZDFjYWJkM2E3MjIxOWVhIn19fQ==
  8910. data: 3
  8911. slot: 15
  8912. priority: 1
  8913. view_requirement:
  8914. requirements:
  8915. permission:
  8916. type: has permission
  8917. permission: disguise.horse
  8918. display_name: '&d&lHorse'
  8919. lore:
  8920. - ''
  8921. - '&fChange your disguise'
  8922. - '&fand hide your'
  8923. - '&fidentity!'
  8924. - ''
  8925. - '&d&lINFORMATION:'
  8926. - '&5&l* &fDisguise: &aHorse'
  8927. - ''
  8928. - '&d&lREQUIREMENTS:'
  8929. - '&5&l* &fRank: &b&lVIP+ &7or higher'
  8930. - ''
  8931. - '&5&nClick to select!'
  8932. left_click_commands:
  8933. - '[console] od %player_name% horse'
  8934. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8935. the &aHorse &fdisguise!'
  8936. - '[close]'
  8937. - '[refresh]'
  8938. right_click_commands:
  8939. - '[console] od %player_name% horse'
  8940. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8941. the &aHorse &fdisguise!'
  8942. - '[close]'
  8943. - '[refresh]'
  8944. '959223':
  8945. material: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWZjZWI0ZjRlYjZhMjQ0Njg4N2U2ZGZlMmM4NjdjZjk5OThjNmYyNjZiYWU4Y2ZiZDFjYWJkM2E3MjIxOWVhIn19fQ==
  8946. data: 3
  8947. slot: 15
  8948. priority: 2
  8949. display_name: '&d&lHorse'
  8950. lore:
  8951. - ''
  8952. - '&fChange your disguise'
  8953. - '&fand hide your'
  8954. - '&fidentity!'
  8955. - ''
  8956. - '&d&lINFORMATION:'
  8957. - '&5&l* &fDisguise: &aHorse'
  8958. - ''
  8959. - '&d&lREQUIREMENTS:'
  8960. - '&5&l* &fRank: &b&lVIP+ &7or higher'
  8961. - ''
  8962. - '&c&oYou do not have rank enough!'
  8963. '19529':
  8964. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzExYWE5MGJjMzQ5NGFjNjVjNDA3NGQwZTZjYzk5OTFmZGEwYmYzN2UxYWRlZjhiY2M4Y2JlYjBkMjdlOSJ9fX0=
  8965. data: 3
  8966. slot: 20
  8967. priority: 1
  8968. view_requirement:
  8969. requirements:
  8970. permission:
  8971. type: has permission
  8972. permission: disguise.squid
  8973. display_name: '&d&lSquid'
  8974. lore:
  8975. - ''
  8976. - '&fChange your disguise'
  8977. - '&fand hide your'
  8978. - '&fidentity!'
  8979. - ''
  8980. - '&d&lINFORMATION:'
  8981. - '&5&l* &fDisguise: &aSquid'
  8982. - ''
  8983. - '&d&lREQUIREMENTS:'
  8984. - '&5&l* &fRank: &b&lVIP+ &7or higher'
  8985. - ''
  8986. - '&5&nClick to select!'
  8987. left_click_commands:
  8988. - '[console] od %player_name% squid'
  8989. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8990. the &aSquid &fdisguise!'
  8991. - '[close]'
  8992. - '[refresh]'
  8993. right_click_commands:
  8994. - '[console] od %player_name% squid'
  8995. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  8996. the &aSquid &fdisguise!'
  8997. - '[close]'
  8998. - '[refresh]'
  8999. '1959223':
  9000. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzExYWE5MGJjMzQ5NGFjNjVjNDA3NGQwZTZjYzk5OTFmZGEwYmYzN2UxYWRlZjhiY2M4Y2JlYjBkMjdlOSJ9fX0=
  9001. data: 3
  9002. slot: 20
  9003. priority: 2
  9004. display_name: '&d&lSquid'
  9005. lore:
  9006. - ''
  9007. - '&fChange your disguise'
  9008. - '&fand hide your'
  9009. - '&fidentity!'
  9010. - ''
  9011. - '&d&lINFORMATION:'
  9012. - '&5&l* &fDisguise: &aSquid'
  9013. - ''
  9014. - '&d&lREQUIREMENTS:'
  9015. - '&5&l* &fRank: &b&lVIP+ &7or higher'
  9016. - ''
  9017. - '&c&oYou do not have rank enough!'
  9018. '192529':
  9019. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2FjNzEyYWY5YjU3Yjk1ZDVhOTg5NGU4NjE4ZmMwNzAxY2JkZDNkMDk3MmM5NjlkMTUyZWJjZjIyMmM3ZCJ9fX0=
  9020. data: 3
  9021. slot: 21
  9022. priority: 1
  9023. view_requirement:
  9024. requirements:
  9025. permission:
  9026. type: has permission
  9027. permission: disguise.moshroom
  9028. display_name: '&d&lMooshroom'
  9029. lore:
  9030. - ''
  9031. - '&fChange your disguise'
  9032. - '&fand hide your'
  9033. - '&fidentity!'
  9034. - ''
  9035. - '&d&lINFORMATION:'
  9036. - '&5&l* &fDisguise: &aMooshroom'
  9037. - ''
  9038. - '&d&lREQUIREMENTS:'
  9039. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9040. - ''
  9041. - '&5&nClick to select!'
  9042. left_click_commands:
  9043. - '[console] od %player_name% mooshroom'
  9044. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9045. the &aMooshroom &fdisguise!'
  9046. - '[close]'
  9047. - '[refresh]'
  9048. right_click_commands:
  9049. - '[console] od %player_name% mooshroom'
  9050. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9051. the &aMooshroom &fdisguise!'
  9052. - '[close]'
  9053. - '[refresh]'
  9054. '19259223':
  9055. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2FjNzEyYWY5YjU3Yjk1ZDVhOTg5NGU4NjE4ZmMwNzAxY2JkZDNkMDk3MmM5NjlkMTUyZWJjZjIyMmM3ZCJ9fX0=
  9056. data: 3
  9057. slot: 21
  9058. priority: 2
  9059. display_name: '&d&lMooshroom'
  9060. lore:
  9061. - ''
  9062. - '&fChange your disguise'
  9063. - '&fand hide your'
  9064. - '&fidentity!'
  9065. - ''
  9066. - '&d&lINFORMATION:'
  9067. - '&5&l* &fDisguise: &aMooshroom'
  9068. - ''
  9069. - '&d&lREQUIREMENTS:'
  9070. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9071. - ''
  9072. - '&c&oYou do not have enough rank!'
  9073. '1925329':
  9074. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzUzZjZhNGE4ZTY4ZWRmYzE0OWIyZTMyNTk3ZGYzZTVmNGMzNTgxZjdhNDdjMzg1MTRhYjJhNGVkYTM5NTA1ZCJ9fX0=
  9075. data: 3
  9076. slot: 22
  9077. priority: 1
  9078. view_requirement:
  9079. requirements:
  9080. permission:
  9081. type: has permission
  9082. permission: disguise.ocelot
  9083. display_name: '&d&lOcelot'
  9084. lore:
  9085. - ''
  9086. - '&fChange your disguise'
  9087. - '&fand hide your'
  9088. - '&fidentity!'
  9089. - ''
  9090. - '&d&lINFORMATION:'
  9091. - '&5&l* &fDisguise: &aOcelot'
  9092. - ''
  9093. - '&d&lREQUIREMENTS:'
  9094. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9095. - ''
  9096. - '&5&nClick to select!'
  9097. left_click_commands:
  9098. - '[console] od %player_name% ocelot'
  9099. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9100. the &aOcelot &fdisguise!'
  9101. - '[close]'
  9102. - '[refresh]'
  9103. right_click_commands:
  9104. - '[console] od %player_name% ocelot'
  9105. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9106. the &aOcelot &fdisguise!'
  9107. - '[close]'
  9108. - '[refresh]'
  9109. '192592323':
  9110. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzUzZjZhNGE4ZTY4ZWRmYzE0OWIyZTMyNTk3ZGYzZTVmNGMzNTgxZjdhNDdjMzg1MTRhYjJhNGVkYTM5NTA1ZCJ9fX0=
  9111. data: 3
  9112. slot: 22
  9113. priority: 2
  9114. display_name: '&d&lOcelot'
  9115. lore:
  9116. - ''
  9117. - '&fChange your disguise'
  9118. - '&fand hide your'
  9119. - '&fidentity!'
  9120. - ''
  9121. - '&d&lINFORMATION:'
  9122. - '&5&l* &fDisguise: &aOcelot'
  9123. - ''
  9124. - '&d&lREQUIREMENTS:'
  9125. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9126. - ''
  9127. - '&c&oYou do not have rank enough!'
  9128. '19215329':
  9129. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjA4NzQ5MWY5YjA4MDhmZGY3MDViOTFiNDUyMmM2NDMwNmY0OGM2YWM5YmQ2M2UyZTQ4YmFkMzMyOTNiZDcifX19
  9130. data: 3
  9131. slot: 23
  9132. priority: 1
  9133. view_requirement:
  9134. requirements:
  9135. permission:
  9136. type: has permission
  9137. permission: disguise.wolf
  9138. display_name: '&d&lWolf'
  9139. lore:
  9140. - ''
  9141. - '&fChange your disguise'
  9142. - '&fand hide your'
  9143. - '&fidentity!'
  9144. - ''
  9145. - '&d&lINFORMATION:'
  9146. - '&5&l* &fDisguise: &aWolf'
  9147. - ''
  9148. - '&d&lREQUIREMENTS:'
  9149. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9150. - ''
  9151. - '&5&nClick to select!'
  9152. left_click_commands:
  9153. - '[console] od %player_name% wolf'
  9154. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9155. the &aWolf &fdisguise!'
  9156. - '[close]'
  9157. - '[refresh]'
  9158. right_click_commands:
  9159. - '[console] od %player_name% wolf'
  9160. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9161. the &aWolf &fdisguise!'
  9162. - '[close]'
  9163. - '[refresh]'
  9164. '1925912323':
  9165. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjA4NzQ5MWY5YjA4MDhmZGY3MDViOTFiNDUyMmM2NDMwNmY0OGM2YWM5YmQ2M2UyZTQ4YmFkMzMyOTNiZDcifX19
  9166. data: 3
  9167. slot: 23
  9168. priority: 2
  9169. display_name: '&d&lWolf'
  9170. lore:
  9171. - ''
  9172. - '&fChange your disguise'
  9173. - '&fand hide your'
  9174. - '&fidentity!'
  9175. - ''
  9176. - '&d&lINFORMATION:'
  9177. - '&5&l* &fDisguise: &aWolf'
  9178. - ''
  9179. - '&d&lREQUIREMENTS:'
  9180. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9181. - ''
  9182. - '&c&oYou do not have rank enough!'
  9183. '192153279':
  9184. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc5ZTcyMzQ5MWM4ODZkY2MyNWU1ZDJkZjBlMDU3ODFmN2FjOWMzNDYyMTgzMmJkNzQ5NjVlZjc5YWNmOGYifX19
  9185. data: 3
  9186. slot: 24
  9187. priority: 1
  9188. view_requirement:
  9189. requirements:
  9190. permission:
  9191. type: has permission
  9192. permission: disguise.skeleton
  9193. display_name: '&d&lSkeleton'
  9194. lore:
  9195. - ''
  9196. - '&fChange your disguise'
  9197. - '&fand hide your'
  9198. - '&fidentity!'
  9199. - ''
  9200. - '&d&lINFORMATION:'
  9201. - '&5&l* &fDisguise: &aSkeleton'
  9202. - ''
  9203. - '&d&lREQUIREMENTS:'
  9204. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9205. - ''
  9206. - '&5&nClick to select!'
  9207. left_click_commands:
  9208. - '[console] od %player_name% skeleton'
  9209. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9210. the &aSkeleton &fdisguise!'
  9211. - '[close]'
  9212. - '[refresh]'
  9213. right_click_commands:
  9214. - '[console] od %player_name% skeleton'
  9215. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9216. the &aSkeleton &fdisguise!'
  9217. - '[close]'
  9218. - '[refresh]'
  9219. '19259123273':
  9220. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc5ZTcyMzQ5MWM4ODZkY2MyNWU1ZDJkZjBlMDU3ODFmN2FjOWMzNDYyMTgzMmJkNzQ5NjVlZjc5YWNmOGYifX19
  9221. data: 3
  9222. slot: 24
  9223. priority: 2
  9224. display_name: '&d&lSkeleton'
  9225. lore:
  9226. - ''
  9227. - '&fChange your disguise'
  9228. - '&fand hide your'
  9229. - '&fidentity!'
  9230. - ''
  9231. - '&d&lINFORMATION:'
  9232. - '&5&l* &fDisguise: &aSkeleton'
  9233. - ''
  9234. - '&d&lREQUIREMENTS:'
  9235. - '&5&l* &fRank: &d&lVIP++ &7or higher'
  9236. - ''
  9237. - '&c&oYou do not have rank enough!'
  9238. '1921522329':
  9239. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTQzNjc5Njg4ZDYyNjZhOTY3OWIzOGU1YjVlM2M2MGFhYzY0NGY2MWVlZjI3NTBiMDYwNTQxODM0MjY4MmM5In19fQ==
  9240. data: 3
  9241. slot: 29
  9242. priority: 1
  9243. view_requirement:
  9244. requirements:
  9245. permission:
  9246. type: has permission
  9247. permission: disguise.zombie
  9248. display_name: '&d&lZombie'
  9249. lore:
  9250. - ''
  9251. - '&fChange your disguise'
  9252. - '&fand hide your'
  9253. - '&fidentity!'
  9254. - ''
  9255. - '&d&lINFORMATION:'
  9256. - '&5&l* &fDisguise: &aZombie'
  9257. - ''
  9258. - '&d&lREQUIREMENTS:'
  9259. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9260. - ''
  9261. - '&5&nClick to select!'
  9262. left_click_commands:
  9263. - '[console] od %player_name% zombie'
  9264. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9265. the &aZombie &fdisguise!'
  9266. - '[close]'
  9267. - '[refresh]'
  9268. right_click_commands:
  9269. - '[console] od %player_name% zombie'
  9270. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9271. the &aZombie &fdisguise!'
  9272. - '[close]'
  9273. - '[refresh]'
  9274. '192591562323':
  9275. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTQzNjc5Njg4ZDYyNjZhOTY3OWIzOGU1YjVlM2M2MGFhYzY0NGY2MWVlZjI3NTBiMDYwNTQxODM0MjY4MmM5In19fQ==
  9276. data: 3
  9277. slot: 29
  9278. priority: 2
  9279. display_name: '&d&lZombie'
  9280. lore:
  9281. - ''
  9282. - '&fChange your disguise'
  9283. - '&fand hide your'
  9284. - '&fidentity!'
  9285. - ''
  9286. - '&d&lINFORMATION:'
  9287. - '&5&l* &fDisguise: &aZombie'
  9288. - ''
  9289. - '&d&lREQUIREMENTS:'
  9290. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9291. - ''
  9292. - '&c&oYou do not have rank enough!'
  9293. '192151222329':
  9294. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTk2NDgzMmE2NjczODhiYTNmNWM4OTVkNTA0MjE4ZjIzNTJlZmExYWY5ZDdmZjdiYTEwMzM5ZGVjZDhmMTUifX19
  9295. data: 3
  9296. slot: 30
  9297. priority: 1
  9298. view_requirement:
  9299. requirements:
  9300. permission:
  9301. type: has permission
  9302. permission: disguise.spider
  9303. display_name: '&d&lSpider'
  9304. lore:
  9305. - ''
  9306. - '&fChange your disguise'
  9307. - '&fand hide your'
  9308. - '&fidentity!'
  9309. - ''
  9310. - '&d&lINFORMATION:'
  9311. - '&5&l* &fDisguise: &aSpider'
  9312. - ''
  9313. - '&d&lREQUIREMENTS:'
  9314. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9315. - ''
  9316. - '&5&nClick to select!'
  9317. left_click_commands:
  9318. - '[console] od %player_name% spider'
  9319. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9320. the &aSpider &fdisguise!'
  9321. - '[close]'
  9322. - '[refresh]'
  9323. right_click_commands:
  9324. - '[console] od %player_name% spider'
  9325. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9326. the &aSpider &fdisguise!'
  9327. - '[close]'
  9328. - '[refresh]'
  9329. '19212591562323':
  9330. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTk2NDgzMmE2NjczODhiYTNmNWM4OTVkNTA0MjE4ZjIzNTJlZmExYWY5ZDdmZjdiYTEwMzM5ZGVjZDhmMTUifX19
  9331. data: 3
  9332. slot: 30
  9333. priority: 2
  9334. display_name: '&d&lSpider'
  9335. lore:
  9336. - ''
  9337. - '&fChange your disguise'
  9338. - '&fand hide your'
  9339. - '&fidentity!'
  9340. - ''
  9341. - '&d&lINFORMATION:'
  9342. - '&5&l* &fDisguise: &aSpider'
  9343. - ''
  9344. - '&d&lREQUIREMENTS:'
  9345. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9346. - ''
  9347. - '&c&oYou do not have rank enough!'
  9348. '1921512223299':
  9349. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjhlMjUyNmZiNGJkM2I3MDgxZWVkYmRlOTU4MGY0ZDZjNDdkNDBiZWRiNjM2ZjEwMjc4YWNlOWRmM2E1MmY1In19fQ==
  9350. data: 3
  9351. slot: 31
  9352. priority: 1
  9353. view_requirement:
  9354. requirements:
  9355. permission:
  9356. type: has permission
  9357. permission: disguise.creeper
  9358. display_name: '&d&lCreeper'
  9359. lore:
  9360. - ''
  9361. - '&fChange your disguise'
  9362. - '&fand hide your'
  9363. - '&fidentity!'
  9364. - ''
  9365. - '&d&lINFORMATION:'
  9366. - '&5&l* &fDisguise: &aCreeper'
  9367. - ''
  9368. - '&d&lREQUIREMENTS:'
  9369. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9370. - ''
  9371. - '&5&nClick to select!'
  9372. left_click_commands:
  9373. - '[console] od %player_name% creeper'
  9374. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9375. the &aCreeper &fdisguise!'
  9376. - '[close]'
  9377. - '[refresh]'
  9378. right_click_commands:
  9379. - '[console] od %player_name% creeper'
  9380. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9381. the &aCreeper &fdisguise!'
  9382. - '[close]'
  9383. - '[refresh]'
  9384. '192125915623293':
  9385. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjhlMjUyNmZiNGJkM2I3MDgxZWVkYmRlOTU4MGY0ZDZjNDdkNDBiZWRiNjM2ZjEwMjc4YWNlOWRmM2E1MmY1In19fQ==
  9386. data: 3
  9387. slot: 31
  9388. priority: 2
  9389. display_name: '&d&lCreeper'
  9390. lore:
  9391. - ''
  9392. - '&fChange your disguise'
  9393. - '&fand hide your'
  9394. - '&fidentity!'
  9395. - ''
  9396. - '&d&lINFORMATION:'
  9397. - '&5&l* &fDisguise: &aCreeper'
  9398. - ''
  9399. - '&d&lREQUIREMENTS:'
  9400. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9401. - ''
  9402. - '&c&oYou do not have rank enough!'
  9403. '19215122232991':
  9404. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDc0NmMyNmFhYzE2ZTM4ODA5ODJkMTM5OWZiNWY5Zjc5OTEzZGQ2MTZlNzE2NTRmOWJmNGQ0MWZiMzMifX19
  9405. data: 3
  9406. slot: 32
  9407. priority: 1
  9408. view_requirement:
  9409. requirements:
  9410. permission:
  9411. type: has permission
  9412. permission: disguise.enderman
  9413. display_name: '&d&lEnderman'
  9414. lore:
  9415. - ''
  9416. - '&fChange your disguise'
  9417. - '&fand hide your'
  9418. - '&fidentity!'
  9419. - ''
  9420. - '&d&lINFORMATION:'
  9421. - '&5&l* &fDisguise: &aEnderman'
  9422. - ''
  9423. - '&d&lREQUIREMENTS:'
  9424. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9425. - ''
  9426. - '&5&nClick to select!'
  9427. left_click_commands:
  9428. - '[console] od %player_name% enderman'
  9429. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9430. the &aEnderman &fdisguise!'
  9431. - '[close]'
  9432. - '[refresh]'
  9433. right_click_commands:
  9434. - '[console] od %player_name% enderman'
  9435. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9436. the &aEnderman &fdisguise!'
  9437. - '[close]'
  9438. - '[refresh]'
  9439. '1921259156232931':
  9440. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDc0NmMyNmFhYzE2ZTM4ODA5ODJkMTM5OWZiNWY5Zjc5OTEzZGQ2MTZlNzE2NTRmOWJmNGQ0MWZiMzMifX19
  9441. data: 3
  9442. slot: 32
  9443. priority: 2
  9444. display_name: '&d&lEnderman'
  9445. lore:
  9446. - ''
  9447. - '&fChange your disguise'
  9448. - '&fand hide your'
  9449. - '&fidentity!'
  9450. - ''
  9451. - '&d&lINFORMATION:'
  9452. - '&5&l* &fDisguise: &aEnderman'
  9453. - ''
  9454. - '&d&lREQUIREMENTS:'
  9455. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  9456. - ''
  9457. - '&c&oYou do not have rank enough!'
  9458. '192151222329912':
  9459. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTQxOGM5MzBiMzE5N2YyNzhjOTgzY2Q4NzhiMmVlOTY2MzI3MjlmNDdkODM4NzcxMjM2YzJhNWJlZTM3MjUifX19
  9460. data: 3
  9461. slot: 33
  9462. priority: 1
  9463. view_requirement:
  9464. requirements:
  9465. permission:
  9466. type: has permission
  9467. permission: disguise.blaze
  9468. display_name: '&d&lBlaze'
  9469. lore:
  9470. - ''
  9471. - '&fChange your disguise'
  9472. - '&fand hide your'
  9473. - '&fidentity!'
  9474. - ''
  9475. - '&d&lINFORMATION:'
  9476. - '&5&l* &fDisguise: &aBlaze'
  9477. - ''
  9478. - '&d&lREQUIREMENTS:'
  9479. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9480. - ''
  9481. - '&5&nClick to select!'
  9482. left_click_commands:
  9483. - '[console] od %player_name% blaze'
  9484. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9485. the &aBlaze &fdisguise!'
  9486. - '[close]'
  9487. - '[refresh]'
  9488. right_click_commands:
  9489. - '[console] od %player_name% blaze'
  9490. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9491. the &aBlaze &fdisguise!'
  9492. - '[close]'
  9493. - '[refresh]'
  9494. '1921259156232932':
  9495. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTQxOGM5MzBiMzE5N2YyNzhjOTgzY2Q4NzhiMmVlOTY2MzI3MjlmNDdkODM4NzcxMjM2YzJhNWJlZTM3MjUifX19
  9496. data: 3
  9497. slot: 33
  9498. priority: 2
  9499. display_name: '&d&lBlaze'
  9500. lore:
  9501. - ''
  9502. - '&fChange your disguise'
  9503. - '&fand hide your'
  9504. - '&fidentity!'
  9505. - ''
  9506. - '&d&lINFORMATION:'
  9507. - '&5&l* &fDisguise: &aBlaze'
  9508. - ''
  9509. - '&d&lREQUIREMENTS:'
  9510. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9511. - ''
  9512. - '&c&oYou do not have rank enough!'
  9513. '192151222329911112':
  9514. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjc2NTdjOWNlOWVmYThhNTkxYzFkNjk0ZjdiYzc1NmM2NjY0MmM3NDRlZWIzMWYxZWE0M2Q2MGE3NzQ5In19fQ==
  9515. data: 3
  9516. slot: 39
  9517. priority: 1
  9518. view_requirement:
  9519. requirements:
  9520. permission:
  9521. type: has permission
  9522. permission: disguise.wither_skeleton
  9523. display_name: '&d&lWither Skeleton'
  9524. lore:
  9525. - ''
  9526. - '&fChange your disguise'
  9527. - '&fand hide your'
  9528. - '&fidentity!'
  9529. - ''
  9530. - '&d&lINFORMATION:'
  9531. - '&5&l* &fDisguise: &aWither Skeleton'
  9532. - ''
  9533. - '&d&lREQUIREMENTS:'
  9534. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9535. - ''
  9536. - '&5&nClick to select!'
  9537. left_click_commands:
  9538. - '[console] od %player_name% wither_skeleton'
  9539. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9540. the &aWither Skeleton &fdisguise!'
  9541. - '[close]'
  9542. - '[refresh]'
  9543. right_click_commands:
  9544. - '[console] od %player_name% wither_skeleton'
  9545. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9546. the &aWither Skeleton &fdisguise!'
  9547. - '[close]'
  9548. - '[refresh]'
  9549. '19212159115623291132':
  9550. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjc2NTdjOWNlOWVmYThhNTkxYzFkNjk0ZjdiYzc1NmM2NjY0MmM3NDRlZWIzMWYxZWE0M2Q2MGE3NzQ5In19fQ==
  9551. data: 3
  9552. slot: 39
  9553. priority: 2
  9554. display_name: '&d&lWither Skeleton'
  9555. lore:
  9556. - ''
  9557. - '&fChange your disguise'
  9558. - '&fand hide your'
  9559. - '&fidentity!'
  9560. - ''
  9561. - '&d&lINFORMATION:'
  9562. - '&5&l* &fDisguise: &aWither Skeleton'
  9563. - ''
  9564. - '&d&lREQUIREMENTS:'
  9565. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9566. - ''
  9567. - '&c&oYou do not have rank enough!'
  9568. '19215122225329911112':
  9569. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTQ3ZjJkZjRkMzFkZTgxYmFmODEzYmJiMjhkMWI5NmYzNDIzYWM2YWE2ODJjOGJkZGM3ZjUyOTQ1OGEifX19
  9570. data: 3
  9571. slot: 40
  9572. priority: 1
  9573. view_requirement:
  9574. requirements:
  9575. permission:
  9576. type: has permission
  9577. permission: disguise.pig_zombie
  9578. display_name: '&d&lPig Zombie'
  9579. lore:
  9580. - ''
  9581. - '&fChange your disguise'
  9582. - '&fand hide your'
  9583. - '&fidentity!'
  9584. - ''
  9585. - '&d&lINFORMATION:'
  9586. - '&5&l* &fDisguise: &aPig Zombie'
  9587. - ''
  9588. - '&d&lREQUIREMENTS:'
  9589. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9590. - ''
  9591. - '&5&nClick to select!'
  9592. left_click_commands:
  9593. - '[console] od %player_name% pig_zombie'
  9594. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9595. the &aPig Zombie &fdisguise!'
  9596. - '[close]'
  9597. - '[refresh]'
  9598. right_click_commands:
  9599. - '[console] od %player_name% pig_zombie'
  9600. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9601. the &aPig Zombie &fdisguise!'
  9602. - '[close]'
  9603. - '[refresh]'
  9604. '1921215911526235291132':
  9605. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTQ3ZjJkZjRkMzFkZTgxYmFmODEzYmJiMjhkMWI5NmYzNDIzYWM2YWE2ODJjOGJkZGM3ZjUyOTQ1OGEifX19
  9606. data: 3
  9607. slot: 40
  9608. priority: 2
  9609. display_name: '&d&lPig Zombie'
  9610. lore:
  9611. - ''
  9612. - '&fChange your disguise'
  9613. - '&fand hide your'
  9614. - '&fidentity!'
  9615. - ''
  9616. - '&d&lINFORMATION:'
  9617. - '&5&l* &fDisguise: &aPig Zombie'
  9618. - ''
  9619. - '&d&lREQUIREMENTS:'
  9620. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9621. - ''
  9622. - '&c&oYou do not have rank enough!'
  9623. '192151222253299111129':
  9624. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODNiZWU5ZjliNzVmZjc1MTk3ZTA3NDE0YWMyZGI5MmUyMTZlOTQ1ZDYxODc3MjJiZGI5MjYyODc5YmI2In19fQ==
  9625. data: 3
  9626. slot: 41
  9627. priority: 1
  9628. view_requirement:
  9629. requirements:
  9630. permission:
  9631. type: has permission
  9632. permission: disguise.witch
  9633. display_name: '&d&lWitch'
  9634. lore:
  9635. - ''
  9636. - '&fChange your disguise'
  9637. - '&fand hide your'
  9638. - '&fidentity!'
  9639. - ''
  9640. - '&d&lINFORMATION:'
  9641. - '&5&l* &fDisguise: &aWitch'
  9642. - ''
  9643. - '&d&lREQUIREMENTS:'
  9644. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9645. - ''
  9646. - '&5&nClick to select!'
  9647. left_click_commands:
  9648. - '[console] od %player_name% witch'
  9649. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9650. the &aWitch &fdisguise!'
  9651. - '[close]'
  9652. - '[refresh]'
  9653. right_click_commands:
  9654. - '[console] od %player_name% witch'
  9655. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  9656. the &aWitch &fdisguise!'
  9657. - '[close]'
  9658. - '[refresh]'
  9659. '19212159115262352911329':
  9660. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODNiZWU5ZjliNzVmZjc1MTk3ZTA3NDE0YWMyZGI5MmUyMTZlOTQ1ZDYxODc3MjJiZGI5MjYyODc5YmI2In19fQ==
  9661. data: 3
  9662. slot: 41
  9663. priority: 2
  9664. display_name: '&d&lWitch'
  9665. lore:
  9666. - ''
  9667. - '&fChange your disguise'
  9668. - '&fand hide your'
  9669. - '&fidentity!'
  9670. - ''
  9671. - '&d&lINFORMATION:'
  9672. - '&5&l* &fDisguise: &aWitch'
  9673. - ''
  9674. - '&d&lREQUIREMENTS:'
  9675. - '&5&l* &fRank: &e&lVIP++++ &7or higher'
  9676. - ''
  9677. - '&c&oYou do not have rank enough!'
  9678. '1925923223':
  9679. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2VkMWFiYTczZjYzOWY0YmM0MmJkNDgxOTZjNzE1MTk3YmUyNzEyYzNiOTYyYzk3ZWJmOWU5ZWQ4ZWZhMDI1In19fQ==
  9680. data: 3
  9681. slot: 4
  9682. priority: 1
  9683. display_name: '&d&lReset disguise'
  9684. lore:
  9685. - ''
  9686. - '&fReset your disguise that you'
  9687. - '&fare currently wearing if'
  9688. - '&fyou are bored!'
  9689. - ''
  9690. - '&5&nClick to reset!'
  9691. left_click_commands:
  9692. - '[console] ud %player_name%'
  9693. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  9694. disguise!'
  9695. - '[close]'
  9696. - '[refresh]'
  9697. right_click_commands:
  9698. - '[console] ud %player_name%'
  9699. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  9700. disguise!'
  9701. - '[close]'
  9702. - '[refresh]'
  9703. '20':
  9704. material: 160
  9705. display_name: '&f'
  9706. data: 15
  9707. slots:
  9708. - 0
  9709. - 1
  9710. - 2
  9711. - 3
  9712. - 5
  9713. - 6
  9714. - 7
  9715. - 8
  9716. - 9
  9717. - 10
  9718. - 16
  9719. - 17
  9720. - 18
  9721. - 19
  9722. - 25
  9723. - 26
  9724. - 27
  9725. - 28
  9726. - 34
  9727. - 35
  9728. - 36
  9729. - 37
  9730. - 38
  9731. - 42
  9732. - 43
  9733. - 44
  9734. - 45
  9735. - 46
  9736. - 47
  9737. - 48
  9738. - 49
  9739. - 50
  9740. - 51
  9741. - 52
  9742. - 53
  9743. priority: 1
  9744. rankss:
  9745. menu_title: '&8» Store Ranks'
  9746. size: 27
  9747. open_command:
  9748. - rank
  9749. - ranks
  9750. items:
  9751. '1':
  9752. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGI5ZmU1N2FkMWQ4NzgxNjFhODM4MDI4MjkxYzE3ODMxZWQzYTc3YTc0NmZmYzhiZDVkYmI0NzdhN2VhMyJ9fX0=
  9753. slot: 11
  9754. priority: 1
  9755. display_name: '&d&lRank &8» &a&lVIP'
  9756. lore:
  9757. - '&fYou can access to buy'
  9758. - '&fthis available rank'
  9759. - '&fin the server shop'
  9760. - '&5www.server.net&f.'
  9761. - ''
  9762. - '&5&nClick to see the information!'
  9763. left_click_commands:
  9764. - '[openguimenu] infovip'
  9765. - '[close]'
  9766. right_click_commands:
  9767. - '[openguimenu] infovip'
  9768. - '[close]'
  9769. '2':
  9770. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmRlNjQyYzM2YzcxYzM0Y2M4OTM3OTExYzRhNDE0NWE0NTlkYjQ3MjI2MjVkYjVhZmM5MWQ1ZjgzOWZiZjA3ZSJ9fX0=
  9771. slot: 12
  9772. priority: 1
  9773. display_name: '&d&lRank &8» &b&lVIP+'
  9774. lore:
  9775. - '&fYou can access to buy'
  9776. - '&fthis available rank'
  9777. - '&fin the server shop'
  9778. - '&5www.server.net&f.'
  9779. - ''
  9780. - '&5&nClick to see the information!'
  9781. left_click_commands:
  9782. - '[openguimenu] infovip+'
  9783. - '[close]'
  9784. right_click_commands:
  9785. - '[openguimenu] infovip+'
  9786. - '[close]'
  9787. '3':
  9788. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGMzMjQyYzIyYzJkZTIzZWYzNzlmMTI2ZTlmYjE1NGQ2MDU4ODVlNmE3NGFhMjcyNDI5ZWY0OWEzMzFlMzI1YiJ9fX0=
  9789. slot: 13
  9790. priority: 1
  9791. display_name: '&d&lRank &8» &d&lVIP++'
  9792. lore:
  9793. - '&fYou can access to buy'
  9794. - '&fthis available rank'
  9795. - '&fin the server shop'
  9796. - '&5www.server.net&f.'
  9797. - ''
  9798. - '&5&nClick to see the information!'
  9799. left_click_commands:
  9800. - '[openguimenu] infovip++'
  9801. - '[close]'
  9802. right_click_commands:
  9803. - '[openguimenu] infovip++'
  9804. - '[close]'
  9805. '4':
  9806. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzljMWE0NzRhODkxZWYyNDY1YTlmMzc5ZTNjNTNkN2I1MGE5MWNiMDc4ZDliNzVkN2NmMjI5NWFmYjEyYzEifX19
  9807. slot: 14
  9808. priority: 1
  9809. display_name: '&d&lRank &8» &c&lVIP+++'
  9810. lore:
  9811. - '&fYou can access to buy'
  9812. - '&fthis available rank'
  9813. - '&fin the server shop'
  9814. - '&5www.server.net&f.'
  9815. - ''
  9816. - '&5&nClick to see the information!'
  9817. left_click_commands:
  9818. - '[openguimenu] infovip+++'
  9819. - '[close]'
  9820. right_click_commands:
  9821. - '[openguimenu] infovip+++'
  9822. - '[close]'
  9823. '5':
  9824. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc4MmQ1ZjM1NjY0Nzg5M2UyNzVhOWI5ZDFlOWJlNDc1NmJkZmFhZmI3YmQ5ZmNiZWU2ZTQxMzk0NmVlZDFhIn19fQ==
  9825. slot: 15
  9826. priority: 1
  9827. display_name: '&d&lRank &8» &e&lVIP++++'
  9828. lore:
  9829. - '&fYou can access to buy'
  9830. - '&fthis available rank'
  9831. - '&fin the server shop'
  9832. - '&5www.server.net&f.'
  9833. - ''
  9834. - '&5&nClick to see the information!'
  9835. left_click_commands:
  9836. - '[openguimenu] infovip++++'
  9837. - '[close]'
  9838. right_click_commands:
  9839. - '[openguimenu] infovip++++'
  9840. - '[close]'
  9841. '10':
  9842. material: 160
  9843. display_name: '&f'
  9844. data: 15
  9845. slots:
  9846. - 0
  9847. - 1
  9848. - 2
  9849. - 3
  9850. - 4
  9851. - 5
  9852. - 6
  9853. - 7
  9854. - 8
  9855. - 9
  9856. - 10
  9857. - 16
  9858. - 17
  9859. - 18
  9860. - 19
  9861. - 20
  9862. - 21
  9863. - 22
  9864. - 23
  9865. - 24
  9866. - 25
  9867. - 26
  9868. infovip:
  9869. menu_title: '&8» Rank Information'
  9870. size: 9
  9871. open_command:
  9872. - infovip
  9873. items:
  9874. '1':
  9875. material: PAPER
  9876. slot: 2
  9877. priority: 1
  9878. display_name: '&d&lPerks'
  9879. lore:
  9880. - '&fCheck the &a&lVIP&f''s list'
  9881. - '&fof perks that you will be'
  9882. - '&fable to have with this rank.'
  9883. - ''
  9884. - '&5&nLeft-click to preview!'
  9885. left_click_commands:
  9886. - '[console] ib open infovip %player_name%'
  9887. - '[refresh]'
  9888. '2':
  9889. material: BOOK
  9890. slot: 6
  9891. priority: 1
  9892. display_name: '&d&lKit Preview'
  9893. lore:
  9894. - ''
  9895. - '&f&lCONTAIN:'
  9896. - '&5&l* &dArmor;'
  9897. - ' &8» &7Protection I'
  9898. - ''
  9899. - '&5&l* &dWeapon;'
  9900. - ' &8» &7Sharpness II'
  9901. - ' &8» &7Unbreaking I'
  9902. - ' &8» &7Fire Aspect I'
  9903. - ''
  9904. - '&5&l* &dTools;'
  9905. - ' &8» &7Efficiency II'
  9906. - ' &8» &7Unbreaking II'
  9907. - ''
  9908. - '&5&l* &dItems;'
  9909. - ' &8» &7x1 Common Star'
  9910. - ' &8» &7x32 Grass'
  9911. - ' &8» &7x32 Cobblestone'
  9912. - ' &8» &7x1 Sell-wand (10 uses)'
  9913. left_click_commands:
  9914. - '[player] previewkit vip'
  9915. - '[close]'
  9916. '10':
  9917. material: 160
  9918. display_name: '&f'
  9919. data: 15
  9920. slots:
  9921. - 0
  9922. - 1
  9923. - 3
  9924. - 4
  9925. - 5
  9926. - 7
  9927. - 8
  9928. infovip+:
  9929. menu_title: '&8» Rank Information'
  9930. size: 9
  9931. open_command:
  9932. - infovip+
  9933. items:
  9934. '1':
  9935. material: PAPER
  9936. slot: 2
  9937. priority: 1
  9938. display_name: '&d&lPerks'
  9939. lore:
  9940. - '&fCheck the &b&lVIP+&f''s list'
  9941. - '&fof perks that you will be'
  9942. - '&fable to have with this rank.'
  9943. - ''
  9944. - '&5&nLeft-click to preview!'
  9945. left_click_commands:
  9946. - '[console] ib open infovip+ %player_name%'
  9947. - '[refresh]'
  9948. '2':
  9949. material: BOOK
  9950. slot: 6
  9951. priority: 1
  9952. display_name: '&d&lKit Preview'
  9953. lore:
  9954. - ''
  9955. - '&f&lCONTAIN:'
  9956. - '&5&l* &dArmor;'
  9957. - ' &8» &7Protection II'
  9958. - ' &8» &7Unbreaking I'
  9959. - ''
  9960. - '&5&l* &dWeapon;'
  9961. - ' &8» &7Sharpness III'
  9962. - ' &8» &7Unbreaking II'
  9963. - ' &8» &7Fire Aspect II'
  9964. - ' &8» &7Looting I'
  9965. - ''
  9966. - '&5&l* &dTools;'
  9967. - ' &8» &7Efficiency III'
  9968. - ' &8» &7Unbreaking II'
  9969. - ''
  9970. - '&5&l* &dItems;'
  9971. - ' &8» &7x1 Rare Star'
  9972. - ' &8» &7x64 Grass'
  9973. - ' &8» &7x64 Cobblestone'
  9974. - ' &8» &7x1 Sell-wand (20 uses)'
  9975. left_click_commands:
  9976. - '[player] previewkit vip+'
  9977. - '[close]'
  9978. '10':
  9979. material: 160
  9980. display_name: '&f'
  9981. data: 15
  9982. slots:
  9983. - 0
  9984. - 1
  9985. - 3
  9986. - 4
  9987. - 5
  9988. - 7
  9989. - 8
  9990. - 9
  9991. infovip++:
  9992. menu_title: '&8» Rank Information'
  9993. size: 9
  9994. open_command:
  9995. - infovip++
  9996. items:
  9997. '1':
  9998. material: PAPER
  9999. slot: 2
  10000. priority: 1
  10001. display_name: '&d&lPerks'
  10002. lore:
  10003. - '&fCheck the &d&lVIP++&f''s list'
  10004. - '&fof perks that you will be'
  10005. - '&fable to have with this rank.'
  10006. - ''
  10007. - '&5&nLeft-click to preview!'
  10008. left_click_commands:
  10009. - '[console] ib open infovip++ %player_name%'
  10010. - '[refresh]'
  10011. '2':
  10012. material: BOOK
  10013. slot: 6
  10014. priority: 1
  10015. display_name: '&d&lKit Preview'
  10016. lore:
  10017. - ''
  10018. - '&f&lCONTAIN:'
  10019. - '&5&l* &dArmor;'
  10020. - ' &8» &7Protection III'
  10021. - ' &8» &7Unbreaking III'
  10022. - ''
  10023. - '&5&l* &dWeapon;'
  10024. - ' &8» &7Sharpness IV'
  10025. - ' &8» &7Unbreaking III'
  10026. - ' &8» &7Fire Aspect II'
  10027. - ' &8» &7Looting II'
  10028. - ''
  10029. - '&5&l* &dTools;'
  10030. - ' &8» &7Efficiency IV'
  10031. - ' &8» &7Unbreaking II'
  10032. - ''
  10033. - '&5&l* &dItems;'
  10034. - ' &8» &7x2 Rare Star'
  10035. - ' &8» &7x96 Grass'
  10036. - ' &8» &7x96 Cobblestone'
  10037. - ' &8» &7x8 Diamond Block'
  10038. - ' &8» &7x8 Emerald Block'
  10039. - ' &8» &7x1 Sell-wand (30 uses)'
  10040. left_click_commands:
  10041. - '[player] previewkit vip++'
  10042. - '[close]'
  10043. '10':
  10044. material: 160
  10045. display_name: '&f'
  10046. data: 15
  10047. slots:
  10048. - 0
  10049. - 1
  10050. - 3
  10051. - 4
  10052. - 5
  10053. - 7
  10054. - 8
  10055. - 9
  10056. infovip+++:
  10057. menu_title: '&8» Rank Information'
  10058. size: 9
  10059. open_command:
  10060. - infovip+++
  10061. items:
  10062. '1':
  10063. material: PAPER
  10064. slot: 2
  10065. priority: 1
  10066. display_name: '&d&lPerks'
  10067. lore:
  10068. - '&fCheck the &c&lVIP+++&f''s list'
  10069. - '&fof perks that you will be'
  10070. - '&fable to have with this rank.'
  10071. - ''
  10072. - '&5&nLeft-click to preview!'
  10073. left_click_commands:
  10074. - '[console] ib open infovip+++ %player_name%'
  10075. - '[refresh]'
  10076. '2':
  10077. material: BOOK
  10078. slot: 6
  10079. priority: 1
  10080. display_name: '&d&lKit Preview'
  10081. lore:
  10082. - ''
  10083. - '&f&lCONTAIN:'
  10084. - '&5&l* &dArmor;'
  10085. - ' &8» &7Protection IV'
  10086. - ' &8» &7Unbreaking IV'
  10087. - ''
  10088. - '&5&l* &dWeapon;'
  10089. - ' &8» &7Sharpness V'
  10090. - ' &8» &7Unbreaking III'
  10091. - ' &8» &7Fire Aspect II'
  10092. - ' &8» &7Looting III'
  10093. - ' &8» &7Knockback I'
  10094. - ''
  10095. - '&5&l* &dTools;'
  10096. - ' &8» &7Efficiency V'
  10097. - ' &8» &7Unbreaking IV'
  10098. - ' &8» &7Fortune I'
  10099. - ''
  10100. - '&5&l* &dItems;'
  10101. - ' &8» &7x1 Legendary Star'
  10102. - ' &8» &7x128 Grass'
  10103. - ' &8» &7x128 Cobblestone'
  10104. - ' &8» &7x16 Diamond Block'
  10105. - ' &8» &7x16 Emerald Block'
  10106. - ' &8» &7x1 Sell-wand (40 uses)'
  10107. left_click_commands:
  10108. - '[player] previewkit vip+++'
  10109. - '[close]'
  10110. '10':
  10111. material: 160
  10112. display_name: '&f'
  10113. data: 15
  10114. slots:
  10115. - 0
  10116. - 1
  10117. - 3
  10118. - 4
  10119. - 5
  10120. - 7
  10121. - 8
  10122. - 9
  10123. infovip++++:
  10124. menu_title: '&8» Rank Information'
  10125. size: 9
  10126. open_command:
  10127. - infovip++++
  10128. items:
  10129. '1':
  10130. material: PAPER
  10131. slot: 2
  10132. priority: 1
  10133. display_name: '&d&lPerks'
  10134. lore:
  10135. - '&fCheck the &e&lVIP++++&f''s list'
  10136. - '&fof perks that you will be'
  10137. - '&fable to have with this rank.'
  10138. - ''
  10139. - '&5&nLeft-click to preview!'
  10140. left_click_commands:
  10141. - '[console] ib open infovip++++ %player_name%'
  10142. - '[refresh]'
  10143. '2':
  10144. material: BOOK
  10145. slot: 6
  10146. priority: 1
  10147. display_name: '&d&lKit Preview'
  10148. lore:
  10149. - ''
  10150. - '&f&lCONTAIN:'
  10151. - '&5&l* &dArmor;'
  10152. - ' &8» &7Protection V'
  10153. - ' &8» &7Unbreaking IV'
  10154. - ''
  10155. - '&5&l* &dWeapon;'
  10156. - ' &8» &7Sharpness V'
  10157. - ' &8» &7Unbreaking III'
  10158. - ' &8» &7Fire Aspect II'
  10159. - ' &8» &7Looting III'
  10160. - ' &8» &7Knockback II'
  10161. - ''
  10162. - '&5&l* &dTools;'
  10163. - ' &8» &7Efficiency VI'
  10164. - ' &8» &7Unbreaking IV'
  10165. - ' &8» &7Fortune II'
  10166. - ''
  10167. - '&5&l* &dItems;'
  10168. - ' &8» &7x2 Legendary Star'
  10169. - ' &8» &7x190 Grass'
  10170. - ' &8» &7x190 Cobblestone'
  10171. - ' &8» &7x32 Diamond Block'
  10172. - ' &8» &7x32 Emerald Block'
  10173. - ' &8» &7x1 Sell-wand (50 uses)'
  10174. left_click_commands:
  10175. - '[player] previewkit vip++++'
  10176. - '[close]'
  10177. '10':
  10178. material: 160
  10179. display_name: '&f'
  10180. data: 15
  10181. slots:
  10182. - 0
  10183. - 1
  10184. - 3
  10185. - 4
  10186. - 5
  10187. - 7
  10188. - 8
  10189. - 9
  10190. isborders:
  10191. open_command:
  10192. - asfwaedwdwef34feee3es
  10193. update_interval: 1
  10194. menu_title: '&8» Island Borders'
  10195. size: 27
  10196. items:
  10197. '929':
  10198. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjMxODUwNDZhMzVhYzg0MDU5ZWZlYjUyMjQxYmUwM2M4YTk0OTlkMjhkYTdlZGNhMmZjZTM3NWM4NTE4NTg3OSJ9fX0=
  10199. data: 3
  10200. slot: 10
  10201. priority: 1
  10202. view_requirement:
  10203. requirements:
  10204. music:
  10205. type: has permission
  10206. permission: isborder.color.green
  10207. display_name: '&a&lGreen'
  10208. lore:
  10209. - ''
  10210. - '&fPaint the current island'
  10211. - '&fborder to green to stand'
  10212. - '&fout the others!'
  10213. - ''
  10214. - '&d&lREQUIREMENTS:'
  10215. - '&5&l* &fRank: &a&lVIP &7or higher'
  10216. - ''
  10217. - '&5&nClick to paint!'
  10218. left_click_commands:
  10219. - '[player] isborder setcolor green'
  10220. - '[close]'
  10221. - '[refresh]'
  10222. right_click_commands:
  10223. - '[player] isborder setcolor green'
  10224. - '[close]'
  10225. - '[refresh]'
  10226. '9299':
  10227. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjMxODUwNDZhMzVhYzg0MDU5ZWZlYjUyMjQxYmUwM2M4YTk0OTlkMjhkYTdlZGNhMmZjZTM3NWM4NTE4NTg3OSJ9fX0=
  10228. data: 3
  10229. slot: 10
  10230. priority: 2
  10231. display_name: '&a&lGreen'
  10232. lore:
  10233. - ''
  10234. - '&fPaint the current island'
  10235. - '&fborder to green to stand'
  10236. - '&fout the others!'
  10237. - ''
  10238. - '&d&lREQUIREMENTS:'
  10239. - '&5&l* &fRank: &a&lVIP &7or higher'
  10240. - ''
  10241. - '&c&oYou do not have enough rank!'
  10242. '939':
  10243. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTM2ZDcxODQzYzY3ZjU0ZTEzYmE2MTg3ZGE0OGQ4ZjI0OThjMmFmOGEyMmY4NTY4NjQxNzg2MmY2MWFlMTYxIn19fQ==
  10244. data: 3
  10245. slot: 16
  10246. priority: 1
  10247. view_requirement:
  10248. requirements:
  10249. music:
  10250. type: has permission
  10251. permission: isborder.color.red
  10252. display_name: '&c&lRed'
  10253. lore:
  10254. - ''
  10255. - '&fPaint the current island'
  10256. - '&fborder to green to stand'
  10257. - '&fout the others!'
  10258. - ''
  10259. - '&d&lREQUIREMENTS:'
  10260. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  10261. - ''
  10262. - '&5&nClick to select!'
  10263. left_click_commands:
  10264. - '[player] isborder setcolor green'
  10265. - '[close]'
  10266. - '[refresh]'
  10267. right_click_commands:
  10268. - '[player] isborder setcolor green'
  10269. - '[close]'
  10270. - '[refresh]'
  10271. '9399':
  10272. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTM2ZDcxODQzYzY3ZjU0ZTEzYmE2MTg3ZGE0OGQ4ZjI0OThjMmFmOGEyMmY4NTY4NjQxNzg2MmY2MWFlMTYxIn19fQ==
  10273. data: 3
  10274. slot: 16
  10275. priority: 2
  10276. display_name: '&c&lRed'
  10277. lore:
  10278. - ''
  10279. - '&fPaint the current island'
  10280. - '&fborder to green to stand'
  10281. - '&fout the others!'
  10282. - ''
  10283. - '&d&lREQUIREMENTS:'
  10284. - '&5&l* &fRank: &c&lVIP+++ &7or higher'
  10285. - ''
  10286. - '&c&oYou do not have enough rank!'
  10287. '1925923223':
  10288. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2VkMWFiYTczZjYzOWY0YmM0MmJkNDgxOTZjNzE1MTk3YmUyNzEyYzNiOTYyYzk3ZWJmOWU5ZWQ4ZWZhMDI1In19fQ==
  10289. data: 3
  10290. slot: 13
  10291. priority: 1
  10292. display_name: '&c&lReset'
  10293. lore:
  10294. - ''
  10295. - '&fReset the island border'
  10296. - '&fcolor if you do not like'
  10297. - '&fit anymore!'
  10298. - ''
  10299. - '&5&nClick to reset!'
  10300. left_click_commands:
  10301. - '[player] isborder setcolor blue'
  10302. - '[close]'
  10303. - '[refresh]'
  10304. right_click_commands:
  10305. - '[player] isborder setcolor blue'
  10306. - '[close]'
  10307. - '[refresh]'
  10308. '20':
  10309. material: 160
  10310. display_name: '&f'
  10311. data: 15
  10312. slots:
  10313. - 0
  10314. - 1
  10315. - 2
  10316. - 3
  10317. - 4
  10318. - 5
  10319. - 6
  10320. - 7
  10321. - 8
  10322. - 9
  10323. - 11
  10324. - 12
  10325. - 14
  10326. - 15
  10327. - 17
  10328. - 18
  10329. - 19
  10330. - 20
  10331. - 21
  10332. - 22
  10333. - 23
  10334. - 24
  10335. - 25
  10336. - 26
  10337. priority: 1
  10338. isskills:
  10339. open_command:
  10340. - dsfewd2fewfeq
  10341. update_interval: 1
  10342. menu_title: '&8» Island Skills'
  10343. size: 27
  10344. items:
  10345. '99':
  10346. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDM5MWRmZmJlYTJmYzNmMmFkNzhhNjIzZjQ5YmY3ZTExMjE2OTQxMTJjMzc1OWZlZWQ0MTU2ZmMyYmE0NmMwIn19fQ==
  10347. data: 3
  10348. slot: 11
  10349. priority: 1
  10350. display_name: '&d&lFarming'
  10351. lore:
  10352. - ''
  10353. - '&fUnlock new seeds for your'
  10354. - '&fisland and plant them with'
  10355. - '&frecipes!'
  10356. - ''
  10357. - '&d&lINFORMATION:'
  10358. - '&5&l* &fLevel: %javascript_farming1%'
  10359. - ''
  10360. - '&5&nClick to process!'
  10361. left_click_commands:
  10362. - '[openguimenu] ssfarming'
  10363. - '[close]'
  10364. - '[refresh]'
  10365. right_click_commands:
  10366. - '[openguimenu] ssfarming'
  10367. - '[close]'
  10368. - '[refresh]'
  10369. '9923':
  10370. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjQ3ZTJlNWQ1NWI2ZDA0OTQzNTE5YmVkMjU1N2M2MzI5ZTMzYjYwYjkwOWRlZTg5MjNjZDg4YjExNTIxMCJ9fX0=
  10371. data: 3
  10372. slot: 15
  10373. priority: 1
  10374. display_name: '&d&lMob Spawner'
  10375. lore:
  10376. - ''
  10377. - '&fUnlock mob spawners for your'
  10378. - '&fisland and make monsters'
  10379. - '&fspawn!'
  10380. - ''
  10381. - '&c&oComing very soon!'
  10382. '20':
  10383. material: 160
  10384. display_name: '&f'
  10385. data: 15
  10386. slots:
  10387. - 0
  10388. - 1
  10389. - 2
  10390. - 3
  10391. - 4
  10392. - 5
  10393. - 6
  10394. - 7
  10395. - 8
  10396. - 9
  10397. - 10
  10398. - 12
  10399. - 13
  10400. - 14
  10401. - 16
  10402. - 17
  10403. - 18
  10404. - 19
  10405. - 20
  10406. - 21
  10407. - 22
  10408. - 23
  10409. - 24
  10410. - 25
  10411. - 26
  10412. priority: 1
  10413. ssfarming:
  10414. open_command:
  10415. - d342dffe3edewere
  10416. update_interval: 1
  10417. menu_title: '&8» Farming Skill'
  10418. size: 36
  10419. items:
  10420. '9':
  10421. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  10422. data: 3
  10423. slot: 10
  10424. priority: 1
  10425. display_name: '&d&lBack'
  10426. lore:
  10427. - ''
  10428. - '&5&nClick to go back!'
  10429. left_click_commands:
  10430. - '[openguimenu] isskills'
  10431. - '[refresh]'
  10432. right_click_commands:
  10433. - '[openguimenu] isskills'
  10434. - '[refresh]'
  10435. '99':
  10436. material: wheat
  10437. slot: 12
  10438. priority: 1
  10439. display_name: '&a&lWheat'
  10440. lore:
  10441. - ''
  10442. - '&fYou are a natural and normal'
  10443. - '&ffarmer, so you can plant wheat!'
  10444. - ''
  10445. - '&d&lINFORMATION:'
  10446. - '&5&l* &fStatus: &a&lUNLOCKED'
  10447. '934':
  10448. material: 392
  10449. slot: 13
  10450. priority: 2
  10451. view_requirement:
  10452. requirements:
  10453. name:
  10454. type: '>='
  10455. input: '%statz_blocks_broken_59:7%'
  10456. output: 100
  10457. display_name: '&d&lPotatoes'
  10458. lore:
  10459. - ''
  10460. - '&d&lINFORMATION:'
  10461. - '&5&l* &fStatus: &c&lLOCKED'
  10462. - ''
  10463. - '&d&lREQUIREMENTS:'
  10464. - '&5&l* &fWheat Collected: &d%statz_blocks_broken_59:7%/100'
  10465. - ''
  10466. - '&5&nClick to unlock!'
  10467. left_click_commands:
  10468. - '[console] pex user %player_name% add ulimits.limit.unlocked1'
  10469. - '[console] pex user %player_name% add farming.potato'
  10470. - '[console] titlemanager:tm message %player_name% &7\n&d&lPotatoes &funlocked in island!'
  10471. - '[close]'
  10472. - '[refresh]'
  10473. right_click_commands:
  10474. - '[console] pex user %player_name% add ulimits.limit.unlocked1'
  10475. - '[console] pex user %player_name% add farming.potato'
  10476. - '[console] titlemanager:tm message %player_name% &7\n&d&lPotatoes &funlocked in island!'
  10477. - '[close]'
  10478. - '[refresh]'
  10479. '12312':
  10480. material: 392
  10481. slot: 13
  10482. priority: 1
  10483. view_requirement:
  10484. requirements:
  10485. name:
  10486. type: has permission
  10487. permission: farming.potato
  10488. display_name: '&d&lPotatoes'
  10489. lore:
  10490. - ''
  10491. - '&d&lINFORMATION:'
  10492. - '&5&l* &fStatus: &a&lUNLOCKED'
  10493. - ''
  10494. - '&7&oYou can plant potatoes already!'
  10495. '123143511231225':
  10496. material: 392
  10497. slot: 13
  10498. priority: 3
  10499. display_name: '&d&lPotatoes'
  10500. lore:
  10501. - ''
  10502. - '&d&lINFORMATION:'
  10503. - '&5&l* &fStatus: &c&lLOCKED'
  10504. - ''
  10505. - '&d&lREQUIREMENTS:'
  10506. - '&5&l* &fWheat Collected: &d%statz_blocks_broken_59:7%/100'
  10507. - ''
  10508. - '&c&oYou do not have the requirements!'
  10509. '9341132444':
  10510. material: 391
  10511. slot: 14
  10512. priority: 2
  10513. view_requirement:
  10514. requirements:
  10515. name:
  10516. type: '>='
  10517. input: '%statz_blocks_broken_142:7%'
  10518. output: 750
  10519. name2:
  10520. type: has permission
  10521. permission: recipe.carrot
  10522. display_name: '&d&lCarrots'
  10523. lore:
  10524. - ''
  10525. - '&d&lINFORMATION:'
  10526. - '&5&l* &fStatus: &c&lLOCKED'
  10527. - ''
  10528. - '&d&lREQUIREMENTS:'
  10529. - '&5&l* &fPotatoes Collected: &d%statz_blocks_broken_142:7%/750'
  10530. - '&5&l* &fFarming Recipe: &eCarrot'
  10531. - ''
  10532. - '&5&nClick to unlock!'
  10533. left_click_commands:
  10534. - '[console] pex user %player_name% add ulimits.limit.unlocked2'
  10535. - '[console] pex user %player_name% add farming.carrot'
  10536. - '[console] titlemanager:tm message %player_name% &7\n&d&lCarrots &funlocked in island!'
  10537. - '[close]'
  10538. - '[refresh]'
  10539. right_click_commands:
  10540. - '[console] pex user %player_name% add ulimits.limit.unlocked2'
  10541. - '[console] pex user %player_name% add farming.carrot'
  10542. - '[console] titlemanager:tm message %player_name% &7\n&d&lCarrots &funlocked in island!'
  10543. - '[close]'
  10544. - '[refresh]'
  10545. '1231212se3512':
  10546. material: 391
  10547. slot: 14
  10548. priority: 1
  10549. view_requirement:
  10550. requirements:
  10551. name:
  10552. type: has permission
  10553. permission: farming.carrot
  10554. display_name: '&d&lCarrots'
  10555. lore:
  10556. - ''
  10557. - '&d&lINFORMATION:'
  10558. - '&5&l* &fStatus: &a&lUNLOCKED'
  10559. - ''
  10560. - '&7&oYou can plant carrots already!'
  10561. '1231215fsa1236d24ddf3511231225':
  10562. material: 391
  10563. slot: 14
  10564. priority: 3
  10565. display_name: '&d&lCarrots'
  10566. lore:
  10567. - ''
  10568. - '&d&lINFORMATION:'
  10569. - '&5&l* &fStatus: &c&lLOCKED'
  10570. - ''
  10571. - '&d&lREQUIREMENTS:'
  10572. - '&5&l* &fPotatoes Collected: &d%statz_blocks_broken_142:7%/750'
  10573. - '&5&l* &fFarming Recipe: &eCarrot'
  10574. - ''
  10575. - '&c&oYou do not have the requirements!'
  10576. '9343sd53234f2444':
  10577. material: 338
  10578. slot: 15
  10579. priority: 2
  10580. view_requirement:
  10581. requirements:
  10582. name:
  10583. type: '>='
  10584. input: '%statz_blocks_broken_141:7%'
  10585. output: 4000
  10586. name2:
  10587. type: has permission
  10588. permission: recipe.sugarcane
  10589. display_name: '&d&lSugar Cane'
  10590. lore:
  10591. - ''
  10592. - '&d&lINFORMATION:'
  10593. - '&5&l* &fStatus: &c&lLOCKED'
  10594. - ''
  10595. - '&d&lREQUIREMENTS:'
  10596. - '&5&l* &fCarrots Collected: &d%statz_blocks_broken_141:7%/4,000'
  10597. - '&5&l* &fFarming Recipe: &eSugar Cane'
  10598. - ''
  10599. - '&5&nClick to unlock!'
  10600. left_click_commands:
  10601. - '[console] pex user %player_name% add ulimits.limit.unlocked3'
  10602. - '[console] pex user %player_name% add farming.sugarcane'
  10603. - '[console] titlemanager:tm message %player_name% &7\n&d&lSugar Cane &funlocked in island!'
  10604. - '[close]'
  10605. - '[refresh]'
  10606. right_click_commands:
  10607. - '[console] pex user %player_name% add ulimits.limit.unlocked3'
  10608. - '[console] pex user %player_name% add farming.sugarcane'
  10609. - '[console] titlemanager:tm message %player_name% &7\n&d&lSugar Cane &funlocked in island!'
  10610. - '[close]'
  10611. - '[refresh]'
  10612. '12312e1fsad21313512':
  10613. material: 338
  10614. slot: 15
  10615. priority: 1
  10616. view_requirement:
  10617. requirements:
  10618. name:
  10619. type: has permission
  10620. permission: farming.sugarcane
  10621. display_name: '&d&lSugar Cane'
  10622. lore:
  10623. - ''
  10624. - '&d&lINFORMATION:'
  10625. - '&5&l* &fStatus: &a&lUNLOCKED'
  10626. - ''
  10627. - '&7&oYou can plant sugar canes already!'
  10628. '1231215fsa123d24dd25':
  10629. material: 338
  10630. slot: 15
  10631. priority: 3
  10632. display_name: '&d&lSugar Cane'
  10633. lore:
  10634. - ''
  10635. - '&d&lINFORMATION:'
  10636. - '&5&l* &fStatus: &c&lLOCKED'
  10637. - ''
  10638. - '&d&lREQUIREMENTS:'
  10639. - '&5&l* &fCarrots Collected: &d%statz_blocks_broken_141:7%/4,000'
  10640. - '&5&l* &fFarming Recipe: &eSugar Cane'
  10641. - ''
  10642. - '&c&oYou do not have the requirements!'
  10643. '9343111sdf2444':
  10644. material: melon
  10645. slot: 16
  10646. priority: 2
  10647. view_requirement:
  10648. requirements:
  10649. name:
  10650. type: '>='
  10651. input: '%statistic_craft_item:sugar%'
  10652. output: 25000
  10653. name2:
  10654. type: has permission
  10655. permission: recipe.melons
  10656. display_name: '&d&lMelons'
  10657. lore:
  10658. - ''
  10659. - '&d&lINFORMATION:'
  10660. - '&5&l* &fStatus: &c&lLOCKED'
  10661. - ''
  10662. - '&d&lREQUIREMENTS:'
  10663. - '&5&l* &fSugar Crafted: &d%statistic_craft_item:sugar%/25,000'
  10664. - '&5&l* &fFarming Recipe: &eMelons'
  10665. - ''
  10666. - '&5&nClick to unlock!'
  10667. left_click_commands:
  10668. - '[console] pex user %player_name% add ulimits.limit.unlocked4'
  10669. - '[console] pex user %player_name% add farming.melons'
  10670. - '[console] titlemanager:tm message %player_name% &7\n&d&lMelons &funlocked in island!'
  10671. - '[close]'
  10672. - '[refresh]'
  10673. right_click_commands:
  10674. - '[console] pex user %player_name% add ulimits.limit.unlocked4'
  10675. - '[console] pex user %player_name% add farming.melons'
  10676. - '[console] titlemanager:tm message %player_name% &7\n&d&lMelons &funlocked in island!'
  10677. - '[close]'
  10678. - '[refresh]'
  10679. '112312e1fsad3512':
  10680. material: melon
  10681. slot: 16
  10682. priority: 1
  10683. view_requirement:
  10684. requirements:
  10685. name:
  10686. type: has permission
  10687. permission: farming.melons
  10688. display_name: '&d&lMelons'
  10689. lore:
  10690. - ''
  10691. - '&d&lINFORMATION:'
  10692. - '&5&l* &fStatus: &a&lUNLOCKED'
  10693. - ''
  10694. - '&7&oYou can plant melons already!'
  10695. '1231215fsa123d35125':
  10696. material: melon
  10697. slot: 16
  10698. priority: 3
  10699. display_name: '&d&lMelons'
  10700. lore:
  10701. - ''
  10702. - '&d&lINFORMATION:'
  10703. - '&5&l* &fStatus: &c&lLOCKED'
  10704. - ''
  10705. - '&d&lREQUIREMENTS:'
  10706. - '&5&l* &fSugar Crafted: &d%statistic_craft_item:sugar%/25,000'
  10707. - '&5&l* &fFarming Recipe: &eMelons'
  10708. - ''
  10709. - '&c&oYou do not have the requirements!'
  10710. '93413111s1df2434411111544':
  10711. material: pumpkin
  10712. slot: 21
  10713. priority: 2
  10714. view_requirement:
  10715. requirements:
  10716. name:
  10717. type: '>='
  10718. input: '%statz_blocks_broken_105:7%'
  10719. output: 50000
  10720. name2:
  10721. type: has permission
  10722. permission: recipe.pumpkins
  10723. display_name: '&d&lPumpkins'
  10724. lore:
  10725. - ''
  10726. - '&d&lINFORMATION:'
  10727. - '&5&l* &fStatus: &c&lLOCKED'
  10728. - ''
  10729. - '&d&lREQUIREMENTS:'
  10730. - '&5&l* &fMelons Stem Collected: &d%statz_blocks_broken_105:7%/25,000'
  10731. - '&5&l* &fFarming Recipe: &ePumpkins'
  10732. - ''
  10733. - '&5&nClick to unlock!'
  10734. left_click_commands:
  10735. - '[console] pex user %player_name% add ulimits.limit.unlocked5'
  10736. - '[console] pex user %player_name% add farming.melons'
  10737. - '[console] titlemanager:tm message %player_name% &7\n&d&lMelons &funlocked in island!'
  10738. - '[close]'
  10739. - '[refresh]'
  10740. right_click_commands:
  10741. - '[console] pex user %player_name% add ulimits.limit.unlocked5'
  10742. - '[console] pex user %player_name% add farming.pumpkins'
  10743. - '[console] titlemanager:tm message %player_name% &7\n&d&lPumpkins &funlocked in island!'
  10744. - '[close]'
  10745. - '[refresh]'
  10746. '123121e1fw11111esad35125':
  10747. material: pumpkin
  10748. slot: 21
  10749. priority: 1
  10750. view_requirement:
  10751. requirements:
  10752. name:
  10753. type: has permission
  10754. permission: farming.pumpkins
  10755. display_name: '&d&lPumpkins'
  10756. lore:
  10757. - ''
  10758. - '&d&lINFORMATION:'
  10759. - '&5&l* &fStatus: &a&lUNLOCKED'
  10760. - ''
  10761. - '&7&oYou can plant melons already!'
  10762. '123121111e1fwdaesa123d35125':
  10763. material: pumpkin
  10764. slot: 21
  10765. priority: 3
  10766. display_name: '&d&lPumpkins'
  10767. lore:
  10768. - ''
  10769. - '&d&lINFORMATION:'
  10770. - '&5&l* &fStatus: &c&lLOCKED'
  10771. - ''
  10772. - '&d&lREQUIREMENTS:'
  10773. - '&5&l* &fMelons Stem Collected: &d%statz_blocks_broken_105:7%/25,000'
  10774. - '&5&l* &fFarming Recipe: &ePumpkins'
  10775. - ''
  10776. - '&c&oYou do not have the requirements!'
  10777. '93413111111s1df24344544':
  10778. material: 372
  10779. slot: 22
  10780. priority: 2
  10781. view_requirement:
  10782. requirements:
  10783. name:
  10784. type: '>='
  10785. input: '%vault_eco_balance_fixed%'
  10786. output: 1
  10787. name2:
  10788. type: has permission
  10789. permission: recipe.netherwarts
  10790. display_name: '&d&lNether Warts'
  10791. lore:
  10792. - ''
  10793. - '&d&lINFORMATION:'
  10794. - '&5&l* &fStatus: &c&lLOCKED'
  10795. - ''
  10796. - '&d&lREQUIREMENTS:'
  10797. - '&5&l* &fPumpkins Stem Collected: &d%statz_blocks_broken_104:7%/25,000'
  10798. - '&5&l* &fFarming Recipe: &eNether Warts'
  10799. - ''
  10800. - '&5&nClick to unlock!'
  10801. left_click_commands:
  10802. - '[console] pex user %player_name% add ulimits.limit.unlocked6'
  10803. - '[console] pex user %player_name% add farming.netherwart'
  10804. - '[console] titlemanager:tm message %player_name% &7\n&d&lNether Warts &funlocked in island!'
  10805. - '[close]'
  10806. - '[refresh]'
  10807. right_click_commands:
  10808. - '[console] pex user %player_name% add ulimits.limit.unlocked6'
  10809. - '[console] pex user %player_name% add farming.netherwart'
  10810. - '[console] titlemanager:tm message %player_name% &7\n&d&lNether Warts &funlocked in island!'
  10811. - '[close]'
  10812. - '[refresh]'
  10813. '123111121e1fwesad35125':
  10814. material: 372
  10815. slot: 22
  10816. priority: 1
  10817. view_requirement:
  10818. requirements:
  10819. name:
  10820. type: has permission
  10821. permission: farming.netherwart
  10822. display_name: '&d&lNether Warts'
  10823. lore:
  10824. - ''
  10825. - '&d&lINFORMATION:'
  10826. - '&5&l* &fStatus: &a&lUNLOCKED'
  10827. - ''
  10828. - '&7&oYou can plant nether warts already!'
  10829. '123121111e1fwesa123d35125':
  10830. material: 372
  10831. slot: 22
  10832. priority: 3
  10833. display_name: '&d&lNether Warts'
  10834. lore:
  10835. - ''
  10836. - '&d&lINFORMATION:'
  10837. - '&5&l* &fStatus: &c&lLOCKED'
  10838. - ''
  10839. - '&d&lREQUIREMENTS:'
  10840. - '&5&l* &fPumpkins Stem Collected: &d%statz_blocks_broken_104:7%/25,000'
  10841. - '&5&l* &fFarming Recipe: &eNether Warts'
  10842. - ''
  10843. - '&c&oYou do not have the requirements!'
  10844. '20':
  10845. material: 160
  10846. display_name: '&f'
  10847. data: 15
  10848. slots:
  10849. - 0
  10850. - 1
  10851. - 2
  10852. - 3
  10853. - 4
  10854. - 5
  10855. - 6
  10856. - 7
  10857. - 8
  10858. - 9
  10859. - 11
  10860. - 17
  10861. - 18
  10862. - 19
  10863. - 20
  10864. - 26
  10865. - 27
  10866. - 28
  10867. - 29
  10868. - 30
  10869. - 31
  10870. - 32
  10871. - 33
  10872. - 34
  10873. - 35
  10874. priority: 1
Add Comment
Please, Sign In to add comment