Guest User

Untitled

a guest
Aug 25th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 181.08 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: false
  315. gui_menus:
  316. island:
  317. menu_title: '&8» Your island'
  318. inventory_type: CHEST
  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. warps:
  823. menu_title: '&8» Warps'
  824. inventory_type: CHEST
  825. open_command:
  826. - warp
  827. - warps
  828. - essentials:warp
  829. - essentials:warps
  830. size: 36
  831. items:
  832. '23':
  833. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  834. data: 3
  835. amount: 1
  836. slot: 12
  837. priority: 1
  838. display_name: '&d&lCrates'
  839. lore:
  840. - ''
  841. - '&5&l* &fTeleport to the crates area'
  842. - '&fto use your crate keys!'
  843. - ''
  844. - '&5&nClick to teleport!'
  845. left_click_commands:
  846. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to crates...'
  847. - '[close]'
  848. - '[console] warp crates %player_name%<delay=40>'
  849. - '[refresh]'
  850. right_click_commands:
  851. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to crates...'
  852. - '[close]'
  853. - '[console] warp crates %player_name%<delay=40>'
  854. - '[refresh]'
  855. '20':
  856. material: 160
  857. display_name: '&f'
  858. data: 15
  859. slots:
  860. - 0
  861. - 1
  862. - 2
  863. - 3
  864. - 4
  865. - 5
  866. - 6
  867. - 7
  868. - 8
  869. - 9
  870. - 10
  871. - 11
  872. - 15
  873. - 16
  874. - 17
  875. - 18
  876. - 19
  877. - 20
  878. - 24
  879. - 25
  880. - 26
  881. - 27
  882. - 28
  883. - 29
  884. - 30
  885. - 31
  886. - 32
  887. - 33
  888. - 34
  889. - 35
  890. priority: 1
  891. '22':
  892. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzk1ZDM3OTkzZTU5NDA4MjY3ODQ3MmJmOWQ4NjgyMzQxM2MyNTBkNDMzMmEyYzdkOGM1MmRlNDk3NmIzNjIifX19
  893. data: 3
  894. amount: 1
  895. slot: 13
  896. view_requirement:
  897. requirements:
  898. music:
  899. type: string equals
  900. input: '%javascript_permissionscore%'
  901. output: 'no'
  902. priority: 1
  903. display_name: '&d&lIsland'
  904. lore:
  905. - ''
  906. - '&5&l* &fTeleport to your island!'
  907. - ''
  908. - '&7&oYou are not in a island'
  909. - '&7&owhere you can teleport to'
  910. - ''
  911. - '&5&nClick to create one!'
  912. left_click_commands:
  913. - '[openguimenu] island'
  914. - '[refresh]'
  915. right_click_commands:
  916. - '[openguimenu] island'
  917. - '[refresh]'
  918. '25':
  919. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzk1ZDM3OTkzZTU5NDA4MjY3ODQ3MmJmOWQ4NjgyMzQxM2MyNTBkNDMzMmEyYzdkOGM1MmRlNDk3NmIzNjIifX19
  920. data: 3
  921. amount: 1
  922. slot: 13
  923. priority: 2
  924. display_name: '&d&lIsland'
  925. lore:
  926. - ''
  927. - '&5&l* &fTeleport to your island!'
  928. - ''
  929. - '&5&nClick to teleport!'
  930. left_click_commands:
  931. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to your
  932. island...'
  933. - '[close]'
  934. - '[player] is go<delay=40>'
  935. - '[refresh]'
  936. right_click_commands:
  937. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to your
  938. island...'
  939. - '[close]'
  940. - '[player] is go<delay=40>'
  941. - '[refresh]'
  942. '24':
  943. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzJiYWYwYzU4OWE2YjU4MzUxMWQ4M2MyNjgyNDA4NDJkMzM2NDc3NGVjOWY1NjZkMWZkNGQzNDljZjQyZmIifX19
  944. data: 3
  945. amount: 1
  946. slot: 14
  947. priority: 1
  948. display_name: '&d&lLeaderboard'
  949. lore:
  950. - ''
  951. - '&5&l* &fView the top islanders'
  952. - '&fand richest members!'
  953. - ''
  954. - '&5&nClick to teleport!'
  955. left_click_commands:
  956. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  957. leaderboard...'
  958. - '[close]'
  959. - '[console] warp leaderboard %player_name%<delay=40>'
  960. - '[refresh]'
  961. right_click_commands:
  962. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  963. leaderboard...'
  964. - '[close]'
  965. - '[console] warp leaderboard %player_name%<delay=40>'
  966. - '[refresh]'
  967. '26':
  968. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjAyYjhiZDhkOWY0OWNkMmY1ZjY3MWRkZDViMGY5ZDgyMjM3MTM5ODg2ZDhhMjFiNmY4OWE3ZmE3YjEwOTZmIn19fQ==
  969. data: 3
  970. amount: 1
  971. slot: 21
  972. priority: 1
  973. display_name: '&d&lMines'
  974. lore:
  975. - ''
  976. - '&5&l* &fUnlock mines to mine minerals'
  977. - '&fand fight mine bosses!'
  978. - ''
  979. - '&5&nClick to view!'
  980. left_click_commands:
  981. - '[openguimenu] mines'
  982. - '[refresh]'
  983. right_click_commands:
  984. - '[openguimenu] mines'
  985. - '[refresh]'
  986. '27':
  987. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2RmZmQ5NWM4ZmNkYmFlZDllOWU5YmU0N2VhMWE0MWVlMTIyOWQ4OWI1YzZkNDJhMWY3YjJmN2YxMWJkMTEyMiJ9fX0=
  988. data: 3
  989. amount: 1
  990. slot: 22
  991. priority: 1
  992. display_name: '&d&lPvP'
  993. lore:
  994. - ''
  995. - '&5&l* &fFight other members here'
  996. - '&for slay &c&lEXODIA&f!'
  997. - ''
  998. - '&5&nClick to teleport!'
  999. left_click_commands:
  1000. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  1001. pvp...'
  1002. - '[close]'
  1003. - '[console] warp pvp %player_name%<delay=40>'
  1004. - '[refresh]'
  1005. right_click_commands:
  1006. - '[console] titlemanager:tm message %player_name% &7\n&aTeleporting to the
  1007. pvp...'
  1008. - '[close]'
  1009. - '[console] warp pvp %player_name%<delay=40>'
  1010. - '[refresh]'
  1011. '28':
  1012. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWY0NTVkMTEzNTVkZThlM2E2Y2Q2ZmU5NzBiYWQ1MWM1OTJhYTZhNTcxNzMwOTI1NWZiMWI5ZTQ3YTRlIn19fQ==
  1013. data: 3
  1014. amount: 1
  1015. slot: 23
  1016. priority: 1
  1017. display_name: '&d&lDungeons'
  1018. lore:
  1019. - ''
  1020. - '&5&l* &fParticipate in the dungeon(s)'
  1021. - '&fto gain rewards and for fun!'
  1022. - ''
  1023. - '&5&nClick to view!'
  1024. left_click_commands:
  1025. - '[openguimenu] dungeons'
  1026. - '[refresh]'
  1027. right_click_commands:
  1028. - '[openguimenu] dungeons'
  1029. - '[refresh]'
  1030. oregen:
  1031. menu_title: '&8» Ore Generator'
  1032. inventory_type: CHEST
  1033. open_command:
  1034. - oregen
  1035. - ores
  1036. - customoregen
  1037. size: 36
  1038. items:
  1039. '23':
  1040. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1041. data: 3
  1042. amount: 1
  1043. slot: 11
  1044. priority: 1
  1045. display_name: '&d&lLevel 0'
  1046. lore:
  1047. - ''
  1048. - '&5&l* &fCobblestone: &e100%'
  1049. '20':
  1050. material: 160
  1051. display_name: '&f'
  1052. data: 15
  1053. slots:
  1054. - 0
  1055. - 1
  1056. - 2
  1057. - 3
  1058. - 4
  1059. - 5
  1060. - 6
  1061. - 7
  1062. - 8
  1063. - 9
  1064. - 10
  1065. - 16
  1066. - 17
  1067. - 18
  1068. - 19
  1069. - 20
  1070. - 24
  1071. - 25
  1072. - 26
  1073. - 27
  1074. - 28
  1075. - 29
  1076. - 30
  1077. - 31
  1078. - 32
  1079. - 33
  1080. - 34
  1081. - 35
  1082. priority: 1
  1083. '22':
  1084. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1085. data: 3
  1086. amount: 1
  1087. slot: 12
  1088. priority: 1
  1089. display_name: '&d&lLevel 1,000'
  1090. lore:
  1091. - ''
  1092. - '&5&l* &fCobblestone: &e80%'
  1093. - '&5&l* &fRedstone: &e20%'
  1094. '25':
  1095. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1096. data: 3
  1097. amount: 1
  1098. slot: 13
  1099. priority: 1
  1100. display_name: '&d&lLevel 2,000'
  1101. lore:
  1102. - ''
  1103. - '&5&l* &fCobblestone: &e80%'
  1104. - '&5&l* &fRedstone: &e10%'
  1105. - '&5&l* &fLapis: &e10%'
  1106. '24':
  1107. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1108. data: 3
  1109. amount: 1
  1110. slot: 14
  1111. priority: 1
  1112. display_name: '&d&lLevel 3,500'
  1113. lore:
  1114. - ''
  1115. - '&5&l* &fCobblestone: &e80%'
  1116. - '&5&l* &fRedstone: &e6.5%'
  1117. - '&5&l* &fLapis: &e6.5%'
  1118. - '&5&l* &fCoal: &e6.5%'
  1119. '26':
  1120. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1121. data: 3
  1122. amount: 1
  1123. slot: 15
  1124. priority: 1
  1125. display_name: '&d&lLevel 5,000'
  1126. lore:
  1127. - ''
  1128. - '&5&l* &fCobblestone: &e80%'
  1129. - '&5&l* &fRedstone: &e5%'
  1130. - '&5&l* &fLapis: &e5%'
  1131. - '&5&l* &fCoal: &e5%'
  1132. - '&5&l* &fIron: &e5%'
  1133. '27':
  1134. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1135. data: 3
  1136. amount: 1
  1137. slot: 21
  1138. priority: 1
  1139. display_name: '&d&lLevel 8,500'
  1140. lore:
  1141. - ''
  1142. - '&5&l* &fCobblestone: &e80%'
  1143. - '&5&l* &fRedstone: &e4%'
  1144. - '&5&l* &fLapis: &e4%'
  1145. - '&5&l* &fCoal: &e4%'
  1146. - '&5&l* &fIron: &e4%'
  1147. - '&5&l* &fGold: &e4%'
  1148. '28':
  1149. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1150. data: 3
  1151. amount: 1
  1152. slot: 22
  1153. priority: 1
  1154. display_name: '&d&lLevel 15,000'
  1155. lore:
  1156. - ''
  1157. - '&5&l* &fCobblestone: &e80%'
  1158. - '&5&l* &fRedstone: &e3%'
  1159. - '&5&l* &fLapis: &e3%'
  1160. - '&5&l* &fCoal: &e3%'
  1161. - '&5&l* &fIron: &e3%'
  1162. - '&5&l* &fGold: &e3%'
  1163. - '&5&l* &fEmerald: &e3%'
  1164. '29':
  1165. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  1166. data: 3
  1167. amount: 1
  1168. slot: 23
  1169. priority: 1
  1170. display_name: '&d&lLevel 30,000'
  1171. lore:
  1172. - ''
  1173. - '&5&l* &fCobblestone: &e80%'
  1174. - '&5&l* &fRedstone: &e2.5%'
  1175. - '&5&l* &fLapis: &e2.5%'
  1176. - '&5&l* &fCoal: &e2.5%'
  1177. - '&5&l* &fIron: &e2.5%'
  1178. - '&5&l* &fGold: &e2.5%'
  1179. - '&5&l* &fEmerald: &e2.5%'
  1180. - '&5&l* &fDiamond: &e2.5%'
  1181. rewards:
  1182. open_command:
  1183. - sdafdweweassdasd
  1184. update_interval: 1
  1185. menu_title: '&8» Rewards'
  1186. size: 45
  1187. items:
  1188. '9':
  1189. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1190. data: 3
  1191. slot: 11
  1192. priority: 1
  1193. view_requirement:
  1194. requirements:
  1195. name:
  1196. type: string equals
  1197. input: '%javascript_cooldown_1_2592000%'
  1198. output: 0s
  1199. name2:
  1200. type: has permission
  1201. permission: reward.vip
  1202. display_name: '&2» &a&lVIP TREASURE &2«'
  1203. lore:
  1204. - ''
  1205. - '&fClaim this reward for'
  1206. - '&a&lVIP &franks and higher.'
  1207. - ''
  1208. - '&f&lCONTAIN:'
  1209. - '&5&l* &dx1 Common Key'
  1210. - '&5&l* &dx1 Treasure (Tier 1)'
  1211. - '&5&l* &dx3 Common Stars'
  1212. - '&5&l* &d10,000 XP'
  1213. - '&5&l* &d$10,000'
  1214. - ''
  1215. - '&5&l* &fStatus: &a&lAVAILABLE'
  1216. - ''
  1217. - '&5&nClick to claim!'
  1218. left_click_commands:
  1219. - '[console] papi parse %player_name% %javascript_cooldown_1_start%'
  1220. - '[console] vouchers give %player_name% VIPt 1'
  1221. - '[refresh]'
  1222. right_click_commands:
  1223. - '[console] papi parse %player_name% %javascript_cooldown_1_start%'
  1224. - '[console] vouchers give %player_name% VIPt 1'
  1225. - '[refresh]'
  1226. '10':
  1227. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2JkNDdkZDdjMzMzNmU3NWE2NjM5MWNkZjljOTM1ZmFlY2E4Y2UzOGFlMjJhMWIyNzg5NWUzMGI0NTI0NWE4In19fQ==
  1228. data: 3
  1229. priority: 2
  1230. update: true
  1231. slot: 11
  1232. view_requirement:
  1233. requirements:
  1234. name2:
  1235. type: has permission
  1236. permission: reward.vip
  1237. display_name: '&2» &a&lVIP TREASURE &2«'
  1238. lore:
  1239. - ''
  1240. - '&fClaim this reward for'
  1241. - '&a&lVIP &franks and higher.'
  1242. - ''
  1243. - '&f&lCONTAIN:'
  1244. - '&5&l* &dx1 Common Key'
  1245. - '&5&l* &dx1 Treasure (Tier 1)'
  1246. - '&5&l* &dx3 Common Stars'
  1247. - '&5&l* &d10,000 XP'
  1248. - '&5&l* &d$10,000'
  1249. - ''
  1250. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1251. - '&7Wait for %javascript_cooldown_1_2592000%'
  1252. '11':
  1253. material: STAINED_GLASS
  1254. data: 14
  1255. slot: 11
  1256. priority: 3
  1257. display_name: '&2» &a&lVIP TREASURE &2«'
  1258. lore:
  1259. - ''
  1260. - '&fReward for only'
  1261. - '&a&lVIP &franks and higher.'
  1262. - ''
  1263. - '&f&lCONTAIN:'
  1264. - '&5&l* &dx1 Common Key'
  1265. - '&5&l* &dx1 Treasure (Tier 1)'
  1266. - '&5&l* &dx3 Common Stars'
  1267. - '&5&l* &d10,000 XP'
  1268. - '&5&l* &d$10,000'
  1269. - ''
  1270. - '&c&oYou do not have rank enough!'
  1271. '12':
  1272. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1273. data: 3
  1274. slot: 12
  1275. priority: 1
  1276. view_requirement:
  1277. requirements:
  1278. name:
  1279. type: string equals
  1280. input: '%javascript_cooldown_2_2592000%'
  1281. output: 0s
  1282. name2:
  1283. type: has permission
  1284. permission: reward.vip+
  1285. display_name: '&3» &b&lVIP+ &b&lTREASURE &3«'
  1286. lore:
  1287. - ''
  1288. - '&fClaim this reward for'
  1289. - '&b&lVIP+ &franks and higher.'
  1290. - ''
  1291. - '&f&lCONTAIN:'
  1292. - '&5&l* &dx1 Common Key'
  1293. - '&5&l* &dx1 Treasure (Tier 1)'
  1294. - '&5&l* &dx1 Treasure (Tier 2)'
  1295. - '&5&l* &dx5 Common Stars'
  1296. - '&5&l* &d10,000 XP'
  1297. - '&5&l* &d$15,000'
  1298. - ''
  1299. - '&5&l* &fStatus: &a&lAVAILABLE'
  1300. - ''
  1301. - '&5&nClick to claim!'
  1302. left_click_commands:
  1303. - '[console] papi parse %player_name% %javascript_cooldown_2_start%'
  1304. - '[console] vouchers give %player_name% VIP+t 1'
  1305. - '[refresh]'
  1306. right_click_commands:
  1307. - '[console] papi parse %player_name% %javascript_cooldown_2_start%'
  1308. - '[console] vouchers give %player_name% VIP+t 1'
  1309. - '[refresh]'
  1310. '13':
  1311. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2E4YTYwNDkzOTE3N2ZkNDVkZjE1ZjM1MWYzM2YxMzRhM2YwNTE4NjgyM2RkM2FlZDU3YzlmYjIyOGQ0MTcifX19
  1312. data: 3
  1313. priority: 2
  1314. update: true
  1315. slot: 12
  1316. view_requirement:
  1317. requirements:
  1318. name2:
  1319. type: has permission
  1320. permission: reward.vip+
  1321. display_name: '&3» &b&lVIP+ &b&lTREASURE &3«'
  1322. lore:
  1323. - ''
  1324. - '&fClaim this reward for'
  1325. - '&b&lVIP+ &franks and higher.'
  1326. - ''
  1327. - '&f&lCONTAIN:'
  1328. - '&5&l* &dx1 Common Key'
  1329. - '&5&l* &dx1 Treasure (Tier 1)'
  1330. - '&5&l* &dx1 Treasure (Tier 2)'
  1331. - '&5&l* &dx5 Common Stars'
  1332. - '&5&l* &d10,000 XP'
  1333. - '&5&l* &d$15,000'
  1334. - ''
  1335. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1336. - '&7Wait for %javascript_cooldown_2_2592000%'
  1337. '14':
  1338. material: STAINED_GLASS
  1339. data: 14
  1340. slot: 12
  1341. priority: 3
  1342. display_name: '&3» &b&lVIP+ &b&lTREASURE &3«'
  1343. lore:
  1344. - ''
  1345. - '&fReward for only'
  1346. - '&b&lVIP+ &franks and higher.'
  1347. - ''
  1348. - '&f&lCONTAIN:'
  1349. - '&5&l* &dx1 Common Key'
  1350. - '&5&l* &dx1 Treasure (Tier 1)'
  1351. - '&5&l* &dx1 Treasure (Tier 2)'
  1352. - '&5&l* &dx5 Common Stars'
  1353. - '&5&l* &d10,000 XP'
  1354. - '&5&l* &d$15,000'
  1355. - ''
  1356. - '&c&oYou do not have rank enough!'
  1357. '15':
  1358. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1359. data: 3
  1360. slot: 13
  1361. priority: 1
  1362. view_requirement:
  1363. requirements:
  1364. name:
  1365. type: string equals
  1366. input: '%javascript_cooldown_3_2592000%'
  1367. output: 0s
  1368. name2:
  1369. type: has permission
  1370. permission: reward.vip++
  1371. display_name: '&5» &d&lVIP++ &d&lTREASURE &5«'
  1372. lore:
  1373. - ''
  1374. - '&fClaim this reward for'
  1375. - '&d&lVIP++ &franks and higher.'
  1376. - ''
  1377. - '&f&lCONTAIN:'
  1378. - '&5&l* &dx1 Rare Key'
  1379. - '&5&l* &dx1 Treasure (Tier 1)'
  1380. - '&5&l* &dx1 Treasure (Tier 2)'
  1381. - '&5&l* &dx1 Treasure (Tier 3)'
  1382. - '&5&l* &dx5 Common Stars'
  1383. - '&5&l* &dx2 Rare Stars'
  1384. - '&5&l* &d10,000 XP'
  1385. - '&5&l* &d$20,000'
  1386. - ''
  1387. - '&5&l* &fStatus: &a&lAVAILABLE'
  1388. - ''
  1389. - '&5&nClick to claim!'
  1390. left_click_commands:
  1391. - '[console] papi parse %player_name% %javascript_cooldown_3_start%'
  1392. - '[console] vouchers give %player_name% VIP++t 1'
  1393. - '[refresh]'
  1394. right_click_commands:
  1395. - '[console] papi parse %player_name% %javascript_cooldown_3_start%'
  1396. - '[console] vouchers give %player_name% VIP++t 1'
  1397. - '[refresh]'
  1398. '16':
  1399. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWQ2MTg0NjU4N2RjZmU3NGM4ZDQ1MDE5YWE5Zjc3Mzc2Y2ZiZWU0OWQwNDhmMmM2YWUzOGZkMWJhMTMxZjgifX19
  1400. data: 3
  1401. priority: 2
  1402. update: true
  1403. slot: 13
  1404. view_requirement:
  1405. requirements:
  1406. name2:
  1407. type: has permission
  1408. permission: reward.vip++
  1409. display_name: '&5» &d&lVIP++ &d&lTREASURE &5«'
  1410. lore:
  1411. - ''
  1412. - '&fClaim this reward for'
  1413. - '&d&lVIP++ &franks and higher.'
  1414. - ''
  1415. - '&f&lCONTAIN:'
  1416. - '&5&l* &dx1 Rare Key'
  1417. - '&5&l* &dx1 Treasure (Tier 1)'
  1418. - '&5&l* &dx1 Treasure (Tier 2)'
  1419. - '&5&l* &dx1 Treasure (Tier 3)'
  1420. - '&5&l* &dx5 Common Stars'
  1421. - '&5&l* &dx2 Rare Stars'
  1422. - '&5&l* &d10,000 XP'
  1423. - '&5&l* &d$20,000'
  1424. - ''
  1425. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1426. - '&7Wait for %javascript_cooldown_3_2592000%'
  1427. '17':
  1428. material: STAINED_GLASS
  1429. data: 14
  1430. slot: 13
  1431. priority: 3
  1432. display_name: '&5» &d&lVIP++ &d&lTREASURE &5«'
  1433. lore:
  1434. - ''
  1435. - '&fReward for only'
  1436. - '&d&lVIP++ &franks and higher.'
  1437. - ''
  1438. - '&f&lCONTAIN:'
  1439. - '&5&l* &dx1 Rare Key'
  1440. - '&5&l* &dx1 Treasure (Tier 1)'
  1441. - '&5&l* &dx1 Treasure (Tier 2)'
  1442. - '&5&l* &dx1 Treasure (Tier 3)'
  1443. - '&5&l* &dx5 Common Stars'
  1444. - '&5&l* &dx2 Rare Stars'
  1445. - '&5&l* &d10,000 XP'
  1446. - '&5&l* &d$20,000'
  1447. - ''
  1448. - '&c&oYou do not have rank enough!'
  1449. '18':
  1450. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1451. data: 3
  1452. slot: 14
  1453. priority: 1
  1454. view_requirement:
  1455. requirements:
  1456. name:
  1457. type: string equals
  1458. input: '%javascript_cooldown_4_2592000%'
  1459. output: 0s
  1460. name2:
  1461. type: has permission
  1462. permission: reward.vip+++
  1463. display_name: '&4» &c&lVIP+++ &c&lTREASURE &4«'
  1464. lore:
  1465. - ''
  1466. - '&fClaim this reward for'
  1467. - '&c&lVIP+++ &franks and higher.'
  1468. - ''
  1469. - '&f&lCONTAIN:'
  1470. - '&5&l* &dx1 Rare Key'
  1471. - '&5&l* &dx1 Treasure (Tier 1)'
  1472. - '&5&l* &dx1 Treasure (Tier 2)'
  1473. - '&5&l* &dx1 Treasure (Tier 3)'
  1474. - '&5&l* &dx5 Common Stars'
  1475. - '&5&l* &dx3 Rare Stars'
  1476. - '&5&l* &d10,000 XP'
  1477. - '&5&l* &d$50,000'
  1478. - ''
  1479. - '&5&l* &fStatus: &a&lAVAILABLE'
  1480. - ''
  1481. - '&5&nClick to claim!'
  1482. left_click_commands:
  1483. - '[console] papi parse %player_name% %javascript_cooldown_4_start%'
  1484. - '[console] vouchers give %player_name% VIP+++t 1'
  1485. - '[refresh]'
  1486. right_click_commands:
  1487. - '[console] papi parse %player_name% %javascript_cooldown_4_start%'
  1488. - '[console] vouchers give %player_name% VIP+++t 1'
  1489. - '[refresh]'
  1490. '19':
  1491. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjEyZjc4N2M1NGRkODlkMTI2OThkZDE3YjU2NTEyOTRjZmI4MDE3ZDZhZDRkMjZlZTZhOTFjZjFkMGMxYzQifX19
  1492. data: 3
  1493. priority: 2
  1494. update: true
  1495. slot: 14
  1496. view_requirement:
  1497. requirements:
  1498. name2:
  1499. type: has permission
  1500. permission: reward.vip+++
  1501. display_name: '&4» &c&lVIP+++ &c&lTREASURE &4«'
  1502. lore:
  1503. - ''
  1504. - '&fClaim this reward for'
  1505. - '&c&lVIP+++ &franks and higher.'
  1506. - ''
  1507. - '&f&lCONTAIN:'
  1508. - '&5&l* &dx1 Rare Key'
  1509. - '&5&l* &dx1 Treasure (Tier 1)'
  1510. - '&5&l* &dx1 Treasure (Tier 2)'
  1511. - '&5&l* &dx1 Treasure (Tier 3)'
  1512. - '&5&l* &dx5 Common Stars'
  1513. - '&5&l* &dx3 Rare Stars'
  1514. - '&5&l* &d10,000 XP'
  1515. - '&5&l* &d$50,000'
  1516. - ''
  1517. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1518. - '&7Wait for %javascript_cooldown_4_2592000%'
  1519. '222':
  1520. material: STAINED_GLASS
  1521. data: 14
  1522. slot: 14
  1523. priority: 3
  1524. display_name: '&4» &c&lVIP+++ &c&lTREASURE &4«'
  1525. lore:
  1526. - ''
  1527. - '&fReward for only'
  1528. - '&c&lVIP+++ &franks and higher.'
  1529. - ''
  1530. - '&f&lCONTAIN:'
  1531. - '&5&l* &dx1 Rare Key'
  1532. - '&5&l* &dx1 Treasure (Tier 1)'
  1533. - '&5&l* &dx1 Treasure (Tier 2)'
  1534. - '&5&l* &dx1 Treasure (Tier 3)'
  1535. - '&5&l* &dx5 Common Stars'
  1536. - '&5&l* &dx3 Rare Stars'
  1537. - '&5&l* &d10,000 XP'
  1538. - '&5&l* &d$50,000'
  1539. - ''
  1540. - '&c&oYou do not have rank enough!'
  1541. '20':
  1542. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZjYzQ4NmMyYmUxY2I5ZGZjYjJlNTNkZDlhM2U5YTg4M2JmYWRiMjdjYjk1NmYxODk2ZDYwMmI0MDY3In19fQ==
  1543. data: 3
  1544. slot: 15
  1545. priority: 1
  1546. view_requirement:
  1547. requirements:
  1548. name:
  1549. type: string equals
  1550. input: '%javascript_cooldown_5_2592000%'
  1551. output: 0s
  1552. name2:
  1553. type: has permission
  1554. permission: reward.vip++++
  1555. display_name: '&6» &e&lVIP++++ &e&lTREASURE &6«'
  1556. lore:
  1557. - ''
  1558. - '&fClaim this reward for'
  1559. - '&e&lVIP++++ &franks and higher.'
  1560. - ''
  1561. - '&f&lCONTAIN:'
  1562. - '&5&l* &dx1 Legendary Key'
  1563. - '&5&l* &dx1 Treasure (Tier 1)'
  1564. - '&5&l* &dx1 Treasure (Tier 2)'
  1565. - '&5&l* &dx1 Treasure (Tier 3)'
  1566. - '&5&l* &dx5 Common Stars'
  1567. - '&5&l* &dx3 Rare Stars'
  1568. - '&5&l* &dx1 Legendary Stars'
  1569. - '&5&l* &d10,000 XP'
  1570. - '&5&l* &d$85,000'
  1571. - ''
  1572. - '&5&l* &fStatus: &a&lAVAILABLE'
  1573. - ''
  1574. - '&5&nClick to claim!'
  1575. left_click_commands:
  1576. - '[console] papi parse %player_name% %javascript_cooldown_5_start%'
  1577. - '[console] vouchers give %player_name% VIP++++t 1'
  1578. - '[refresh]'
  1579. right_click_commands:
  1580. - '[console] papi parse %player_name% %javascript_cooldown_5_start%'
  1581. - '[console] vouchers give %player_name% VIP++++t 1'
  1582. - '[refresh]'
  1583. '21':
  1584. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmExZjM0MDdiNzExZWVmODRmZTVhMWY0MjQyNTE0ZWQ2ZGEwZjI5NzVjOGE1OTA4ZjU3MzViNDYxNmUzMzk2ZSJ9fX0=
  1585. data: 3
  1586. priority: 2
  1587. update: true
  1588. slot: 15
  1589. view_requirement:
  1590. requirements:
  1591. name2:
  1592. type: has permission
  1593. permission: reward.vip++++
  1594. display_name: '&6» &e&lVIP++++ &e&lTREASURE &6«'
  1595. lore:
  1596. - ''
  1597. - '&fClaim this reward for'
  1598. - '&e&lVIP++++ &franks and higher.'
  1599. - ''
  1600. - '&f&lCONTAIN:'
  1601. - '&5&l* &dx1 Legendary Key'
  1602. - '&5&l* &dx1 Treasure (Tier 1)'
  1603. - '&5&l* &dx1 Treasure (Tier 2)'
  1604. - '&5&l* &dx1 Treasure (Tier 3)'
  1605. - '&5&l* &dx5 Common Stars'
  1606. - '&5&l* &dx3 Rare Stars'
  1607. - '&5&l* &dx1 Legendary Stars'
  1608. - '&5&l* &d10,000 XP'
  1609. - '&5&l* &d$85,000'
  1610. - ''
  1611. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1612. - '&7Wait for %javascript_cooldown_5_2592000%'
  1613. '22':
  1614. material: STAINED_GLASS
  1615. data: 14
  1616. slot: 15
  1617. priority: 3
  1618. display_name: '&6» &e&lVIP++++ &e&lTREASURE &6«'
  1619. lore:
  1620. - ''
  1621. - '&fReward for only'
  1622. - '&e&lVIP++++ &franks and higher.'
  1623. - ''
  1624. - '&f&lCONTAIN:'
  1625. - '&5&l* &dx1 Legendary Key'
  1626. - '&5&l* &dx1 Treasure (Tier 1)'
  1627. - '&5&l* &dx1 Treasure (Tier 2)'
  1628. - '&5&l* &dx1 Treasure (Tier 3)'
  1629. - '&5&l* &dx5 Common Stars'
  1630. - '&5&l* &dx3 Rare Stars'
  1631. - '&5&l* &dx1 Legendary Stars'
  1632. - '&5&l* &d10,000 XP'
  1633. - '&5&l* &d$85,000'
  1634. - ''
  1635. - '&c&oYou do not have rank enough!'
  1636. '2222':
  1637. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGNkM2M0NWQ3YjgzODRlOGExOTYzZTRkYTBhZTZiMmRhZWIyYTNlOTdhYzdhMjhmOWViM2QzOTU5NzI1Nzk5ZiJ9fX0=
  1638. data: 3
  1639. slot: 31
  1640. priority: 1
  1641. view_requirement:
  1642. requirements:
  1643. name:
  1644. type: string equals
  1645. input: '%javascript_cooldown_6_86400%'
  1646. output: 0s
  1647. display_name: '&6» &e&lDAILY REWARD &6«'
  1648. lore:
  1649. - ''
  1650. - '&fClaim this reward for some'
  1651. - '&fdaily help.'
  1652. - ''
  1653. - '&f&lCONTAIN:'
  1654. - '&5&l* &d$2,000'
  1655. - ''
  1656. - '&5&l* &fStatus: &a&lAVAILABLE'
  1657. - ''
  1658. - '&5&nClick to claim!'
  1659. left_click_commands:
  1660. - '[console] papi parse %player_name% %javascript_cooldown_6_start%'
  1661. - '[console] eco give %player_name% 2000'
  1662. - '[close]'
  1663. - '[refresh]'
  1664. right_click_commands:
  1665. - '[console] papi parse %player_name% %javascript_cooldown_6_start%'
  1666. - '[console] eco give %player_name% 2000'
  1667. - '[close]'
  1668. - '[refresh]'
  1669. '2232':
  1670. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGFkOTQzZDA2MzM0N2Y5NWFiOWU5ZmE3NTc5MmRhODRlYzY2NWViZDIyYjA1MGJkYmE1MTlmZjdkYTYxZGIifX19
  1671. data: 3
  1672. priority: 2
  1673. update: true
  1674. slot: 31
  1675. display_name: '&6» &e&lDAILY REWARD &6«'
  1676. lore:
  1677. - ''
  1678. - '&fClaim this reward for some'
  1679. - '&fdaily help.'
  1680. - ''
  1681. - '&f&lCONTAIN:'
  1682. - '&5&l* &d$2,000'
  1683. - ''
  1684. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  1685. - '&7Wait for %javascript_cooldown_6_86400%'
  1686. '200':
  1687. material: 160
  1688. display_name: '&f'
  1689. data: 15
  1690. slots:
  1691. - 0
  1692. - 1
  1693. - 2
  1694. - 3
  1695. - 4
  1696. - 5
  1697. - 6
  1698. - 7
  1699. - 8
  1700. - 9
  1701. - 10
  1702. - 16
  1703. - 17
  1704. - 18
  1705. - 19
  1706. - 20
  1707. - 21
  1708. - 22
  1709. - 23
  1710. - 24
  1711. - 25
  1712. - 26
  1713. - 27
  1714. - 28
  1715. - 29
  1716. - 30
  1717. - 32
  1718. - 33
  1719. - 34
  1720. - 35
  1721. - 36
  1722. - 37
  1723. - 38
  1724. - 39
  1725. - 40
  1726. - 41
  1727. - 42
  1728. - 43
  1729. - 44
  1730. priority: 1
  1731. open_command:
  1732. - dungeons
  1733. - dungeon
  1734. - mobarena
  1735. - ma
  1736. update_interval: 1
  1737. menu_title: '&8» Dungeons'
  1738. size: 27
  1739. items:
  1740. '9':
  1741. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTQ0YzFlOGU4MjY3MmJiYTU4OTJmZDQ2NTlmOGRhZDg0ZDE1NDVkYjI2ZGI1MmVjYzkxOGYzMmExMzkxNTEzIn19fQ==
  1742. data: 3
  1743. slot: 13
  1744. priority: 1
  1745. display_name: '&d&lDungeon'
  1746. lore:
  1747. - ''
  1748. - '&5&l* &fJoin a dungeon with 3 others to fight'
  1749. - '&fwaves of mobs using special kits!'
  1750. - ''
  1751. - '&7&oYou can only join after the current'
  1752. - '&7&odungeon has been completed!'
  1753. - '&7&oMake sure you the inventory empty.'
  1754. - ''
  1755. - '&5&nLeft-click to join dungeon!'
  1756. left_click_commands:
  1757. - '[player] ma join 1'
  1758. - '[close]'
  1759. - '[refresh]'
  1760. right_click_commands:
  1761. - '[player] ma join 1'
  1762. - '[close]'
  1763. - '[refresh]'
  1764. '20':
  1765. material: 160
  1766. display_name: '&f'
  1767. data: 15
  1768. slots:
  1769. - 0
  1770. - 1
  1771. - 2
  1772. - 3
  1773. - 4
  1774. - 5
  1775. - 6
  1776. - 7
  1777. - 8
  1778. - 9
  1779. - 10
  1780. - 11
  1781. - 12
  1782. - 14
  1783. - 15
  1784. - 16
  1785. - 17
  1786. - 18
  1787. - 19
  1788. - 20
  1789. - 21
  1790. - 22
  1791. - 23
  1792. - 24
  1793. - 25
  1794. - 26
  1795. - 27
  1796. priority: 1
  1797. open_command:
  1798. - aadsdaasdgrwew
  1799. update_interval: 1
  1800. menu_title: '&8» Enchanter'
  1801. size: 27
  1802. items:
  1803. '9':
  1804. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWMwMzBjYzM1ZmRlMDIxOGRlZDViYTVkNTU3Y2NhOWUwM2RjYmM4NGY5ZTY3MjkxMWRhNTRmZTA3YzVmZGJiYiJ9fX0=
  1805. data: 3
  1806. slot: 12
  1807. view_requirement:
  1808. requirements:
  1809. money:
  1810. type: '>='
  1811. input: '%player_level%'
  1812. output: 20
  1813. priority: 1
  1814. display_name: '&a&lCOMMON STAR'
  1815. lore:
  1816. - ''
  1817. - '&fExamine to receive a random'
  1818. - '&aCommon &fenchantment star.'
  1819. - ''
  1820. - '&e✦&7✦&7✦'
  1821. - ''
  1822. - '&d&lINFORMATION:'
  1823. - '&5&l* &fPrice: &e20 levels'
  1824. - ''
  1825. - '&5&nClick to buy!'
  1826. left_click_commands:
  1827. - '[console] ce lostbook Common 1 %player_name%'
  1828. - '[console] minecraft:xp -20L %player_name%'
  1829. - '[refresh]'
  1830. right_click_commands:
  1831. - '[console] ce lostbook Common 1 %player_name%'
  1832. - '[console] minecraft:xp -20L %player_name%'
  1833. - '[refresh]'
  1834. '90':
  1835. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWMwMzBjYzM1ZmRlMDIxOGRlZDViYTVkNTU3Y2NhOWUwM2RjYmM4NGY5ZTY3MjkxMWRhNTRmZTA3YzVmZGJiYiJ9fX0=
  1836. data: 3
  1837. slot: 12
  1838. priority: 2
  1839. display_name: '&a&lCOMMON STAR'
  1840. lore:
  1841. - ''
  1842. - '&fExamine to receive a random'
  1843. - '&aCommon &fenchantment star.'
  1844. - ''
  1845. - '&e✦&7✦&7✦'
  1846. - ''
  1847. - '&d&lINFORMATION:'
  1848. - '&5&l* &fPrice: &e20 levels'
  1849. - '&7&o(You have %player_level%)'
  1850. '99':
  1851. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGJlMmJhZjQwZmQ4NWViNTczZmU1YjJlNWI2Yzg4MTdjZjUwZjg4M2Q5NTc2OTQxNTgwN2FiMDcyODhhNDdjZCJ9fX0=
  1852. data: 3
  1853. slot: 13
  1854. view_requirement:
  1855. requirements:
  1856. money:
  1857. type: '>='
  1858. input: '%player_level%'
  1859. output: 40
  1860. priority: 1
  1861. display_name: '&b&lRARE STAR'
  1862. lore:
  1863. - ''
  1864. - '&fExamine to receive a random'
  1865. - '&bRare &fenchantment star.'
  1866. - ''
  1867. - '&7✦&e✦&7✦'
  1868. - ''
  1869. - '&d&lINFORMATION:'
  1870. - '&5&l* &fPrice: &e40 levels'
  1871. - ''
  1872. - '&5&nClick to buy!'
  1873. left_click_commands:
  1874. - '[console] ce lostbook Rare 1 %player_name%'
  1875. - '[console] minecraft:xp -40L %player_name%'
  1876. - '[refresh]'
  1877. right_click_commands:
  1878. - '[console] ce lostbook Rare 1 %player_name%'
  1879. - '[console] minecraft:xp -40L %player_name%'
  1880. - '[refresh]'
  1881. '91':
  1882. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGJlMmJhZjQwZmQ4NWViNTczZmU1YjJlNWI2Yzg4MTdjZjUwZjg4M2Q5NTc2OTQxNTgwN2FiMDcyODhhNDdjZCJ9fX0=
  1883. data: 3
  1884. slot: 13
  1885. priority: 2
  1886. display_name: '&b&lRARE STAR'
  1887. lore:
  1888. - ''
  1889. - '&fExamine to receive a random'
  1890. - '&bRare &fenchantment star.'
  1891. - ''
  1892. - '&7✦&e✦&7✦'
  1893. - ''
  1894. - '&d&lINFORMATION:'
  1895. - '&5&l* &fPrice: &e40 levels'
  1896. - '&7&o(You have %player_level%)'
  1897. '999':
  1898. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY1MDViMWJlZmJhMjQyMTcwYTQ2ZTg5NDdiNTJhZWE1NGE1OTA2MGYzZTFjMzZmMjFjZWJiNDQ2OTBmOGIwYyJ9fX0=
  1899. data: 3
  1900. slot: 14
  1901. view_requirement:
  1902. requirements:
  1903. money:
  1904. type: '>='
  1905. input: '%player_level%'
  1906. output: 60
  1907. priority: 1
  1908. display_name: '&6&lLEGENDARY STAR'
  1909. lore:
  1910. - ''
  1911. - '&fExamine to receive a random'
  1912. - '&6Legendary &fenchantment star.'
  1913. - ''
  1914. - '&7✦✦&e✦'
  1915. - ''
  1916. - '&d&lINFORMATION:'
  1917. - '&5&l* &fPrice: &e60 levels'
  1918. - ''
  1919. - '&5&nClick to buy!'
  1920. left_click_commands:
  1921. - '[console] ce lostbook Legendary 1 %player_name%'
  1922. - '[console] minecraft:xp -60L %player_name%'
  1923. - '[refresh]'
  1924. right_click_commands:
  1925. - '[console] ce lostbook Legendary 1 %player_name%'
  1926. - '[console] minecraft:xp -60L %player_name%'
  1927. - '[refresh]'
  1928. '92':
  1929. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY1MDViMWJlZmJhMjQyMTcwYTQ2ZTg5NDdiNTJhZWE1NGE1OTA2MGYzZTFjMzZmMjFjZWJiNDQ2OTBmOGIwYyJ9fX0=
  1930. data: 3
  1931. slot: 14
  1932. priority: 2
  1933. display_name: '&6&lLEGENDARY STAR'
  1934. lore:
  1935. - ''
  1936. - '&fExamine to receive a random'
  1937. - '&6Legendary &fenchantment star.'
  1938. - ''
  1939. - '&7✦&7✦&e✦'
  1940. - ''
  1941. - '&d&lINFORMATION:'
  1942. - '&5&l* &fPrice: &e60 levels'
  1943. - '&7&o(You have %player_level%)'
  1944. '20':
  1945. material: 160
  1946. display_name: '&f'
  1947. data: 15
  1948. slots:
  1949. - 0
  1950. - 1
  1951. - 2
  1952. - 3
  1953. - 4
  1954. - 5
  1955. - 6
  1956. - 7
  1957. - 8
  1958. - 9
  1959. - 10
  1960. - 11
  1961. - 15
  1962. - 16
  1963. - 17
  1964. - 18
  1965. - 19
  1966. - 20
  1967. - 21
  1968. - 22
  1969. - 23
  1970. - 24
  1971. - 25
  1972. - 26
  1973. priority: 1
  1974. Kits:
  1975. open_command:
  1976. - kits
  1977. - kit
  1978. - essentials:kits
  1979. - essentials:kit
  1980. update_interval: 1
  1981. menu_title: '&8» Kits'
  1982. size: 27
  1983. items:
  1984. '9':
  1985. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTU0OTQ3ZGU3ZjUyNTk4MjU1ZDZhZmVlOWQ3N2JlZmFkOWI0ZjI0YzBjNDY2M2QyOGJjZGY4YTY0NTdmMzQifX19
  1986. data: 3
  1987. slot: 11
  1988. priority: 1
  1989. display_name: '&d&lMember Kits'
  1990. lore:
  1991. - ''
  1992. - '&5&l* &fThese are &e&lFREE &fkit available'
  1993. - '&ffor everybody!'
  1994. - ''
  1995. - '&5&nClick to view kits!'
  1996. left_click_commands:
  1997. - '[openguimenu] mkits'
  1998. - '[refresh]'
  1999. right_click_commands:
  2000. - '[openguimenu] mkits'
  2001. - '[refresh]'
  2002. '99':
  2003. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWFkNTQyNGQ5OTAzOTUzODQzNTI2YTdjNDE2ODY2ZTdkNzk1MDFjODhjZTdjZGFiZWVlNTI4NGVhMzlmIn19fQ==
  2004. data: 3
  2005. slot: 13
  2006. priority: 1
  2007. display_name: '&d&lDonation Rank Kits'
  2008. lore:
  2009. - ''
  2010. - '&5&l* &fThese are &e&lDONATOR &fkits available'
  2011. - '&ffor donation ranked users!'
  2012. - ''
  2013. - '&5&nClick to view kits!'
  2014. left_click_commands:
  2015. - '[openguimenu] rkits'
  2016. - '[refresh]'
  2017. right_click_commands:
  2018. - '[openguimenu] rkits'
  2019. - '[refresh]'
  2020. '92':
  2021. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmI1ZDhiOWEzYTk0MjFkY2VkYjE3ZDcxZTNhODg0ZDk1ZWM1MDM4YzgzOGNlMTllZDZkOGU5NmM1YjIzZWQ3In19fQ==
  2022. data: 3
  2023. slot: 15
  2024. priority: 1
  2025. display_name: '&d&lStore Kits'
  2026. lore:
  2027. - ''
  2028. - '&5&l* &fThese are &e&lDONATOR &fkits available'
  2029. - '&ffor purchase on the webstore!'
  2030. - ''
  2031. - '&5&nClick to view kits!'
  2032. left_click_commands:
  2033. - '[openguimenu] skits'
  2034. - '[refresh]'
  2035. right_click_commands:
  2036. - '[openguimenu] skits'
  2037. - '[refresh]'
  2038. '20':
  2039. material: 160
  2040. display_name: '&f'
  2041. data: 15
  2042. slots:
  2043. - 0
  2044. - 1
  2045. - 2
  2046. - 3
  2047. - 4
  2048. - 5
  2049. - 6
  2050. - 7
  2051. - 8
  2052. - 9
  2053. - 10
  2054. - 12
  2055. - 14
  2056. - 16
  2057. - 17
  2058. - 18
  2059. - 19
  2060. - 20
  2061. - 21
  2062. - 22
  2063. - 23
  2064. - 24
  2065. - 25
  2066. - 26
  2067. priority: 1
  2068. mkits:
  2069. open_command:
  2070. - dfsagewdeewf
  2071. update_interval: 1
  2072. menu_title: '&8» Member Kits'
  2073. size: 27
  2074. items:
  2075. '9':
  2076. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  2077. data: 3
  2078. slot: 10
  2079. priority: 1
  2080. display_name: '&d&lBack'
  2081. lore:
  2082. - ''
  2083. - '&5&nClick to go back!'
  2084. left_click_commands:
  2085. - '[openguimenu] Kits'
  2086. - '[refresh]'
  2087. right_click_commands:
  2088. - '[openguimenu] Kits'
  2089. - '[refresh]'
  2090. '99':
  2091. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  2092. data: 3
  2093. slot: 12
  2094. priority: 1
  2095. view_requirement:
  2096. requirements:
  2097. name:
  2098. type: string equals
  2099. input: '%javascript_cooldown_7_604800%'
  2100. output: 0s
  2101. display_name: '&d&lMember Kit'
  2102. lore:
  2103. - ''
  2104. - '&f&lCONTAIN:'
  2105. - '&5&l* &dArmor;'
  2106. - ' &8» &7Unbreaking I'
  2107. - ''
  2108. - '&5&l* &dWeapon;'
  2109. - ' &8» &7Unbreaking I'
  2110. - ''
  2111. - '&5&l* &dTools;'
  2112. - ' &8» &7Unbreaking I'
  2113. - ''
  2114. - '&5&l* &fStatus: &a&lAVAILABLE'
  2115. - '&c&oMake sure your inventory'
  2116. - '&c&ohave available slots...'
  2117. - ''
  2118. - '&5&nLeft-click to claim!'
  2119. left_click_commands:
  2120. - '[console] papi parse %player_name% %javascript_cooldown_7_start%'
  2121. - '[console] kits Tools %player_name%'
  2122. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2123. - '[close]'
  2124. - '[refresh]'
  2125. right_click_commands:
  2126. - '[console] papi parse %player_name% %javascript_cooldown_7_start%'
  2127. - '[console] kits Tools %player_name%'
  2128. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2129. - '[close]'
  2130. - '[refresh]'
  2131. '9923':
  2132. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  2133. data: 3
  2134. slot: 12
  2135. priority: 2
  2136. display_name: '&d&lMember Kit'
  2137. lore:
  2138. - ''
  2139. - '&f&lCONTAIN:'
  2140. - '&5&l* &dArmor;'
  2141. - ' &8» &7Unbreaking I'
  2142. - ''
  2143. - '&5&l* &dWeapon;'
  2144. - ' &8» &7Unbreaking I'
  2145. - ''
  2146. - '&5&l* &dTools;'
  2147. - ' &8» &7Unbreaking I'
  2148. - ''
  2149. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2150. - '&7&oWait for %javascript_cooldown_7_604800%'
  2151. '934':
  2152. material: SAPLING
  2153. slot: 13
  2154. priority: 1
  2155. view_requirement:
  2156. requirements:
  2157. name:
  2158. type: string equals
  2159. input: '%javascript_cooldown_8_3600%'
  2160. output: 0s
  2161. display_name: '&d&lSapling Kit'
  2162. lore:
  2163. - ''
  2164. - '&f&lCONTAIN:'
  2165. - '&5&l* &dItems;'
  2166. - ' &8» &7x1 Oak Sapling'
  2167. - ''
  2168. - '&5&l* &fStatus: &a&lAVAILABLE'
  2169. - ''
  2170. - '&5&nClick to claim!'
  2171. left_click_commands:
  2172. - '[console] papi parse %player_name% %javascript_cooldown_8_start%'
  2173. - '[console] kits Sapling %player_name%'
  2174. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2175. - '[close]'
  2176. - '[refresh]'
  2177. right_click_commands:
  2178. - '[console] papi parse %player_name% %javascript_cooldown_8_start%'
  2179. - '[console] kits Sapling %player_name%'
  2180. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2181. - '[close]'
  2182. - '[refresh]'
  2183. '12312':
  2184. material: SAPLING
  2185. slot: 13
  2186. priority: 2
  2187. display_name: '&d&lSapling Kit'
  2188. lore:
  2189. - ''
  2190. - '&f&lCONTAIN:'
  2191. - '&5&l* &dItems;'
  2192. - ' &8» &7x1 Oak Sapling'
  2193. - ''
  2194. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2195. - '&7&oWait for %javascript_cooldown_8_3600%'
  2196. '20':
  2197. material: 160
  2198. display_name: '&f'
  2199. data: 15
  2200. slots:
  2201. - 0
  2202. - 1
  2203. - 2
  2204. - 3
  2205. - 4
  2206. - 5
  2207. - 6
  2208. - 7
  2209. - 8
  2210. - 9
  2211. - 11
  2212. - 17
  2213. - 18
  2214. - 19
  2215. - 20
  2216. - 21
  2217. - 22
  2218. - 23
  2219. - 24
  2220. - 25
  2221. - 26
  2222. priority: 1
  2223. rkits:
  2224. open_command:
  2225. - dfsagewdeewfsdaf
  2226. update_interval: 1
  2227. menu_title: '&8» Donation Rank Kits'
  2228. size: 27
  2229. items:
  2230. '9':
  2231. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  2232. data: 3
  2233. slot: 10
  2234. priority: 1
  2235. display_name: '&d&lBack'
  2236. lore:
  2237. - ''
  2238. - '&5&nClick to go back!'
  2239. left_click_commands:
  2240. - '[openguimenu] Kits'
  2241. - '[refresh]'
  2242. right_click_commands:
  2243. - '[openguimenu] Kits'
  2244. - '[refresh]'
  2245. '99':
  2246. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  2247. data: 3
  2248. slot: 12
  2249. priority: 1
  2250. view_requirement:
  2251. requirements:
  2252. name:
  2253. type: string equals
  2254. input: '%javascript_cooldown_9_432000%'
  2255. output: 0s
  2256. name2:
  2257. type: has permission
  2258. permission: kit.VIP
  2259. display_name: '&a&lVIP Kit'
  2260. lore:
  2261. - ''
  2262. - '&f&lCONTAIN:'
  2263. - '&5&l* &dArmor;'
  2264. - ' &8» &7Protection I'
  2265. - ''
  2266. - '&5&l* &dWeapon;'
  2267. - ' &8» &7Sharpness II'
  2268. - ' &8» &7Unbreaking I'
  2269. - ' &8» &7Fire Aspect I'
  2270. - ''
  2271. - '&5&l* &dTools;'
  2272. - ' &8» &7Efficiency II'
  2273. - ' &8» &7Unbreaking II'
  2274. - ''
  2275. - '&5&l* &dItems;'
  2276. - ' &8» &7x1 Common Star'
  2277. - ' &8» &7x32 Grass'
  2278. - ' &8» &7x32 Cobblestone'
  2279. - ' &8» &7x1 Sell-wand (10 uses)'
  2280. - ''
  2281. - '&5&l* &fStatus: &a&lAVAILABLE'
  2282. - '&c&oMake sure your inventory'
  2283. - '&c&ohave available slots...'
  2284. - ''
  2285. - '&5&nLeft-click to claim!'
  2286. left_click_commands:
  2287. - '[console] papi parse %player_name% %javascript_cooldown_9_start%'
  2288. - '[console] kits VIP %player_name%'
  2289. - '[console] sellwands give %player_name% 20'
  2290. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2291. - '[close]'
  2292. - '[refresh]'
  2293. right_click_commands:
  2294. - '[console] papi parse %player_name% %javascript_cooldown_9_start%'
  2295. - '[console] kits VIP %player_name%'
  2296. - '[console] sellwands give %player_name% 20'
  2297. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2298. - '[close]'
  2299. - '[refresh]'
  2300. '9923':
  2301. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  2302. data: 3
  2303. slot: 12
  2304. view_requirement:
  2305. requirements:
  2306. name2:
  2307. type: has permission
  2308. permission: kit.VIP
  2309. priority: 2
  2310. display_name: '&a&lVIP Kit'
  2311. lore:
  2312. - ''
  2313. - '&f&lCONTAIN:'
  2314. - '&5&l* &dArmor;'
  2315. - ' &8» &7Protection I'
  2316. - ''
  2317. - '&5&l* &dWeapon;'
  2318. - ' &8» &7Sharpness II'
  2319. - ' &8» &7Unbreaking I'
  2320. - ' &8» &7Fire Aspect I'
  2321. - ''
  2322. - '&5&l* &dTools;'
  2323. - ' &8» &7Efficiency II'
  2324. - ' &8» &7Unbreaking II'
  2325. - ''
  2326. - '&5&l* &dItems;'
  2327. - ' &8» &7x1 Common Star'
  2328. - ' &8» &7x32 Grass'
  2329. - ' &8» &7x32 Cobblestone'
  2330. - ' &8» &7x1 Sell-wand (10 uses)'
  2331. - ''
  2332. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2333. - '&7&oWait for %javascript_cooldown_9_432000%'
  2334. '92923':
  2335. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQzMmI5YzQ3YjliNWQ2MWQxNjk4ODQ5MjU5NmQ0Y2VkOGUwNDJhNjYzMTNlMTJjMjJlNjZkMjMwYjJjMSJ9fX0=
  2336. data: 3
  2337. slot: 12
  2338. priority: 3
  2339. display_name: '&a&lVIP Kit'
  2340. lore:
  2341. - ''
  2342. - '&f&lCONTAIN:'
  2343. - '&5&l* &dArmor;'
  2344. - ' &8» &7Protection I'
  2345. - ''
  2346. - '&5&l* &dWeapon;'
  2347. - ' &8» &7Sharpness II'
  2348. - ' &8» &7Unbreaking I'
  2349. - ' &8» &7Fire Aspect I'
  2350. - ''
  2351. - '&5&l* &dTools;'
  2352. - ' &8» &7Efficiency II'
  2353. - ' &8» &7Unbreaking II'
  2354. - ''
  2355. - '&5&l* &dItems;'
  2356. - ' &8» &7x1 Common Star'
  2357. - ' &8» &7x32 Grass'
  2358. - ' &8» &7x32 Cobblestone'
  2359. - ' &8» &7x1 Sell-wand (10 uses)'
  2360. - ''
  2361. - '&c&oYou do not have rank enough!'
  2362. '991':
  2363. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc1NGVlZDhkMDVhMTk2YzNmYzJkMjUxMTQxN2ViNTYyNjI2MjE0MTRjZTNiM2RmYjM1NzFhZWE0ZGRkYzQ3MCJ9fX0=
  2364. data: 3
  2365. slot: 13
  2366. priority: 1
  2367. view_requirement:
  2368. requirements:
  2369. name:
  2370. type: string equals
  2371. input: '%javascript_cooldown_10_432000%'
  2372. output: 0s
  2373. name2:
  2374. type: has permission
  2375. permission: kit.VIP+
  2376. display_name: '&b&lVIP+ Kit'
  2377. lore:
  2378. - ''
  2379. - '&f&lCONTAIN:'
  2380. - '&5&l* &dArmor;'
  2381. - ' &8» &7Protection II'
  2382. - ' &8» &7Unbreaking I'
  2383. - ''
  2384. - '&5&l* &dWeapon;'
  2385. - ' &8» &7Sharpness III'
  2386. - ' &8» &7Unbreaking II'
  2387. - ' &8» &7Fire Aspect II'
  2388. - ' &8» &7Looting I'
  2389. - ''
  2390. - '&5&l* &dTools;'
  2391. - ' &8» &7Efficiency III'
  2392. - ' &8» &7Unbreaking II'
  2393. - ''
  2394. - '&5&l* &dItems;'
  2395. - ' &8» &7x1 Rare Star'
  2396. - ' &8» &7x64 Grass'
  2397. - ' &8» &7x64 Cobblestone'
  2398. - ' &8» &7x1 Sell-wand (20 uses)'
  2399. - ''
  2400. - '&5&l* &fStatus: &a&lAVAILABLE'
  2401. - '&c&oMake sure your inventory'
  2402. - '&c&ohave available slots...'
  2403. - ''
  2404. - '&5&nLeft-click to claim!'
  2405. left_click_commands:
  2406. - '[console] papi parse %player_name% %javascript_cooldown_10_start%'
  2407. - '[console] kits VIP+ %player_name%'
  2408. - '[console] sellwands give %player_name% 20'
  2409. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2410. - '[close]'
  2411. - '[refresh]'
  2412. right_click_commands:
  2413. - '[console] papi parse %player_name% %javascript_cooldown_10_start%'
  2414. - '[console] kits VIP+ %player_name%'
  2415. - '[console] sellwands give %player_name% 20'
  2416. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2417. - '[close]'
  2418. - '[refresh]'
  2419. '99231':
  2420. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc1NGVlZDhkMDVhMTk2YzNmYzJkMjUxMTQxN2ViNTYyNjI2MjE0MTRjZTNiM2RmYjM1NzFhZWE0ZGRkYzQ3MCJ9fX0=
  2421. data: 3
  2422. slot: 13
  2423. view_requirement:
  2424. requirements:
  2425. name2:
  2426. type: has permission
  2427. permission: kit.VIP+
  2428. priority: 2
  2429. display_name: '&b&lVIP+ Kit'
  2430. lore:
  2431. - ''
  2432. - '&f&lCONTAIN:'
  2433. - '&5&l* &dArmor;'
  2434. - ' &8» &7Protection II'
  2435. - ' &8» &7Unbreaking I'
  2436. - ''
  2437. - '&5&l* &dWeapon;'
  2438. - ' &8» &7Sharpness III'
  2439. - ' &8» &7Unbreaking II'
  2440. - ' &8» &7Fire Aspect II'
  2441. - ' &8» &7Looting I'
  2442. - ''
  2443. - '&5&l* &dTools;'
  2444. - ' &8» &7Efficiency III'
  2445. - ' &8» &7Unbreaking II'
  2446. - ''
  2447. - '&5&l* &dItems;'
  2448. - ' &8» &7x1 Rare Star'
  2449. - ' &8» &7x64 Grass'
  2450. - ' &8» &7x64 Cobblestone'
  2451. - ' &8» &7x1 Sell-wand (20 uses)'
  2452. - ''
  2453. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2454. - '&7&oWait for %javascript_cooldown_10_432000%'
  2455. '929231':
  2456. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzc1NGVlZDhkMDVhMTk2YzNmYzJkMjUxMTQxN2ViNTYyNjI2MjE0MTRjZTNiM2RmYjM1NzFhZWE0ZGRkYzQ3MCJ9fX0=
  2457. data: 3
  2458. slot: 13
  2459. priority: 3
  2460. display_name: '&b&lVIP+ Kit'
  2461. lore:
  2462. - ''
  2463. - '&f&lCONTAIN:'
  2464. - '&5&l* &dArmor;'
  2465. - ' &8» &7Protection II'
  2466. - ' &8» &7Unbreaking I'
  2467. - ''
  2468. - '&5&l* &dWeapon;'
  2469. - ' &8» &7Sharpness III'
  2470. - ' &8» &7Unbreaking II'
  2471. - ' &8» &7Fire Aspect II'
  2472. - ' &8» &7Looting I'
  2473. - ''
  2474. - '&5&l* &dTools;'
  2475. - ' &8» &7Efficiency III'
  2476. - ' &8» &7Unbreaking II'
  2477. - ''
  2478. - '&5&l* &dItems;'
  2479. - ' &8» &7x1 Rare Star'
  2480. - ' &8» &7x64 Grass'
  2481. - ' &8» &7x64 Cobblestone'
  2482. - ' &8» &7x1 Sell-wand (20 uses)'
  2483. - ''
  2484. - '&c&oYou do not have rank enough!'
  2485. '994':
  2486. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q0MDQyNzBjNmViZWI4ZmM5NGEzOTQ2YWY1MzM0ZTRhNWI2NTdhOWJmMjVlNzMzNWU3NGFiMTg1In19fQ==
  2487. data: 3
  2488. slot: 14
  2489. priority: 1
  2490. view_requirement:
  2491. requirements:
  2492. name:
  2493. type: string equals
  2494. input: '%javascript_cooldown_11_432000%'
  2495. output: 0s
  2496. name2:
  2497. type: has permission
  2498. permission: kit.VIP++
  2499. display_name: '&d&lVIP++ Kit'
  2500. lore:
  2501. - ''
  2502. - '&f&lCONTAIN:'
  2503. - '&5&l* &dArmor;'
  2504. - ' &8» &7Protection III'
  2505. - ' &8» &7Unbreaking III'
  2506. - ''
  2507. - '&5&l* &dWeapon;'
  2508. - ' &8» &7Sharpness IV'
  2509. - ' &8» &7Unbreaking III'
  2510. - ' &8» &7Fire Aspect II'
  2511. - ' &8» &7Looting II'
  2512. - ''
  2513. - '&5&l* &dTools;'
  2514. - ' &8» &7Efficiency IV'
  2515. - ' &8» &7Unbreaking II'
  2516. - ''
  2517. - '&5&l* &dItems;'
  2518. - ' &8» &7x2 Rare Star'
  2519. - ' &8» &7x96 Grass'
  2520. - ' &8» &7x96 Cobblestone'
  2521. - ' &8» &7x8 Diamond Block'
  2522. - ' &8» &7x8 Emerald Block'
  2523. - ' &8» &7x1 Sell-wand (30 uses)'
  2524. - ''
  2525. - '&5&l* &fStatus: &a&lAVAILABLE'
  2526. - '&c&oMake sure your inventory'
  2527. - '&c&ohave available slots...'
  2528. - ''
  2529. - '&5&nLeft-click to claim!'
  2530. left_click_commands:
  2531. - '[console] papi parse %player_name% %javascript_cooldown_11_start%'
  2532. - '[console] kits VIP++ %player_name%'
  2533. - '[console] sellwands give %player_name% 30'
  2534. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2535. - '[close]'
  2536. - '[refresh]'
  2537. right_click_commands:
  2538. - '[console] papi parse %player_name% %javascript_cooldown_11_start%'
  2539. - '[console] kits VIP++ %player_name%'
  2540. - '[console] sellwands give %player_name% 30'
  2541. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2542. - '[close]'
  2543. - '[refresh]'
  2544. '99234':
  2545. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q0MDQyNzBjNmViZWI4ZmM5NGEzOTQ2YWY1MzM0ZTRhNWI2NTdhOWJmMjVlNzMzNWU3NGFiMTg1In19fQ==
  2546. data: 3
  2547. slot: 14
  2548. view_requirement:
  2549. requirements:
  2550. name2:
  2551. type: has permission
  2552. permission: kit.VIP++
  2553. priority: 2
  2554. display_name: '&d&lVIP++ Kit'
  2555. lore:
  2556. - ''
  2557. - '&f&lCONTAIN:'
  2558. - '&5&l* &dArmor;'
  2559. - ' &8» &7Protection III'
  2560. - ' &8» &7Unbreaking III'
  2561. - ''
  2562. - '&5&l* &dWeapon;'
  2563. - ' &8» &7Sharpness IV'
  2564. - ' &8» &7Unbreaking III'
  2565. - ' &8» &7Fire Aspect II'
  2566. - ' &8» &7Looting II'
  2567. - ''
  2568. - '&5&l* &dTools;'
  2569. - ' &8» &7Efficiency IV'
  2570. - ' &8» &7Unbreaking II'
  2571. - ''
  2572. - '&5&l* &dItems;'
  2573. - ' &8» &7x2 Rare Star'
  2574. - ' &8» &7x96 Grass'
  2575. - ' &8» &7x96 Cobblestone'
  2576. - ' &8» &7x8 Diamond Block'
  2577. - ' &8» &7x8 Emerald Block'
  2578. - ' &8» &7x1 Sell-wand (30 uses)'
  2579. - ''
  2580. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2581. - '&7&oWait for %javascript_cooldown_11_432000%'
  2582. '929234':
  2583. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q0MDQyNzBjNmViZWI4ZmM5NGEzOTQ2YWY1MzM0ZTRhNWI2NTdhOWJmMjVlNzMzNWU3NGFiMTg1In19fQ==
  2584. data: 3
  2585. slot: 14
  2586. priority: 3
  2587. display_name: '&d&lVIP++ Kit'
  2588. lore:
  2589. - ''
  2590. - '&f&lCONTAIN:'
  2591. - '&5&l* &dArmor;'
  2592. - ' &8» &7Protection III'
  2593. - ' &8» &7Unbreaking III'
  2594. - ''
  2595. - '&5&l* &dWeapon;'
  2596. - ' &8» &7Sharpness IV'
  2597. - ' &8» &7Unbreaking III'
  2598. - ' &8» &7Fire Aspect II'
  2599. - ' &8» &7Looting II'
  2600. - ''
  2601. - '&5&l* &dTools;'
  2602. - ' &8» &7Efficiency IV'
  2603. - ' &8» &7Unbreaking II'
  2604. - ''
  2605. - '&5&l* &dItems;'
  2606. - ' &8» &7x2 Rare Star'
  2607. - ' &8» &7x96 Grass'
  2608. - ' &8» &7x96 Cobblestone'
  2609. - ' &8» &7x8 Diamond Block'
  2610. - ' &8» &7x8 Emerald Block'
  2611. - ' &8» &7x1 Sell-wand (30 uses)'
  2612. - ''
  2613. - '&c&oYou do not have rank enough!'
  2614. '2994':
  2615. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGRhOGE4YzkzODRlMjMyM2UxMzdmYjE0ZWVkOWE3MTczOTgxZmM3NjU5MGM4YmY4OWJlOGI1YmZjNDdkOTJmIn19fQ==
  2616. data: 3
  2617. slot: 15
  2618. priority: 1
  2619. view_requirement:
  2620. requirements:
  2621. name:
  2622. type: string equals
  2623. input: '%javascript_cooldown_12_432000%'
  2624. output: 0s
  2625. name2:
  2626. type: has permission
  2627. permission: kit.VIP+++
  2628. display_name: '&c&lVIP+++ Kit'
  2629. lore:
  2630. - ''
  2631. - '&f&lCONTAIN:'
  2632. - '&5&l* &dArmor;'
  2633. - ' &8» &7Protection IV'
  2634. - ' &8» &7Unbreaking IV'
  2635. - ''
  2636. - '&5&l* &dWeapon;'
  2637. - ' &8» &7Sharpness V'
  2638. - ' &8» &7Unbreaking III'
  2639. - ' &8» &7Fire Aspect II'
  2640. - ' &8» &7Looting III'
  2641. - ' &8» &7Knockback I'
  2642. - ''
  2643. - '&5&l* &dTools;'
  2644. - ' &8» &7Efficiency V'
  2645. - ' &8» &7Unbreaking IV'
  2646. - ' &8» &7Fortune I'
  2647. - ''
  2648. - '&5&l* &dItems;'
  2649. - ' &8» &7x1 Legendary Star'
  2650. - ' &8» &7x128 Grass'
  2651. - ' &8» &7x128 Cobblestone'
  2652. - ' &8» &7x16 Diamond Block'
  2653. - ' &8» &7x16 Emerald Block'
  2654. - ' &8» &7x1 Sell-wand (40 uses)'
  2655. - ''
  2656. - '&5&l* &fStatus: &a&lAVAILABLE'
  2657. - '&c&oMake sure your inventory'
  2658. - '&c&ohave available slots...'
  2659. - ''
  2660. - '&5&nLeft-click to claim!'
  2661. left_click_commands:
  2662. - '[console] papi parse %player_name% %javascript_cooldown_12_start%'
  2663. - '[console] kits VIP+++ %player_name%'
  2664. - '[console] sellwands give %player_name% 40'
  2665. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2666. - '[close]'
  2667. - '[refresh]'
  2668. right_click_commands:
  2669. - '[console] papi parse %player_name% %javascript_cooldown_12_start%'
  2670. - '[console] kits VIP+++ %player_name%'
  2671. - '[console] sellwands give %player_name% 40'
  2672. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2673. - '[close]'
  2674. - '[refresh]'
  2675. '299234':
  2676. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGRhOGE4YzkzODRlMjMyM2UxMzdmYjE0ZWVkOWE3MTczOTgxZmM3NjU5MGM4YmY4OWJlOGI1YmZjNDdkOTJmIn19fQ==
  2677. data: 3
  2678. slot: 15
  2679. view_requirement:
  2680. requirements:
  2681. name2:
  2682. type: has permission
  2683. permission: kit.VIP+++
  2684. priority: 2
  2685. display_name: '&c&lVIP+++ Kit'
  2686. lore:
  2687. - ''
  2688. - '&f&lCONTAIN:'
  2689. - '&5&l* &dArmor;'
  2690. - ' &8» &7Protection IV'
  2691. - ' &8» &7Unbreaking IV'
  2692. - ''
  2693. - '&5&l* &dWeapon;'
  2694. - ' &8» &7Sharpness V'
  2695. - ' &8» &7Unbreaking III'
  2696. - ' &8» &7Fire Aspect II'
  2697. - ' &8» &7Looting III'
  2698. - ' &8» &7Knockback I'
  2699. - ''
  2700. - '&5&l* &dTools;'
  2701. - ' &8» &7Efficiency V'
  2702. - ' &8» &7Unbreaking IV'
  2703. - ' &8» &7Fortune I'
  2704. - ''
  2705. - '&5&l* &dItems;'
  2706. - ' &8» &7x1 Legendary Star'
  2707. - ' &8» &7x128 Grass'
  2708. - ' &8» &7x128 Cobblestone'
  2709. - ' &8» &7x16 Diamond Block'
  2710. - ' &8» &7x16 Emerald Block'
  2711. - ' &8» &7x1 Sell-wand (40 uses)'
  2712. - ''
  2713. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2714. - '&7&oWait for %javascript_cooldown_12_432000%'
  2715. '2929234':
  2716. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGRhOGE4YzkzODRlMjMyM2UxMzdmYjE0ZWVkOWE3MTczOTgxZmM3NjU5MGM4YmY4OWJlOGI1YmZjNDdkOTJmIn19fQ==
  2717. data: 3
  2718. slot: 15
  2719. priority: 3
  2720. display_name: '&c&lVIP+++ Kit'
  2721. lore:
  2722. - ''
  2723. - '&f&lCONTAIN:'
  2724. - '&5&l* &dArmor;'
  2725. - ' &8» &7Protection IV'
  2726. - ' &8» &7Unbreaking IV'
  2727. - ''
  2728. - '&5&l* &dWeapon;'
  2729. - ' &8» &7Sharpness V'
  2730. - ' &8» &7Unbreaking III'
  2731. - ' &8» &7Fire Aspect II'
  2732. - ' &8» &7Looting III'
  2733. - ' &8» &7Knockback I'
  2734. - ''
  2735. - '&5&l* &dTools;'
  2736. - ' &8» &7Efficiency V'
  2737. - ' &8» &7Unbreaking IV'
  2738. - ' &8» &7Fortune I'
  2739. - ''
  2740. - '&5&l* &dItems;'
  2741. - ' &8» &7x1 Legendary Star'
  2742. - ' &8» &7x128 Grass'
  2743. - ' &8» &7x128 Cobblestone'
  2744. - ' &8» &7x16 Diamond Block'
  2745. - ' &8» &7x16 Emerald Block'
  2746. - ' &8» &7x1 Sell-wand (40 uses)'
  2747. - ''
  2748. - '&c&oYou do not have rank enough!'
  2749. '23994':
  2750. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  2751. data: 3
  2752. slot: 16
  2753. priority: 1
  2754. view_requirement:
  2755. requirements:
  2756. name:
  2757. type: string equals
  2758. input: '%javascript_cooldown_13_432000%'
  2759. output: 0s
  2760. name2:
  2761. type: has permission
  2762. permission: kit.VIP++++
  2763. display_name: '&d&lVIP++++ Kit'
  2764. lore:
  2765. - ''
  2766. - '&f&lCONTAIN:'
  2767. - '&5&l* &dArmor;'
  2768. - ' &8» &7Protection V'
  2769. - ' &8» &7Unbreaking IV'
  2770. - ''
  2771. - '&5&l* &dWeapon;'
  2772. - ' &8» &7Sharpness V'
  2773. - ' &8» &7Unbreaking III'
  2774. - ' &8» &7Fire Aspect II'
  2775. - ' &8» &7Looting III'
  2776. - ' &8» &7Knockback II'
  2777. - ''
  2778. - '&5&l* &dTools;'
  2779. - ' &8» &7Efficiency VI'
  2780. - ' &8» &7Unbreaking IV'
  2781. - ' &8» &7Fortune II'
  2782. - ''
  2783. - '&5&l* &dItems;'
  2784. - ' &8» &7x2 Legendary Star'
  2785. - ' &8» &7x190 Grass'
  2786. - ' &8» &7x190 Cobblestone'
  2787. - ' &8» &7x32 Diamond Block'
  2788. - ' &8» &7x32 Emerald Block'
  2789. - ' &8» &7x1 Sell-wand (50 uses)'
  2790. - ''
  2791. - '&5&l* &fStatus: &a&lAVAILABLE'
  2792. - '&c&oMake sure your inventory'
  2793. - '&c&ohave available slots...'
  2794. - ''
  2795. - '&5&nLeft-click to claim!'
  2796. left_click_commands:
  2797. - '[console] papi parse %player_name% %javascript_cooldown_13_start%'
  2798. - '[console] kits VIP++++ %player_name%'
  2799. - '[console] sellwands give %player_name% 50'
  2800. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2801. - '[close]'
  2802. - '[refresh]'
  2803. right_click_commands:
  2804. - '[console] papi parse %player_name% %javascript_cooldown_13_start%'
  2805. - '[console] kits VIP++++ %player_name%'
  2806. - '[console] sellwands give %player_name% 50'
  2807. - '[console] titlemanager:tm message &7\n&fYou have claimed the kit sucessfully!'
  2808. - '[close]'
  2809. - '[refresh]'
  2810. '2399234':
  2811. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  2812. data: 3
  2813. slot: 16
  2814. view_requirement:
  2815. requirements:
  2816. name2:
  2817. type: has permission
  2818. permission: kit.VIP++++
  2819. priority: 2
  2820. display_name: '&d&lVIP++++ Kit'
  2821. lore:
  2822. - ''
  2823. - '&f&lCONTAIN:'
  2824. - '&5&l* &dArmor;'
  2825. - ' &8» &7Protection V'
  2826. - ' &8» &7Unbreaking IV'
  2827. - ''
  2828. - '&5&l* &dWeapon;'
  2829. - ' &8» &7Sharpness V'
  2830. - ' &8» &7Unbreaking III'
  2831. - ' &8» &7Fire Aspect II'
  2832. - ' &8» &7Looting III'
  2833. - ' &8» &7Knockback II'
  2834. - ''
  2835. - '&5&l* &dTools;'
  2836. - ' &8» &7Efficiency VI'
  2837. - ' &8» &7Unbreaking IV'
  2838. - ' &8» &7Fortune II'
  2839. - ''
  2840. - '&5&l* &dItems;'
  2841. - ' &8» &7x2 Legendary Star'
  2842. - ' &8» &7x190 Grass'
  2843. - ' &8» &7x190 Cobblestone'
  2844. - ' &8» &7x32 Diamond Block'
  2845. - ' &8» &7x32 Emerald Block'
  2846. - ' &8» &7x1 Sell-wand (50 uses)'
  2847. - ''
  2848. - '&5&l* &fStatus: &c&lUNAVAILABLE'
  2849. - '&7&oWait for %javascript_cooldown_13_432000%'
  2850. '23929234':
  2851. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDRlZGZiZTk0ZDJkMWZhMzY3ODMyZDQyYWEyODI0ZjAxNGRhOTk1YTcyZGI3MmI0NTJiOWM3Yjk4ZTRmYSJ9fX0=
  2852. data: 3
  2853. slot: 16
  2854. priority: 3
  2855. display_name: '&d&lVIP++++ Kit'
  2856. lore:
  2857. - ''
  2858. - '&f&lCONTAIN:'
  2859. - '&5&l* &dArmor;'
  2860. - ' &8» &7Protection V'
  2861. - ' &8» &7Unbreaking IV'
  2862. - ''
  2863. - '&5&l* &dWeapon;'
  2864. - ' &8» &7Sharpness V'
  2865. - ' &8» &7Unbreaking III'
  2866. - ' &8» &7Fire Aspect II'
  2867. - ' &8» &7Looting III'
  2868. - ' &8» &7Knockback II'
  2869. - ''
  2870. - '&5&l* &dTools;'
  2871. - ' &8» &7Efficiency VI'
  2872. - ' &8» &7Unbreaking IV'
  2873. - ' &8» &7Fortune II'
  2874. - ''
  2875. - '&5&l* &dItems;'
  2876. - ' &8» &7x2 Legendary Star'
  2877. - ' &8» &7x190 Grass'
  2878. - ' &8» &7x190 Cobblestone'
  2879. - ' &8» &7x32 Diamond Block'
  2880. - ' &8» &7x32 Emerald Block'
  2881. - ' &8» &7x1 Sell-wand (50 uses)'
  2882. - ''
  2883. - '&c&oYou do not have rank enough!'
  2884. '20':
  2885. material: 160
  2886. display_name: '&f'
  2887. data: 15
  2888. slots:
  2889. - 0
  2890. - 1
  2891. - 2
  2892. - 3
  2893. - 4
  2894. - 5
  2895. - 6
  2896. - 7
  2897. - 8
  2898. - 9
  2899. - 11
  2900. - 17
  2901. - 18
  2902. - 19
  2903. - 20
  2904. - 21
  2905. - 22
  2906. - 23
  2907. - 24
  2908. - 25
  2909. - 26
  2910. priority: 1
  2911. chatcolor:
  2912. open_command:
  2913. - chatcolor
  2914. - color
  2915. update_interval: 1
  2916. menu_title: '&8» Chat Color'
  2917. size: 36
  2918. items:
  2919. '99':
  2920. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDIxNmNhYWFhYTNmNjE2NzkzZDE4ZTk0M2NkM2E0NjMzMTM0M2JiNmU3NzQyZTVjZDc4MWZmZmVkZDYwNGIifX19
  2921. data: 3
  2922. slot: 13
  2923. priority: 1
  2924. view_requirement:
  2925. requirements:
  2926. permission:
  2927. type: has permission
  2928. permission: chatcolor.lightblue
  2929. display_name: '&b&lLight Blue'
  2930. lore:
  2931. - ''
  2932. - '&fChange your chat color to'
  2933. - '&blight blue &fand stands out'
  2934. - '&fabove the others!'
  2935. - ''
  2936. - '&d&lREQUIREMENTS:'
  2937. - '&5&l* &fRank: &b&lVIP+ &7and higher'
  2938. - ''
  2939. - '&5&nClick to select!'
  2940. left_click_commands:
  2941. - '[console] chatcolor set %player_name% aqua'
  2942. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  2943. &b&lLight Blue&f!'
  2944. - '[close]'
  2945. - '[refresh]'
  2946. right_click_commands:
  2947. - '[console] chatcolor set %player_name% aqua'
  2948. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  2949. &b&lLight Blue&f!'
  2950. - '[close]'
  2951. - '[refresh]'
  2952. '9923':
  2953. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDIxNmNhYWFhYTNmNjE2NzkzZDE4ZTk0M2NkM2E0NjMzMTM0M2JiNmU3NzQyZTVjZDc4MWZmZmVkZDYwNGIifX19
  2954. data: 3
  2955. slot: 13
  2956. priority: 2
  2957. display_name: '&b&lLight Blue'
  2958. lore:
  2959. - ''
  2960. - '&fChange your chat color to'
  2961. - '&blight blue &fand stands out'
  2962. - '&fabove the others!'
  2963. - ''
  2964. - '&d&lREQUIREMENTS:'
  2965. - '&5&l* &fRank: &b&lVIP+ &7and higher'
  2966. - ''
  2967. - '&c&oYou do not have rank enough!'
  2968. '919':
  2969. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY2YTVjOTg5MjhmYTVkNGI1ZDViOGVmYjQ5MDE1NWI0ZGRhMzk1NmJjYWE5MzcxMTc3ODE0NTMyY2ZjIn19fQ==
  2970. data: 3
  2971. slot: 11
  2972. priority: 1
  2973. view_requirement:
  2974. requirements:
  2975. permission:
  2976. type: has permission
  2977. permission: chatcolor.white
  2978. display_name: '&f&lWhite'
  2979. lore:
  2980. - ''
  2981. - '&fChange your chat color to'
  2982. - '&fwhite &fand stands out'
  2983. - '&fabove the others!'
  2984. - ''
  2985. - '&d&lREQUIREMENTS:'
  2986. - '&5&l* &fRank: &a&lVIP &7and higher'
  2987. - ''
  2988. - '&5&nClick to select!'
  2989. left_click_commands:
  2990. - '[console] chatcolor set %player_name% white'
  2991. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  2992. &f&lWhite&f!'
  2993. - '[close]'
  2994. - '[refresh]'
  2995. right_click_commands:
  2996. - '[console] chatcolor set %player_name% white'
  2997. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  2998. &f&lWhite&f!'
  2999. - '[close]'
  3000. - '[refresh]'
  3001. '91923':
  3002. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY2YTVjOTg5MjhmYTVkNGI1ZDViOGVmYjQ5MDE1NWI0ZGRhMzk1NmJjYWE5MzcxMTc3ODE0NTMyY2ZjIn19fQ==
  3003. data: 3
  3004. slot: 11
  3005. priority: 2
  3006. display_name: '&f&lWhite'
  3007. lore:
  3008. - ''
  3009. - '&fChange your chat color to'
  3010. - '&fwhite &fand stands out'
  3011. - '&fabove the others!'
  3012. - ''
  3013. - '&d&lREQUIREMENTS:'
  3014. - '&5&l* &fRank: &a&lVIP &7and higher'
  3015. - ''
  3016. - '&c&oYou do not have rank enough!'
  3017. '929':
  3018. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjhmZmYyMmM2ZTY1NDZkMGQ4ZWI3Zjk3NjMzOTg0MDdkZDJhYjgwZjc0ZmUzZDE2YjEwYTk4M2VjYWYzNDdlIn19fQ==
  3019. data: 3
  3020. slot: 12
  3021. priority: 1
  3022. view_requirement:
  3023. requirements:
  3024. permission:
  3025. type: has permission
  3026. permission: chatcolor.lightgreen
  3027. display_name: '&a&lLight Green'
  3028. lore:
  3029. - ''
  3030. - '&fChange your chat color to'
  3031. - '&alight green &fand stands out'
  3032. - '&fabove the others!'
  3033. - ''
  3034. - '&d&lREQUIREMENTS:'
  3035. - '&5&l* &fRank: &a&lVIP &7and higher'
  3036. - ''
  3037. - '&5&nClick to select!'
  3038. left_click_commands:
  3039. - '[console] chatcolor set %player_name% green'
  3040. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3041. &a&lGreen&f!'
  3042. - '[close]'
  3043. - '[refresh]'
  3044. right_click_commands:
  3045. - '[console] chatcolor set %player_name% green'
  3046. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3047. &a&lGreen&f!'
  3048. - '[close]'
  3049. - '[refresh]'
  3050. '92923':
  3051. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjhmZmYyMmM2ZTY1NDZkMGQ4ZWI3Zjk3NjMzOTg0MDdkZDJhYjgwZjc0ZmUzZDE2YjEwYTk4M2VjYWYzNDdlIn19fQ==
  3052. data: 3
  3053. slot: 12
  3054. priority: 2
  3055. display_name: '&a&lLight Green'
  3056. lore:
  3057. - ''
  3058. - '&fChange your chat color to'
  3059. - '&alight green &fand stands out'
  3060. - '&fabove the others!'
  3061. - ''
  3062. - '&d&lREQUIREMENTS:'
  3063. - '&5&l* &fRank: &a&lVIP &7and higher'
  3064. - ''
  3065. - '&c&oYou do not have rank enough!'
  3066. '939':
  3067. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmExMWE1MWY2NTc2Mjg1ZjlmOWM4YWE3ZGVkMWVlMTJjMjAyZjE1ZDc5MWM3MzJiNTg2ZGRhZTcwNjRiMCJ9fX0=
  3068. data: 3
  3069. slot: 14
  3070. priority: 1
  3071. view_requirement:
  3072. requirements:
  3073. permission:
  3074. type: has permission
  3075. permission: chatcolor.pink
  3076. display_name: '&d&lPink'
  3077. lore:
  3078. - ''
  3079. - '&fChange your chat color to'
  3080. - '&dpink &fand stands out'
  3081. - '&fabove the others!'
  3082. - ''
  3083. - '&d&lREQUIREMENTS:'
  3084. - '&5&l* &fRank: &d&lVIP++ &7and higher'
  3085. - ''
  3086. - '&5&nClick to select!'
  3087. left_click_commands:
  3088. - '[console] chatcolor set %player_name% light_purple'
  3089. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3090. &d&lPink&f!'
  3091. - '[close]'
  3092. - '[refresh]'
  3093. right_click_commands:
  3094. - '[console] chatcolor set %player_name% light_purple'
  3095. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3096. &d&lPink&f!'
  3097. - '[close]'
  3098. - '[refresh]'
  3099. '93923':
  3100. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmExMWE1MWY2NTc2Mjg1ZjlmOWM4YWE3ZGVkMWVlMTJjMjAyZjE1ZDc5MWM3MzJiNTg2ZGRhZTcwNjRiMCJ9fX0=
  3101. data: 3
  3102. slot: 14
  3103. priority: 2
  3104. display_name: '&d&lPink'
  3105. lore:
  3106. - ''
  3107. - '&fChange your chat color to'
  3108. - '&dpink &fand stands out'
  3109. - '&fabove the others!'
  3110. - ''
  3111. - '&d&lREQUIREMENTS:'
  3112. - '&5&l* &fRank: &d&lVIP++ &7and higher'
  3113. - ''
  3114. - '&c&oYou do not have rank enough!'
  3115. '9529':
  3116. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTM2ZDcxODQzYzY3ZjU0ZTEzYmE2MTg3ZGE0OGQ4ZjI0OThjMmFmOGEyMmY4NTY4NjQxNzg2MmY2MWFlMTYxIn19fQ==
  3117. data: 3
  3118. slot: 15
  3119. priority: 1
  3120. view_requirement:
  3121. requirements:
  3122. permission:
  3123. type: has permission
  3124. permission: chatcolor.red
  3125. display_name: '&c&lRed'
  3126. lore:
  3127. - ''
  3128. - '&fChange your chat color to'
  3129. - '&cred &fand stands out'
  3130. - '&fabove the others!'
  3131. - ''
  3132. - '&d&lREQUIREMENTS:'
  3133. - '&5&l* &fRank: &c&lVIP+++ &7and higher'
  3134. - ''
  3135. - '&5&nClick to select!'
  3136. left_click_commands:
  3137. - '[console] chatcolor set %player_name% red'
  3138. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3139. &c&lRed&f!'
  3140. - '[close]'
  3141. - '[refresh]'
  3142. right_click_commands:
  3143. - '[console] chatcolor set %player_name% red'
  3144. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3145. &c&lRed&f!'
  3146. - '[close]'
  3147. - '[refresh]'
  3148. '959223':
  3149. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTM2ZDcxODQzYzY3ZjU0ZTEzYmE2MTg3ZGE0OGQ4ZjI0OThjMmFmOGEyMmY4NTY4NjQxNzg2MmY2MWFlMTYxIn19fQ==
  3150. data: 3
  3151. slot: 15
  3152. priority: 2
  3153. display_name: '&c&lRed'
  3154. lore:
  3155. - ''
  3156. - '&fChange your chat color to'
  3157. - '&cred &fand stands out'
  3158. - '&fabove the others!'
  3159. - ''
  3160. - '&d&lREQUIREMENTS:'
  3161. - '&5&l* &fRank: &c&lVIP+++ &7and higher'
  3162. - ''
  3163. - '&c&oYou do not have rank enough!'
  3164. '19529':
  3165. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGY0ZGMzYzM3NTNiZjViMGI3ZjA4MWNkYjQ5YjgzZDM3NDI4YTEyZTQxODdmNjM0NmRlYzA2ZmFjNTRjZSJ9fX0=
  3166. data: 3
  3167. slot: 21
  3168. priority: 1
  3169. view_requirement:
  3170. requirements:
  3171. permission:
  3172. type: has permission
  3173. permission: chatcolor.darkred
  3174. display_name: '&4&lDark Red'
  3175. lore:
  3176. - ''
  3177. - '&fChange your chat color to'
  3178. - '&4dark red &fand stands out'
  3179. - '&fabove the others!'
  3180. - ''
  3181. - '&d&lREQUIREMENTS:'
  3182. - '&5&l* &fRank: &e&lVIP++++'
  3183. - ''
  3184. - '&5&nClick to select!'
  3185. left_click_commands:
  3186. - '[console] chatcolor set %player_name% dark_red'
  3187. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3188. &4&lDark Red&f!'
  3189. - '[close]'
  3190. - '[refresh]'
  3191. right_click_commands:
  3192. - '[console] chatcolor set %player_name% dark_red'
  3193. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3194. &4&lDark Red&f!'
  3195. - '[close]'
  3196. - '[refresh]'
  3197. '1959223':
  3198. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGY0ZGMzYzM3NTNiZjViMGI3ZjA4MWNkYjQ5YjgzZDM3NDI4YTEyZTQxODdmNjM0NmRlYzA2ZmFjNTRjZSJ9fX0=
  3199. data: 3
  3200. slot: 21
  3201. priority: 2
  3202. display_name: '&4&lDark Red'
  3203. lore:
  3204. - ''
  3205. - '&fChange your chat color to'
  3206. - '&4dark red &fand stands out'
  3207. - '&fabove the others!'
  3208. - ''
  3209. - '&d&lREQUIREMENTS:'
  3210. - '&5&l* &fRank: &e&lVIP++++'
  3211. - ''
  3212. - '&c&oYou do not have rank enough!'
  3213. '192529':
  3214. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzY0MTY4MmY0MzYwNmM1YzlhZDI2YmM3ZWE4YTMwZWU0NzU0N2M5ZGZkM2M2Y2RhNDllMWMxYTI4MTZjZjBiYSJ9fX0=
  3215. data: 3
  3216. slot: 22
  3217. priority: 1
  3218. view_requirement:
  3219. requirements:
  3220. permission:
  3221. type: has permission
  3222. permission: chatcolor.yellow
  3223. display_name: '&d&lYellow'
  3224. lore:
  3225. - ''
  3226. - '&fChange your chat color to'
  3227. - '&eyellow &fand stands out'
  3228. - '&fabove the others!'
  3229. - ''
  3230. - '&d&lREQUIREMENTS:'
  3231. - '&5&l* &fRank: &e&lVIP++++'
  3232. - ''
  3233. - '&5&nClick to select!'
  3234. left_click_commands:
  3235. - '[console] chatcolor set %player_name% yellow'
  3236. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3237. &e&lYellow&f!'
  3238. - '[close]'
  3239. - '[refresh]'
  3240. right_click_commands:
  3241. - '[console] chatcolor set %player_name% yellow'
  3242. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3243. &e&lYellow&f!'
  3244. - '[close]'
  3245. - '[refresh]'
  3246. '19259223':
  3247. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzY0MTY4MmY0MzYwNmM1YzlhZDI2YmM3ZWE4YTMwZWU0NzU0N2M5ZGZkM2M2Y2RhNDllMWMxYTI4MTZjZjBiYSJ9fX0=
  3248. data: 3
  3249. slot: 22
  3250. priority: 2
  3251. display_name: '&d&lYellow'
  3252. lore:
  3253. - ''
  3254. - '&fChange your chat color to'
  3255. - '&eyellow &fand stands out'
  3256. - '&fabove the others!'
  3257. - ''
  3258. - '&d&lREQUIREMENTS:'
  3259. - '&5&l* &fRank: &e&lVIP++++'
  3260. - ''
  3261. - '&c&oYou do not have rank enough!'
  3262. '1925329':
  3263. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmM0ODg2ZWYzNjJiMmM4MjNhNmFhNjUyNDFjNWM3ZGU3MWM5NGQ4ZWM1ODIyYzUxZTk2OTc2NjQxZjUzZWEzNSJ9fX0=
  3264. data: 3
  3265. slot: 23
  3266. priority: 1
  3267. view_requirement:
  3268. requirements:
  3269. permission:
  3270. type: has permission
  3271. permission: chatcolor.gold
  3272. display_name: '&6&lGold'
  3273. lore:
  3274. - ''
  3275. - '&fChange your chat color to'
  3276. - '&6gold &fand stands out'
  3277. - '&fabove the others!'
  3278. - ''
  3279. - '&d&lREQUIREMENTS:'
  3280. - '&5&l* &fRank: &e&lVIP++++'
  3281. - ''
  3282. - '&5&nClick to select!'
  3283. left_click_commands:
  3284. - '[console] chatcolor set %player_name% gold'
  3285. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3286. &6&lGold&f!'
  3287. - '[close]'
  3288. - '[refresh]'
  3289. right_click_commands:
  3290. - '[console] chatcolor set %player_name% gold'
  3291. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  3292. &6&lGold&f!'
  3293. - '[close]'
  3294. - '[refresh]'
  3295. '192592323':
  3296. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmM0ODg2ZWYzNjJiMmM4MjNhNmFhNjUyNDFjNWM3ZGU3MWM5NGQ4ZWM1ODIyYzUxZTk2OTc2NjQxZjUzZWEzNSJ9fX0=
  3297. data: 3
  3298. slot: 23
  3299. priority: 2
  3300. display_name: '&6&lGold'
  3301. lore:
  3302. - ''
  3303. - '&fChange your chat color to'
  3304. - '&6gold &fand stands out'
  3305. - '&fabove the others!'
  3306. - ''
  3307. - '&d&lREQUIREMENTS:'
  3308. - '&5&l* &fRank: &e&lVIP++++'
  3309. - ''
  3310. - '&c&oYou do not have rank enough!'
  3311. '1925923223':
  3312. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2VkMWFiYTczZjYzOWY0YmM0MmJkNDgxOTZjNzE1MTk3YmUyNzEyYzNiOTYyYzk3ZWJmOWU5ZWQ4ZWZhMDI1In19fQ==
  3313. data: 3
  3314. slot: 4
  3315. priority: 1
  3316. display_name: '&d&lReset color'
  3317. lore:
  3318. - ''
  3319. - '&fReset your chat color to'
  3320. - '&7&lGRAY &fif you are'
  3321. - '&fbored of colors!'
  3322. - ''
  3323. - '&5&nClick to reset!'
  3324. left_click_commands:
  3325. - '[console] chatcolor reset %player_name%'
  3326. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  3327. color!'
  3328. - '[close]'
  3329. - '[refresh]'
  3330. right_click_commands:
  3331. - '[console] chatcolor reset %player_name%'
  3332. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  3333. color!'
  3334. - '[close]'
  3335. - '[refresh]'
  3336. '20':
  3337. material: 160
  3338. display_name: '&f'
  3339. data: 15
  3340. slots:
  3341. - 0
  3342. - 1
  3343. - 2
  3344. - 3
  3345. - 5
  3346. - 6
  3347. - 7
  3348. - 8
  3349. - 9
  3350. - 10
  3351. - 16
  3352. - 17
  3353. - 18
  3354. - 19
  3355. - 20
  3356. - 24
  3357. - 25
  3358. - 26
  3359. - 27
  3360. - 28
  3361. - 29
  3362. - 30
  3363. - 31
  3364. - 32
  3365. - 33
  3366. - 34
  3367. - 35
  3368. priority: 1
  3369. actionsmember:
  3370. open_command:
  3371. - dfsargewdeetewffasde
  3372. update_interval: 1
  3373. menu_title: '&8» Role Actions'
  3374. size: 36
  3375. items:
  3376. '9':
  3377. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODY1MmUyYjkzNmNhODAyNmJkMjg2NTFkN2M5ZjI4MTlkMmU5MjM2OTc3MzRkMThkZmRiMTM1NTBmOGZkYWQ1ZiJ9fX0=
  3378. data: 3
  3379. slot: 10
  3380. priority: 1
  3381. display_name: '&d&lBack'
  3382. lore:
  3383. - ''
  3384. - '&5&nClick to go back!'
  3385. left_click_commands:
  3386. - '[openguimenu] island'
  3387. - '[refresh]'
  3388. right_click_commands:
  3389. - '[openguimenu] island'
  3390. - '[refresh]'
  3391. '9911':
  3392. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3393. data: 3
  3394. slot: 12
  3395. priority: 1
  3396. view_requirement:
  3397. requirements:
  3398. music:
  3399. type: string equals
  3400. input: '%javascript_permissionscore%'
  3401. output: 'yes'
  3402. display_name: '&d&lSet home'
  3403. lore:
  3404. - ''
  3405. - '&fSet island''s home main'
  3406. - '&fhome or others to your'
  3407. - '&fcurrent location!'
  3408. - ''
  3409. - '&d&lREQUIREMENTS:'
  3410. - '&5&l* &fIsland Rank: &7Member'
  3411. - ''
  3412. - '&5&nLeft-click to set main home!'
  3413. - '&5&nRight-click to set a home!'
  3414. - '&c&oYou will only be able to'
  3415. - '&c&oset more homes if you'
  3416. - '&c&oupgrades the island homes.'
  3417. left_click_commands:
  3418. - '[player] is sethome'
  3419. - '[console] titlemanager:tm message %player_name% &7\n&fYou have set the
  3420. home successfully!'
  3421. - '[close]'
  3422. - '[refresh]'
  3423. right_click_commands:
  3424. - '[player] is sethome <-a Home name>'
  3425. - '[close]'
  3426. - '[refresh]'
  3427. 934fsdf1:
  3428. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3429. data: 3
  3430. slot: 13
  3431. priority: 1
  3432. view_requirement:
  3433. requirements:
  3434. music:
  3435. type: string equals
  3436. input: '%askyblock_owner%'
  3437. output: '%player_name%'
  3438. display_name: '&d&lInvite player'
  3439. lore:
  3440. - ''
  3441. - '&fInvite some players to your'
  3442. - '&fisland to make it better.'
  3443. - '&fAnd meet new people!'
  3444. - ''
  3445. - '&d&lREQUIREMENTS:'
  3446. - '&5&l* &fRank: &cOwner'
  3447. - ''
  3448. - '&5&nClick to invite players!'
  3449. left_click_commands:
  3450. - '[player] is invite <-a Player Name>'
  3451. - '[close]'
  3452. - '[refresh]'
  3453. right_click_commands:
  3454. - '[player] is invite <-a Player Name>'
  3455. - '[close]'
  3456. - '[refresh]'
  3457. 1235ffds121:
  3458. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3459. data: 3
  3460. slot: 13
  3461. priority: 2
  3462. display_name: '&d&lInvite player'
  3463. lore:
  3464. - ''
  3465. - '&fInvite some players to your'
  3466. - '&fisland to make it better.'
  3467. - '&fAnd meet new people!'
  3468. - ''
  3469. - '&d&lREQUIREMENTS:'
  3470. - '&5&l* &fRank: &cOwner'
  3471. - ''
  3472. - '&c&oYou do not have island rank enough!'
  3473. '92123242':
  3474. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3475. data: 3
  3476. slot: 14
  3477. priority: 1
  3478. view_requirement:
  3479. requirements:
  3480. music:
  3481. type: string equals
  3482. input: '%askyblock_owner%'
  3483. output: '%player_name%'
  3484. display_name: '&d&lKick player'
  3485. lore:
  3486. - ''
  3487. - '&fKick any player from your'
  3488. - '&fisland team if he bothers you!'
  3489. - ''
  3490. - '&d&lREQUIREMENTS:'
  3491. - '&5&l* &fRank: &cOwner'
  3492. - ''
  3493. - '&5&nClick to kick members!'
  3494. left_click_commands:
  3495. - '[player] is kick <-a Player Name>'
  3496. - '[close]'
  3497. - '[refresh]'
  3498. right_click_commands:
  3499. - '[player] is kick <-a Player Name>'
  3500. - '[close]'
  3501. - '[refresh]'
  3502. 122d2312:
  3503. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3504. data: 3
  3505. slot: 14
  3506. priority: 2
  3507. display_name: '&d&lKick player'
  3508. lore:
  3509. - ''
  3510. - '&fKick any player from your'
  3511. - '&fisland team if he bothers you!'
  3512. - ''
  3513. - '&d&lREQUIREMENTS:'
  3514. - '&5&l* &fRank: &7Member'
  3515. - ''
  3516. - '&c&oYou do not have island rank enough!'
  3517. 9213sa42:
  3518. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3519. data: 3
  3520. slot: 15
  3521. priority: 1
  3522. view_requirement:
  3523. requirements:
  3524. music:
  3525. type: string equals
  3526. input: '%javascript_permissionscore%'
  3527. output: 'yes'
  3528. display_name: '&d&lExpel players'
  3529. lore:
  3530. - ''
  3531. - '&fExpel players from your island'
  3532. - '&fonly if they are in your island'
  3533. - '&fat this moment!'
  3534. - ''
  3535. - '&d&lREQUIREMENTS:'
  3536. - '&5&l* &fRank: &7Member'
  3537. - ''
  3538. - '&5&nClick to expel players!'
  3539. left_click_commands:
  3540. - '[player] is expel <-a Player Name>'
  3541. - '[close]'
  3542. - '[refresh]'
  3543. right_click_commands:
  3544. - '[player] is expel <-a Player Name>'
  3545. - '[close]'
  3546. - '[refresh]'
  3547. '9253242':
  3548. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3549. data: 3
  3550. slot: 16
  3551. priority: 1
  3552. view_requirement:
  3553. requirements:
  3554. music:
  3555. type: string equals
  3556. input: '%askyblock_owner%'
  3557. output: '%player_name%'
  3558. display_name: '&d&lChange leader'
  3559. lore:
  3560. - ''
  3561. - '&fMake another player leader of'
  3562. - '&fyour island if you want to'
  3563. - '&fleave!'
  3564. - ''
  3565. - '&d&lREQUIREMENTS:'
  3566. - '&5&l* &fRank: &cOwner'
  3567. - ''
  3568. - '&5&nClick to change leader!'
  3569. left_click_commands:
  3570. - '[player] is makeleader <-a Player Name>'
  3571. - '[close]'
  3572. - '[refresh]'
  3573. right_click_commands:
  3574. - '[player] is makeleader <-a Player Name>'
  3575. - '[close]'
  3576. - '[refresh]'
  3577. '12522312':
  3578. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3579. data: 3
  3580. slot: 16
  3581. priority: 2
  3582. display_name: '&d&lChange leader'
  3583. lore:
  3584. - ''
  3585. - '&fMake another player leader of'
  3586. - '&fyour island if you want to'
  3587. - '&fleave!'
  3588. - ''
  3589. - '&d&lREQUIREMENTS:'
  3590. - '&5&l* &fRank: &cOwner'
  3591. - ''
  3592. - '&c&oYou do not have island rank enough!'
  3593. 92532as42:
  3594. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3595. data: 3
  3596. slot: 21
  3597. priority: 1
  3598. view_requirement:
  3599. requirements:
  3600. music:
  3601. type: string equals
  3602. input: '%askyblock_owner%'
  3603. output: '%player_name%'
  3604. display_name: '&d&lChange biome'
  3605. lore:
  3606. - ''
  3607. - '&fChange the current biome'
  3608. - '&fof your island to another'
  3609. - '&fone!'
  3610. - ''
  3611. - '&d&lREQUIREMENTS:'
  3612. - '&5&l* &fRank: &cOwner'
  3613. - ''
  3614. - '&5&nClick to change biome!'
  3615. left_click_commands:
  3616. - '[player] is biomes'
  3617. - '[close]'
  3618. - '[refresh]'
  3619. right_click_commands:
  3620. - '[player] is biomes'
  3621. - '[close]'
  3622. - '[refresh]'
  3623. 1252as2312:
  3624. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3625. data: 3
  3626. slot: 21
  3627. priority: 2
  3628. display_name: '&d&lChange biome'
  3629. lore:
  3630. - ''
  3631. - '&fChange the current biome'
  3632. - '&fof your island to another'
  3633. - '&fone!'
  3634. - ''
  3635. - '&d&lREQUIREMENTS:'
  3636. - '&5&l* &fRank: &cOwner'
  3637. - ''
  3638. - '&c&oYou do not have island rank enough!'
  3639. '213124':
  3640. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3641. data: 3
  3642. slot: 22
  3643. priority: 1
  3644. view_requirement:
  3645. requirements:
  3646. music:
  3647. type: string equals
  3648. input: '%askyblock_owner%'
  3649. output: '%player_name%'
  3650. display_name: '&d&lReset island'
  3651. lore:
  3652. - ''
  3653. - '&fReset and reload your current'
  3654. - '&fisland to start again!'
  3655. - '&7&o(Only if you have resets available)'
  3656. - ''
  3657. - '&d&lREQUIREMENTS:'
  3658. - '&5&l* &fRank: &cOwner'
  3659. - ''
  3660. - '&5&nLeft-click to reset island!'
  3661. - '&5&nRight-click to buy resets!'
  3662. left_click_commands:
  3663. - '[player] is reset'
  3664. - '[close]'
  3665. - '[refresh]'
  3666. right_click_commands:
  3667. - '[player] is reset'
  3668. - '[close]'
  3669. - '[refresh]'
  3670. '2131524':
  3671. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3672. data: 3
  3673. slot: 22
  3674. priority: 2
  3675. display_name: '&d&lReset island'
  3676. lore:
  3677. - ''
  3678. - '&fReset and reload your current'
  3679. - '&fisland to start again!'
  3680. - '&7&o(Only if you have resets available)'
  3681. - ''
  3682. - '&d&lREQUIREMENTS:'
  3683. - '&5&l* &fRank: &cOwner'
  3684. - ''
  3685. - '&c&oYou do not have island rank enough!'
  3686. '2131246':
  3687. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3688. data: 3
  3689. slot: 23
  3690. priority: 1
  3691. view_requirement:
  3692. requirements:
  3693. music:
  3694. type: string equals
  3695. input: '%askyblock_owner%'
  3696. output: '%player_name%'
  3697. display_name: '&d&lChange name'
  3698. lore:
  3699. - ''
  3700. - '&fChange the current island'
  3701. - '&fname showed to the players!'
  3702. - ''
  3703. - '&d&lREQUIREMENTS:'
  3704. - '&5&l* &fRank: &cOwner'
  3705. - ''
  3706. - '&5&nClick to change name!'
  3707. left_click_commands:
  3708. - '[player] is name <-a Island Name>'
  3709. - '[close]'
  3710. - '[refresh]'
  3711. right_click_commands:
  3712. - '[player] is name <-a Island Name>'
  3713. - '[close]'
  3714. - '[refresh]'
  3715. '213166765246':
  3716. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3717. data: 3
  3718. slot: 23
  3719. priority: 2
  3720. display_name: '&d&lChange name'
  3721. lore:
  3722. - ''
  3723. - '&fChange the current island'
  3724. - '&fname showed to the players!'
  3725. - ''
  3726. - '&d&lREQUIREMENTS:'
  3727. - '&5&l* &fRank: &cOwner'
  3728. - ''
  3729. - '&c&oYou do not have island rank enough!'
  3730. '213112384246':
  3731. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3732. data: 3
  3733. slot: 24
  3734. priority: 1
  3735. view_requirement:
  3736. requirements:
  3737. music:
  3738. type: string equals
  3739. input: '%askyblock_owner%'
  3740. output: '%player_name%'
  3741. display_name: '&d&lChange border'
  3742. lore:
  3743. - ''
  3744. - '&fChange the current island'
  3745. - '&fborder color to a'
  3746. - '&fexclusive one!'
  3747. - ''
  3748. - '&d&lINFORMATION:'
  3749. - '&5&l* &fColor: &7%isborder_color%'
  3750. - ''
  3751. - '&d&lREQUIREMENTS:'
  3752. - '&5&l* &fRank: &cOwner'
  3753. - ''
  3754. - '&5&nClick to change color!'
  3755. left_click_commands:
  3756. - '[openguimenu] isborders'
  3757. - '[close]'
  3758. - '[refresh]'
  3759. right_click_commands:
  3760. - '[openguimenu] isborders'
  3761. - '[close]'
  3762. - '[refresh]'
  3763. '213152146':
  3764. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE5MDUzZDIxNjNkMGY1NjExNDVkMzNhNTEzMTQ1ZDRhYzFmOGE0NThiYWE3OTZiZTM4M2U3NTI1YTA1ZjQ1In19fQ==
  3765. data: 3
  3766. slot: 24
  3767. priority: 2
  3768. display_name: '&d&lChange border'
  3769. lore:
  3770. - ''
  3771. - '&fChange the current island'
  3772. - '&fborder color to a'
  3773. - '&fexclusive one!'
  3774. - ''
  3775. - '&d&lINFORMATION:'
  3776. - '&5&l* &fColor: &7%isborder_color%'
  3777. - ''
  3778. - '&d&lREQUIREMENTS:'
  3779. - '&5&l* &fRank: &cOwner'
  3780. - ''
  3781. - '&c&oYou do not have island rank enough!'
  3782. '20':
  3783. material: 160
  3784. display_name: '&f'
  3785. data: 15
  3786. slots:
  3787. - 0
  3788. - 1
  3789. - 2
  3790. - 3
  3791. - 4
  3792. - 5
  3793. - 6
  3794. - 7
  3795. - 8
  3796. - 9
  3797. - 11
  3798. - 17
  3799. - 18
  3800. - 19
  3801. - 20
  3802. - 26
  3803. - 27
  3804. - 28
  3805. - 29
  3806. - 30
  3807. - 31
  3808. - 32
  3809. - 33
  3810. - 34
  3811. - 35
  3812. - 36
  3813. priority: 1
  3814. Isupgrades:
  3815. open_command:
  3816. - is upgrade
  3817. - island upgrades
  3818. - is upgrades
  3819. - island upgrade
  3820. update_interval: 1
  3821. menu_title: '&8» Island Upgrades'
  3822. size: 27
  3823. items:
  3824. '10':
  3825. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2JmYjQxZjg2NmU3ZThlNTkzNjU5OTg2YzlkNmU4OGNkMzc2NzdiM2Y3YmQ0NDI1M2U1ODcxZTY2ZDFkNDI0In19fQ==
  3826. data: 3
  3827. slot: 11
  3828. priority: 1
  3829. display_name: '&d&lIsland Size Upgrade'
  3830. lore:
  3831. - ''
  3832. - '&fPurchase these upgrades to'
  3833. - '&fincrease the size of your'
  3834. - '&fisland border.'
  3835. - ''
  3836. - '&d&lINFORMATION:'
  3837. - '&5&l* &fCurrency: &dBalance'
  3838. - '&5&l* &fProgress: %javascript_border%'
  3839. - '&5&l* &fDefault: &a50x50 Size'
  3840. - ''
  3841. - '&5&nClick to proceed!'
  3842. left_click_commands:
  3843. - '[openguimenu] Upgradesisize'
  3844. - '[close]'
  3845. - '[refresh]'
  3846. right_click_commands:
  3847. - '[openguimenu] Upgradesisize'
  3848. - '[close]'
  3849. - '[refresh]'
  3850. '9':
  3851. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTUzZjIzYTlkZGE5ZTRkZWJhNmNkZjBmODhmZGE4NDEyMjk2NTg2NTliNzFlMzc5OWE2YjU0ZGVmZTkyYzYifX19
  3852. data: 3
  3853. slot: 12
  3854. priority: 1
  3855. display_name: '&d&lTeam Size Upgrade'
  3856. lore:
  3857. - ''
  3858. - '&fPurchase these upgrades to increase'
  3859. - '&fthe limit of how many players'
  3860. - '&fcan be on your island''s team.'
  3861. - ''
  3862. - '&d&lINFORMATION:'
  3863. - '&5&l* &fCurrency: &dBalance'
  3864. - '&5&l* &fProgress: %javascript_team%'
  3865. - '&5&l* &fDefault: &a2 Members'
  3866. - ''
  3867. - '&5&nClick to proceed!'
  3868. left_click_commands:
  3869. - '[openguimenu] uisteam'
  3870. - '[close]'
  3871. - '[refresh]'
  3872. right_click_commands:
  3873. - '[openguimenu] uisteam'
  3874. - '[close]'
  3875. - '[refresh]'
  3876. '11':
  3877. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmEyODI5OTg5NmY0MTNmZTVkYjg0YTM4NTQ2MjQ1OGY3YmQxNjQ2ZTg2MjVjMjViMjY2M2UxMmE2YiJ9fX0=
  3878. data: 3
  3879. slot: 13
  3880. priority: 1
  3881. display_name: '&d&lIsland Homes Upgrade'
  3882. lore:
  3883. - ''
  3884. - '&fPurchase these upgrades to'
  3885. - '&fincrease the limit of how many'
  3886. - '&fhomes you can set on your own island.'
  3887. - ''
  3888. - '&d&lINFORMATION:'
  3889. - '&5&l* &fCurrency: &dBalance'
  3890. - '&5&l* &fProgress: %javascript_homes%'
  3891. - '&5&l* &fDefault: &a1 Home'
  3892. - ''
  3893. - '&5&nClick to proceed!'
  3894. left_click_commands:
  3895. - '[openguimenu] uishomes'
  3896. - '[close]'
  3897. - '[refresh]'
  3898. right_click_commands:
  3899. - '[openguimenu] uishomes'
  3900. - '[close]'
  3901. - '[refresh]'
  3902. '12':
  3903. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTQ0NGViZDQ3MzUyODZmNWE3ZWYzMTZlZDdmMTlkMjZjYTAyYTE5ZWQxNjQwOWY5MjdlODg4Zjg2NDJkNmQifX19
  3904. data: 3
  3905. slot: 14
  3906. priority: 1
  3907. display_name: '&d&lGenerator Upgrade'
  3908. lore:
  3909. - ''
  3910. - '&fThese upgrades, based on island'
  3911. - '&flevels will improve the ore production'
  3912. - '&fof your island''s generators.'
  3913. - ''
  3914. - '&d&lINFORMATION:'
  3915. - '&5&l* &fCurrency: &dIsland Level'
  3916. - '&5&l* &fDefault: &aStone/Cobblestone'
  3917. - ''
  3918. - '&5&nClick to proceed!'
  3919. left_click_commands:
  3920. - '[openguimenu] oregen'
  3921. - '[close]'
  3922. - '[refresh]'
  3923. right_click_commands:
  3924. - '[openguimenu] oregen'
  3925. - '[close]'
  3926. - '[refresh]'
  3927. '13':
  3928. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDZjMzQ2OWNiODQ2M2QyNmZlMGVmNzFmYTc5MGU3Y2M5NWNiNDI5NGQ1NDcwZDdlZmRjZTBjNDkxYzVlZSJ9fX0=
  3929. data: 3
  3930. slot: 15
  3931. priority: 1
  3932. display_name: '&d&lHopper Limit Upgrade'
  3933. lore:
  3934. - ''
  3935. - '&fPurchase these upgrades to'
  3936. - '&fincrease the limit of how many'
  3937. - '&fhoppers you can have on your island.'
  3938. - ''
  3939. - '&d&lINFORMATION:'
  3940. - '&5&l* &fCurrency: &dRank'
  3941. - '&5&l* &fProgress: %javascript_hoppers%'
  3942. - '&5&l* &fDefault: &a100 Hoppers'
  3943. - ''
  3944. - '&5&nClick to proceed!'
  3945. left_click_commands:
  3946. - '[console] titlemanager:tm message %player_name% &7\n&fYou have to buy a
  3947. rank to upgrade it!'
  3948. - '[close]'
  3949. - '[refresh]'
  3950. right_click_commands:
  3951. - '[console] titlemanager:tm message %player_name% &7\n&fYou have to buy a
  3952. rank to upgrade it!'
  3953. - '[close]'
  3954. - '[refresh]'
  3955. '20':
  3956. material: 160
  3957. display_name: '&f'
  3958. data: 15
  3959. slots:
  3960. - 0
  3961. - 1
  3962. - 2
  3963. - 3
  3964. - 4
  3965. - 5
  3966. - 6
  3967. - 7
  3968. - 8
  3969. - 9
  3970. - 10
  3971. - 16
  3972. - 17
  3973. - 18
  3974. - 19
  3975. - 20
  3976. - 21
  3977. - 22
  3978. - 23
  3979. - 24
  3980. - 25
  3981. - 26
  3982. priority: 1
  3983. Upgradesisize:
  3984. update_interval: 1
  3985. menu_title: '&8» Island Size Upgrades'
  3986. open_command: dsfgweedfdsgdsdf
  3987. inventory_type: DROPPER
  3988. size: 27
  3989. items:
  3990. '10':
  3991. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzJmYThmMzhjN2IyMjA5NjYxOWMzYTZkNjQ5OGI0MDU1MzBlNDhkNWQ0ZjkxZTJhYWNlYTU3ODg0NGQ1YzY3In19fQ==
  3992. data: 3
  3993. slot: 4
  3994. view_requirement:
  3995. requirements:
  3996. music:
  3997. type: string equals
  3998. input: '%javascript_border%'
  3999. output: '&c■■■'
  4000. priority: 1
  4001. display_name: '&d&lSize Upgrade #1'
  4002. lore:
  4003. - ''
  4004. - '&fExpand your island border'
  4005. - '&fby purchasing this next'
  4006. - '&fupgrade.'
  4007. - ''
  4008. - '&d&lINFORMATION:'
  4009. - '&5&l* &fNew size: &b&l125x125'
  4010. - '&5&l* &fRating Bar: &a⬛&c⬛⬛'
  4011. - ''
  4012. - '&d&lREQUIREMENTS:'
  4013. - '&5&l* &fBalance: &e$160,000'
  4014. - ''
  4015. - '&5&nClick to upgrade!'
  4016. left_click_commands:
  4017. - '[console] pex user %player_name% add askyblock.island.range.125'
  4018. - '[console] eco take %player_name% 160000'
  4019. - '[close]'
  4020. - '[refresh]'
  4021. right_click_commands:
  4022. - '[console] pex user %player_name% add askyblock.island.range.125'
  4023. - '[console] eco take %player_name% 160000'
  4024. - '[close]'
  4025. - '[refresh]'
  4026. left_click_requirement:
  4027. requirements:
  4028. name:
  4029. type: has money
  4030. amount: 160000
  4031. deny_commands:
  4032. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4033. this upgrade!'
  4034. - '[close]'
  4035. right_click_requirement:
  4036. requirements:
  4037. name:
  4038. type: has money
  4039. amount: 160000
  4040. deny_commands:
  4041. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4042. this upgrade!'
  4043. - '[close]'
  4044. '9':
  4045. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGM5MzY1NjQyYzZlZGRjZmVkZjViNWUxNGUyYmM3MTI1N2Q5ZTRhMzM2M2QxMjNjNmYzM2M1NWNhZmJmNmQifX19
  4046. data: 3
  4047. slot: 4
  4048. view_requirement:
  4049. requirements:
  4050. music:
  4051. type: string equals
  4052. input: '%javascript_border%'
  4053. output: '&a■&c■■'
  4054. priority: 2
  4055. display_name: '&d&lSize Upgrade #2'
  4056. lore:
  4057. - ''
  4058. - '&fExpand your island border'
  4059. - '&fby purchasing this next'
  4060. - '&fupgrade.'
  4061. - ''
  4062. - '&d&lINFORMATION:'
  4063. - '&5&l* &fNew size: &b&l150x150'
  4064. - '&5&l* &fRating Bar: &a⬛⬛&c⬛'
  4065. - ''
  4066. - '&d&lREQUIREMENTS:'
  4067. - '&5&l* &fBalance: &e$200,000'
  4068. - ''
  4069. - '&5&nClick to upgrade!'
  4070. left_click_commands:
  4071. - '[console] pex user %player_name% add askyblock.island.range.150'
  4072. - '[console] eco take %player_name% 200000'
  4073. - '[close]'
  4074. - '[refresh]'
  4075. right_click_commands:
  4076. - '[console] pex user %player_name% add askyblock.island.range.150'
  4077. - '[console] eco take %player_name% 200000'
  4078. - '[close]'
  4079. - '[refresh]'
  4080. left_click_requirement:
  4081. requirements:
  4082. name:
  4083. type: has money
  4084. amount: 200000
  4085. deny_commands:
  4086. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4087. this upgrade!'
  4088. - '[close]'
  4089. right_click_requirement:
  4090. requirements:
  4091. name:
  4092. type: has money
  4093. amount: 200000
  4094. deny_commands:
  4095. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4096. this upgrade!'
  4097. - '[close]'
  4098. '11':
  4099. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmFmZjJlYjQ5OGU1YzZhMDQ0ODRmMGM5Zjc4NWI0NDg0NzlhYjIxM2RmOTVlYzkxMTc2YTMwOGExMmFkZDcwIn19fQ==
  4100. data: 3
  4101. slot: 4
  4102. view_requirement:
  4103. requirements:
  4104. music:
  4105. type: string equals
  4106. input: '%javascript_border%'
  4107. output: '&a■■&c■'
  4108. priority: 3
  4109. display_name: '&d&lSize Upgrade #3'
  4110. lore:
  4111. - ''
  4112. - '&fExpand your island border'
  4113. - '&fby purchasing this next'
  4114. - '&fupgrade.'
  4115. - ''
  4116. - '&d&lINFORMATION:'
  4117. - '&5&l* &fNew size: &b&l200x200'
  4118. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  4119. - ''
  4120. - '&d&lREQUIREMENTS:'
  4121. - '&5&l* &fBalance: &e$280,000'
  4122. - ''
  4123. - '&5&nClick to upgrade!'
  4124. left_click_commands:
  4125. - '[console] pex user %player_name% add askyblock.island.range.200'
  4126. - '[console] eco take %player_name% 280000'
  4127. - '[close]'
  4128. - '[refresh]'
  4129. right_click_commands:
  4130. - '[console] pex user %player_name% add askyblock.island.range.200'
  4131. - '[console] eco take %player_name% 280000'
  4132. - '[close]'
  4133. - '[refresh]'
  4134. left_click_requirement:
  4135. requirements:
  4136. name:
  4137. type: has money
  4138. amount: 280000
  4139. deny_commands:
  4140. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4141. this upgrade!'
  4142. - '[close]'
  4143. right_click_requirement:
  4144. requirements:
  4145. name:
  4146. type: has money
  4147. amount: 280000
  4148. deny_commands:
  4149. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4150. this upgrade!'
  4151. - '[close]'
  4152. '12':
  4153. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2JmYjQxZjg2NmU3ZThlNTkzNjU5OTg2YzlkNmU4OGNkMzc2NzdiM2Y3YmQ0NDI1M2U1ODcxZTY2ZDFkNDI0In19fQ==
  4154. data: 3
  4155. slot: 4
  4156. priority: 4
  4157. display_name: '&d&lSize Upgrade Full'
  4158. lore:
  4159. - ''
  4160. - '&fYou got all the island'
  4161. - '&fsize upgrades of your island,'
  4162. - '&fcongratulations!'
  4163. - ''
  4164. - '&d&lINFORMATION:'
  4165. - '&5&l* &fCurrent size: &b&l200x200'
  4166. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  4167. '20':
  4168. material: 160
  4169. display_name: '&f'
  4170. data: 15
  4171. slots:
  4172. - 0
  4173. - 1
  4174. - 2
  4175. - 3
  4176. - 5
  4177. - 6
  4178. - 7
  4179. - 8
  4180. priority: 1
  4181. uisteam:
  4182. open_command:
  4183. - dsfgweedfdsgd
  4184. update_interval: 1
  4185. menu_title: '&8» Island Team Upgrades'
  4186. inventory_type: DROPPER
  4187. size: 27
  4188. items:
  4189. '10':
  4190. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGFjYzU5OTQ4ODQ1NzNkYmM2Y2Q3YjUwM2NjNTViNzMzYjE4Yjg1YTFhZWE1ZjQwMWMwNjUzMjZjYzNjM2YifX19
  4191. data: 3
  4192. slot: 4
  4193. view_requirement:
  4194. requirements:
  4195. music:
  4196. type: string equals
  4197. input: '%javascript_team%'
  4198. output: '&c■■■■■'
  4199. priority: 1
  4200. display_name: '&d&lTeam Upgrade #1'
  4201. lore:
  4202. - ''
  4203. - '&fExpand your island team size'
  4204. - '&fby purchasing this next'
  4205. - '&fupgrade.'
  4206. - ''
  4207. - '&d&lINFORMATION:'
  4208. - '&5&l* &fNew limit: &b&l4'
  4209. - '&5&l* &fRating Bar: &a⬛&c⬛⬛⬛⬛'
  4210. - ''
  4211. - '&d&lREQUIREMENTS:'
  4212. - '&5&l* &fBalance: &e$250,000'
  4213. - ''
  4214. - '&5&nClick to upgrade!'
  4215. left_click_commands:
  4216. - '[console] pex user %player_name% add askyblock.team.maxsize.4'
  4217. - '[console] eco take %player_name% 250000'
  4218. - '[close]'
  4219. - '[refresh]'
  4220. right_click_commands:
  4221. - '[console] pex user %player_name% add askyblock.team.maxsize.4'
  4222. - '[console] eco take %player_name% 250000'
  4223. - '[close]'
  4224. - '[refresh]'
  4225. left_click_requirement:
  4226. requirements:
  4227. name:
  4228. type: has money
  4229. amount: 250000
  4230. deny_commands:
  4231. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4232. this upgrade!'
  4233. - '[close]'
  4234. right_click_requirement:
  4235. requirements:
  4236. name:
  4237. type: has money
  4238. amount: 250000
  4239. deny_commands:
  4240. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4241. this upgrade!'
  4242. - '[close]'
  4243. '9':
  4244. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDk2ZTJhM2ZlMWVkNjQ0MzZlOGQ2MGI5Zjk5OWZmMzg3MDFhYzEzYjE0NTEwZGFjYmYwNzA0MDYwZmIyYSJ9fX0=
  4245. data: 3
  4246. slot: 4
  4247. view_requirement:
  4248. requirements:
  4249. music:
  4250. type: string equals
  4251. input: '%javascript_team%'
  4252. output: '&a■&c■■■■'
  4253. priority: 2
  4254. display_name: '&d&lTeam Upgrade #2'
  4255. lore:
  4256. - ''
  4257. - '&fExpand your island team size'
  4258. - '&fby purchasing this next'
  4259. - '&fupgrade.'
  4260. - ''
  4261. - '&d&lINFORMATION:'
  4262. - '&5&l* &fNew limit: &b&l6'
  4263. - '&5&l* &fRating Bar: &a⬛⬛&c⬛⬛⬛'
  4264. - ''
  4265. - '&d&lREQUIREMENTS:'
  4266. - '&5&l* &fBalance: &e$500,000'
  4267. - ''
  4268. - '&5&nClick to upgrade!'
  4269. left_click_commands:
  4270. - '[console] pex user %player_name% add askyblock.team.maxsize.6'
  4271. - '[console] eco take %player_name% 500000'
  4272. - '[close]'
  4273. - '[refresh]'
  4274. right_click_commands:
  4275. - '[console] pex user %player_name% add askyblock.team.maxsize.6'
  4276. - '[console] eco take %player_name% 500000'
  4277. - '[close]'
  4278. - '[refresh]'
  4279. left_click_requirement:
  4280. requirements:
  4281. name:
  4282. type: has money
  4283. amount: 500000
  4284. deny_commands:
  4285. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4286. this upgrade!'
  4287. - '[close]'
  4288. right_click_requirement:
  4289. requirements:
  4290. name:
  4291. type: has money
  4292. amount: 500000
  4293. deny_commands:
  4294. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4295. this upgrade!'
  4296. - '[close]'
  4297. '11':
  4298. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzZjNzZmNjJjYjZiNTU3NDk3ZjMyMmZmOTUzNzJlNDUxOGNhN2Q5ODc5Yjc2ZDQ2ZGE5ZWUwMWEzY2FiZTk0ZiJ9fX0=
  4299. data: 3
  4300. slot: 4
  4301. view_requirement:
  4302. requirements:
  4303. music:
  4304. type: string equals
  4305. input: '%javascript_team%'
  4306. output: '&a■■&c■■■'
  4307. priority: 3
  4308. display_name: '&d&lTeam Upgrade #3'
  4309. lore:
  4310. - ''
  4311. - '&fExpand your island team size'
  4312. - '&fby purchasing this next'
  4313. - '&fupgrade.'
  4314. - ''
  4315. - '&d&lINFORMATION:'
  4316. - '&5&l* &fNew limit: &b&l8'
  4317. - '&5&l* &fRating Bar: &a⬛⬛⬛&c⬛⬛'
  4318. - ''
  4319. - '&d&lREQUIREMENTS:'
  4320. - '&5&l* &fBalance: &e$800,000'
  4321. - ''
  4322. - '&5&nClick to upgrade!'
  4323. left_click_commands:
  4324. - '[console] pex user %player_name% add askyblock.team.maxsize.8'
  4325. - '[console] eco take %player_name% 800000'
  4326. - '[close]'
  4327. - '[refresh]'
  4328. right_click_commands:
  4329. - '[console] pex user %player_name% add askyblock.team.maxsize.8'
  4330. - '[console] eco take %player_name% 800000'
  4331. - '[close]'
  4332. - '[refresh]'
  4333. left_click_requirement:
  4334. requirements:
  4335. name:
  4336. type: has money
  4337. amount: 800000
  4338. deny_commands:
  4339. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4340. this upgrade!'
  4341. - '[close]'
  4342. right_click_requirement:
  4343. requirements:
  4344. name:
  4345. type: has money
  4346. amount: 800000
  4347. deny_commands:
  4348. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4349. this upgrade!'
  4350. - '[close]'
  4351. '12':
  4352. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTdmZTMzNjJkNWQ3MGE3ODczZDU4MjI2MTNlZjdiZDgxMjk3MmM3MmEzZmFkZDUwNWNiYmE2NDY2YjViYiJ9fX0=
  4353. data: 3
  4354. slot: 4
  4355. view_requirement:
  4356. requirements:
  4357. music:
  4358. type: string equals
  4359. input: '%javascript_team%'
  4360. output: '&a■■■&c■■'
  4361. priority: 4
  4362. display_name: '&d&lTeam Upgrade #4'
  4363. lore:
  4364. - ''
  4365. - '&fExpand your island team size'
  4366. - '&fby purchasing this next'
  4367. - '&fupgrade.'
  4368. - ''
  4369. - '&d&lINFORMATION:'
  4370. - '&5&l* &fNew limit: &b&l10'
  4371. - '&5&l* &fRating Bar: &a⬛⬛⬛⬛&c⬛'
  4372. - ''
  4373. - '&d&lREQUIREMENTS:'
  4374. - '&5&l* &fBalance: &e$1,100,000'
  4375. - ''
  4376. - '&5&nClick to upgrade!'
  4377. left_click_commands:
  4378. - '[console] pex user %player_name% add askyblock.team.maxsize.10'
  4379. - '[console] eco take %player_name% 1100000'
  4380. - '[close]'
  4381. - '[refresh]'
  4382. right_click_commands:
  4383. - '[console] pex user %player_name% add askyblock.team.maxsize.10'
  4384. - '[console] eco take %player_name% 1100000'
  4385. - '[close]'
  4386. - '[refresh]'
  4387. left_click_requirement:
  4388. requirements:
  4389. name:
  4390. type: has money
  4391. amount: 1100000
  4392. deny_commands:
  4393. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4394. this upgrade!'
  4395. - '[close]'
  4396. right_click_requirement:
  4397. requirements:
  4398. name:
  4399. type: has money
  4400. amount: 1100000
  4401. deny_commands:
  4402. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4403. this upgrade!'
  4404. - '[close]'
  4405. '13':
  4406. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzdjMWJhNDk2MWQxMTlkMDZmOGFmOTkxNzlkNmU2MWFjOWQ2ZWM2ZmFkYjMyZmE1NTY1NzkxYWZiMTY1OWMifX19
  4407. data: 3
  4408. slot: 4
  4409. view_requirement:
  4410. requirements:
  4411. music:
  4412. type: string equals
  4413. input: '%javascript_team%'
  4414. output: '&a■■■■&c■'
  4415. priority: 5
  4416. display_name: '&d&lTeam Upgrade #5'
  4417. lore:
  4418. - ''
  4419. - '&fExpand your island team size'
  4420. - '&fby purchasing this next'
  4421. - '&fupgrade.'
  4422. - ''
  4423. - '&d&lINFORMATION:'
  4424. - '&5&l* &fNew limit: &b&l12'
  4425. - '&5&l* &fRating Bar: &a⬛⬛⬛⬛⬛'
  4426. - ''
  4427. - '&d&lREQUIREMENTS:'
  4428. - '&5&l* &fBalance: &e$1,400,000'
  4429. - ''
  4430. - '&5&nClick to upgrade!'
  4431. left_click_commands:
  4432. - '[console] pex user %player_name% add askyblock.team.maxsize.12'
  4433. - '[console] eco take %player_name% 1400000'
  4434. - '[close]'
  4435. - '[refresh]'
  4436. right_click_commands:
  4437. - '[console] pex user %player_name% add askyblock.team.maxsize.12'
  4438. - '[console] eco take %player_name% 1400000'
  4439. - '[close]'
  4440. - '[refresh]'
  4441. left_click_requirement:
  4442. requirements:
  4443. name:
  4444. type: has money
  4445. amount: 1400000
  4446. deny_commands:
  4447. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4448. this upgrade!'
  4449. - '[close]'
  4450. right_click_requirement:
  4451. requirements:
  4452. name:
  4453. type: has money
  4454. amount: 1400000
  4455. deny_commands:
  4456. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4457. this upgrade!'
  4458. - '[close]'
  4459. '14':
  4460. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2JmYjQxZjg2NmU3ZThlNTkzNjU5OTg2YzlkNmU4OGNkMzc2NzdiM2Y3YmQ0NDI1M2U1ODcxZTY2ZDFkNDI0In19fQ==
  4461. data: 3
  4462. slot: 4
  4463. priority: 4
  4464. display_name: '&d&lTeam Upgrade Full'
  4465. lore:
  4466. - ''
  4467. - '&fYou got all the team'
  4468. - '&fsize upgrades of your island,'
  4469. - '&fcongratulations!'
  4470. - ''
  4471. - '&d&lINFORMATION:'
  4472. - '&5&l* &fCurrent limit: &b&l12'
  4473. - '&5&l* &fRating Bar: &a⬛⬛⬛⬛⬛'
  4474. '20':
  4475. material: 160
  4476. display_name: '&f'
  4477. data: 15
  4478. slots:
  4479. - 0
  4480. - 1
  4481. - 2
  4482. - 3
  4483. - 5
  4484. - 6
  4485. - 7
  4486. - 8
  4487. priority: 1
  4488. uishomes:
  4489. open_command:
  4490. - dsfgwdfgweewdd
  4491. update_interval: 1
  4492. menu_title: '&8» Island Homes Upgrades'
  4493. inventory_type: DROPPER
  4494. size: 27
  4495. items:
  4496. '10':
  4497. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Y3Y2RlZWZjNmQzN2ZlY2FiNjc2YzU4NGJmNjIwODMyYWFhYzg1Mzc1ZTlmY2JmZjI3MzcyNDkyZDY5ZiJ9fX0=
  4498. data: 3
  4499. slot: 4
  4500. view_requirement:
  4501. requirements:
  4502. music:
  4503. type: string equals
  4504. input: '%javascript_homes%'
  4505. output: '&c■■■'
  4506. priority: 1
  4507. display_name: '&d&lHome Upgrade #1'
  4508. lore:
  4509. - ''
  4510. - '&fExpand your island home limit'
  4511. - '&fby purchasing this next'
  4512. - '&fupgrade.'
  4513. - ''
  4514. - '&d&lINFORMATION:'
  4515. - '&5&l* &fNew limit: &b&l2 Homes'
  4516. - '&5&l* &fRating Bar: &a⬛&c⬛⬛'
  4517. - ''
  4518. - '&d&lREQUIREMENTS:'
  4519. - '&5&l* &fBalance: &e$10,000'
  4520. - ''
  4521. - '&5&nClick to upgrade!'
  4522. left_click_commands:
  4523. - '[console] pex user %player_name% add askyblock.island.maxhomes.2'
  4524. - '[console] eco take %player_name% 10000'
  4525. - '[close]'
  4526. - '[refresh]'
  4527. right_click_commands:
  4528. - '[console] pex user %player_name% add askyblock.island.maxhomes.2'
  4529. - '[console] eco take %player_name% 10000'
  4530. - '[close]'
  4531. - '[refresh]'
  4532. left_click_requirement:
  4533. requirements:
  4534. name:
  4535. type: has money
  4536. amount: 10000
  4537. deny_commands:
  4538. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4539. this upgrade!'
  4540. - '[close]'
  4541. right_click_requirement:
  4542. requirements:
  4543. name:
  4544. type: has money
  4545. amount: 10000
  4546. deny_commands:
  4547. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4548. this upgrade!'
  4549. - '[close]'
  4550. '9':
  4551. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDk5MTBjZjYwMGQyMWEwNDA0ZDlkZjRiMGQ2NTllZDQ4NDE4NmFlMDYxNDI3MGY3YTY0MjlmNzA0ZDBiZGJjOSJ9fX0=
  4552. data: 3
  4553. slot: 4
  4554. view_requirement:
  4555. requirements:
  4556. music:
  4557. type: string equals
  4558. input: '%javascript_homes%'
  4559. output: '&a■&c■■'
  4560. priority: 2
  4561. display_name: '&d&lTeam Upgrade #2'
  4562. lore:
  4563. - ''
  4564. - '&fExpand your island home limit'
  4565. - '&fby purchasing this next'
  4566. - '&fupgrade.'
  4567. - ''
  4568. - '&d&lINFORMATION:'
  4569. - '&5&l* &fNew limit: &b&l4 Homes'
  4570. - '&5&l* &fRating Bar: &a⬛⬛&c⬛'
  4571. - ''
  4572. - '&d&lREQUIREMENTS:'
  4573. - '&5&l* &fBalance: &e$20,000'
  4574. - ''
  4575. - '&5&nClick to upgrade!'
  4576. left_click_commands:
  4577. - '[console] pex user %player_name% add askyblock.island.maxhomes.4'
  4578. - '[console] eco take %player_name% 20000'
  4579. - '[close]'
  4580. - '[refresh]'
  4581. right_click_commands:
  4582. - '[console] pex user %player_name% add askyblock.island.maxhomes.4'
  4583. - '[console] eco take %player_name% 20000'
  4584. - '[close]'
  4585. - '[refresh]'
  4586. left_click_requirement:
  4587. requirements:
  4588. name:
  4589. type: has money
  4590. amount: 20000
  4591. deny_commands:
  4592. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4593. this upgrade!'
  4594. - '[close]'
  4595. right_click_requirement:
  4596. requirements:
  4597. name:
  4598. type: has money
  4599. amount: 20000
  4600. deny_commands:
  4601. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4602. this upgrade!'
  4603. - '[close]'
  4604. '11':
  4605. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmRjYmJhNmM3NTFkYWI1ZjJiMzA5YmM1OTQxZThlYTc5ODc3Y2NlNDI1NjkzNmExODk4MTFlZDdlYzM2ZDI1YyJ9fX0=
  4606. data: 3
  4607. slot: 4
  4608. view_requirement:
  4609. requirements:
  4610. music:
  4611. type: string equals
  4612. input: '%javascript_homes%'
  4613. output: '&a■■&c■'
  4614. priority: 3
  4615. display_name: '&d&lTeam Upgrade #3'
  4616. lore:
  4617. - ''
  4618. - '&fExpand your island home limit'
  4619. - '&fby purchasing this next'
  4620. - '&fupgrade.'
  4621. - ''
  4622. - '&d&lINFORMATION:'
  4623. - '&5&l* &fNew limit: &b&l6 Homes'
  4624. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  4625. - ''
  4626. - '&d&lREQUIREMENTS:'
  4627. - '&5&l* &fBalance: &e$30,000'
  4628. - ''
  4629. - '&5&nClick to upgrade!'
  4630. left_click_commands:
  4631. - '[console] pex user %player_name% add askyblock.island.maxhomes.6'
  4632. - '[console] eco take %player_name% 30000'
  4633. - '[close]'
  4634. - '[refresh]'
  4635. right_click_commands:
  4636. - '[console] pex user %player_name% add askyblock.island.maxhomes.6'
  4637. - '[console] eco take %player_name% 30000'
  4638. - '[close]'
  4639. - '[refresh]'
  4640. left_click_requirement:
  4641. requirements:
  4642. name:
  4643. type: has money
  4644. amount: 30000
  4645. deny_commands:
  4646. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4647. this upgrade!'
  4648. - '[close]'
  4649. right_click_requirement:
  4650. requirements:
  4651. name:
  4652. type: has money
  4653. amount: 30000
  4654. deny_commands:
  4655. - '[message] &e&lSKYBLOCK &8┃ &cYou do not have money enough to buy
  4656. this upgrade!'
  4657. - '[close]'
  4658. '14':
  4659. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmRjYmJhNmM3NTFkYWI1ZjJiMzA5YmM1OTQxZThlYTc5ODc3Y2NlNDI1NjkzNmExODk4MTFlZDdlYzM2ZDI1YyJ9fX0=
  4660. data: 3
  4661. slot: 4
  4662. priority: 4
  4663. display_name: '&d&lHomes Upgrade Full'
  4664. lore:
  4665. - ''
  4666. - '&fYou got all the homes'
  4667. - '&flimit upgrades of your island,'
  4668. - '&fcongratulations!'
  4669. - ''
  4670. - '&d&lINFORMATION:'
  4671. - '&5&l* &fCurrent limit: &b&l6 Homes'
  4672. - '&5&l* &fRating Bar: &a⬛⬛⬛'
  4673. '20':
  4674. material: 160
  4675. display_name: '&f'
  4676. data: 15
  4677. slots:
  4678. - 0
  4679. - 1
  4680. - 2
  4681. - 3
  4682. - 5
  4683. - 6
  4684. - 7
  4685. - 8
  4686. priority: 1
  4687. tags:
  4688. open_command:
  4689. - tags
  4690. - tag
  4691. - deluxetags:tags
  4692. update_interval: 1
  4693. menu_title: '&8» Tags'
  4694. size: 36
  4695. items:
  4696. '99':
  4697. material: 421
  4698. slot: 13
  4699. priority: 1
  4700. view_requirement:
  4701. requirements:
  4702. permission:
  4703. type: has permission
  4704. permission: tag.heart
  4705. display_name: '&d&lHeart'
  4706. lore:
  4707. - ''
  4708. - '&fChange your tag to a'
  4709. - '&cheart &fand stands out'
  4710. - '&fabove the others!'
  4711. - ''
  4712. - '&d&lINFORMATION:'
  4713. - '&5&l* &fTag: &c❤'
  4714. - ''
  4715. - '&d&lREQUIREMENTS:'
  4716. - '&5&l* &fAccess to this tag'
  4717. - ''
  4718. - '&5&nClick to select!'
  4719. left_click_commands:
  4720. - '[console] tags set %player_name% heart'
  4721. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4722. the &c❤ &ftag!'
  4723. - '[close]'
  4724. - '[refresh]'
  4725. right_click_commands:
  4726. - '[console] tags set %player_name% heart'
  4727. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4728. the &c❤ &ftag!'
  4729. - '[close]'
  4730. - '[refresh]'
  4731. '9923':
  4732. material: 421
  4733. slot: 13
  4734. priority: 2
  4735. display_name: '&d&lHeart'
  4736. lore:
  4737. - ''
  4738. - '&fChange your tag to a'
  4739. - '&cheart &fand stands out'
  4740. - '&fabove the others!'
  4741. - ''
  4742. - '&d&lINFORMATION:'
  4743. - '&5&l* &fTag: &c❤'
  4744. - ''
  4745. - '&d&lREQUIREMENTS:'
  4746. - '&5&l* &fAccess to this tag'
  4747. - ''
  4748. - '&c&oYou do not have this tag!'
  4749. '919':
  4750. material: 421
  4751. slot: 11
  4752. priority: 1
  4753. view_requirement:
  4754. requirements:
  4755. permission:
  4756. type: has permission
  4757. permission: tag.arrow
  4758. display_name: '&d&lArrow'
  4759. lore:
  4760. - ''
  4761. - '&fChange your tag to a'
  4762. - '&barrow &fand stands out'
  4763. - '&fabove the others!'
  4764. - ''
  4765. - '&d&lINFORMATION:'
  4766. - '&5&l* &fTag: &b➳'
  4767. - ''
  4768. - '&d&lREQUIREMENTS:'
  4769. - '&5&l* &fAccess to this tag'
  4770. - ''
  4771. - '&5&nClick to select!'
  4772. left_click_commands:
  4773. - '[console] tags set %player_name% arrow'
  4774. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4775. the &b➳ &ftag!'
  4776. - '[close]'
  4777. - '[refresh]'
  4778. right_click_commands:
  4779. - '[console] tags set %player_name% heart'
  4780. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4781. the &b➳ &ftag!'
  4782. - '[close]'
  4783. - '[refresh]'
  4784. '91923':
  4785. material: 421
  4786. slot: 11
  4787. priority: 2
  4788. display_name: '&d&lArrow'
  4789. lore:
  4790. - ''
  4791. - '&fChange your tag to a'
  4792. - '&barrow &fand stands out'
  4793. - '&fabove the others!'
  4794. - ''
  4795. - '&d&lINFORMATION:'
  4796. - '&5&l* &fTag: &b➳'
  4797. - ''
  4798. - '&d&lREQUIREMENTS:'
  4799. - '&5&l* &fAccess to this tag'
  4800. - ''
  4801. - '&c&oYou do not have this tag!'
  4802. '929':
  4803. material: 421
  4804. slot: 12
  4805. priority: 1
  4806. view_requirement:
  4807. requirements:
  4808. permission:
  4809. type: has permission
  4810. permission: tag.flower
  4811. display_name: '&d&lFlower'
  4812. lore:
  4813. - ''
  4814. - '&fChange your tag to a'
  4815. - '&dflower &fand stands out'
  4816. - '&fabove the others!'
  4817. - ''
  4818. - '&d&lINFORMATION:'
  4819. - '&5&l* &fTag: &d❀'
  4820. - ''
  4821. - '&d&lREQUIREMENTS:'
  4822. - '&5&l* &fAccess to this tag'
  4823. - ''
  4824. - '&5&nClick to select!'
  4825. left_click_commands:
  4826. - '[console] tags set %player_name% flower'
  4827. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4828. the &d❀ &ftag!'
  4829. - '[close]'
  4830. - '[refresh]'
  4831. right_click_commands:
  4832. - '[console] tags set %player_name% flower'
  4833. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4834. the &d❀ &ftag!'
  4835. - '[close]'
  4836. - '[refresh]'
  4837. '92923':
  4838. material: 421
  4839. slot: 12
  4840. priority: 2
  4841. display_name: '&d&lFlower'
  4842. lore:
  4843. - ''
  4844. - '&fChange your tag to a'
  4845. - '&dflower &fand stands out'
  4846. - '&fabove the others!'
  4847. - ''
  4848. - '&d&lINFORMATION:'
  4849. - '&5&l* &fTag: &d❀'
  4850. - ''
  4851. - '&d&lREQUIREMENTS:'
  4852. - '&5&l* &fAccess to this tag'
  4853. - ''
  4854. - '&c&oYou do not have this tag!'
  4855. '939':
  4856. material: 421
  4857. slot: 14
  4858. priority: 1
  4859. view_requirement:
  4860. requirements:
  4861. permission:
  4862. type: has permission
  4863. permission: tag.peace
  4864. display_name: '&d&lPeace'
  4865. lore:
  4866. - ''
  4867. - '&fChange your tag to a'
  4868. - '&dpeace &fand stands out'
  4869. - '&fabove the others!'
  4870. - ''
  4871. - '&d&lINFORMATION:'
  4872. - '&5&l* &fTag: &d✌'
  4873. - ''
  4874. - '&d&lREQUIREMENTS:'
  4875. - '&5&l* &fAccess to this tag'
  4876. - ''
  4877. - '&5&nClick to select!'
  4878. left_click_commands:
  4879. - '[console] tags set %player_name% peace'
  4880. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4881. the &d✌ &ftag!'
  4882. - '[close]'
  4883. - '[refresh]'
  4884. right_click_commands:
  4885. - '[console] tags set %player_name% peace'
  4886. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4887. the &d✌ &ftag!'
  4888. - '[close]'
  4889. - '[refresh]'
  4890. '93923':
  4891. material: 421
  4892. slot: 14
  4893. priority: 2
  4894. display_name: '&d&lPeace'
  4895. lore:
  4896. - ''
  4897. - '&fChange your tag to a'
  4898. - '&dpeace &fand stands out'
  4899. - '&fabove the others!'
  4900. - ''
  4901. - '&d&lINFORMATION:'
  4902. - '&5&l* &fTag: &d✌'
  4903. - ''
  4904. - '&d&lREQUIREMENTS:'
  4905. - '&5&l* &fAccess to this tag'
  4906. - ''
  4907. - '&c&oYou do not have this tag!'
  4908. '9529':
  4909. material: 421
  4910. slot: 15
  4911. priority: 1
  4912. view_requirement:
  4913. requirements:
  4914. permission:
  4915. type: has permission
  4916. permission: tag.music
  4917. display_name: '&d&lMusic'
  4918. lore:
  4919. - ''
  4920. - '&fChange your tag to a'
  4921. - '&amusic &fand stands out'
  4922. - '&fabove the others!'
  4923. - ''
  4924. - '&d&lINFORMATION:'
  4925. - '&5&l* &fTag: &a♫'
  4926. - ''
  4927. - '&d&lREQUIREMENTS:'
  4928. - '&5&l* &fAccess to this tag'
  4929. - ''
  4930. - '&5&nClick to select!'
  4931. left_click_commands:
  4932. - '[console] tags set %player_name% music'
  4933. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4934. the &a♫ &ftag!'
  4935. - '[close]'
  4936. - '[refresh]'
  4937. right_click_commands:
  4938. - '[console] tags set %player_name% music'
  4939. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4940. the &a♫ &ftag!'
  4941. - '[close]'
  4942. - '[refresh]'
  4943. '959223':
  4944. material: 421
  4945. slot: 15
  4946. priority: 2
  4947. display_name: '&d&lMusic'
  4948. lore:
  4949. - ''
  4950. - '&fChange your tag to a'
  4951. - '&amusic &fand stands out'
  4952. - '&fabove the others!'
  4953. - ''
  4954. - '&d&lINFORMATION:'
  4955. - '&5&l* &fTag: &a♫'
  4956. - ''
  4957. - '&d&lREQUIREMENTS:'
  4958. - '&5&l* &fAccess to this tag'
  4959. - ''
  4960. - '&c&oYou do not have this tag!'
  4961. '19529':
  4962. material: 421
  4963. slot: 21
  4964. priority: 1
  4965. view_requirement:
  4966. requirements:
  4967. permission:
  4968. type: has permission
  4969. permission: tag.scissors
  4970. display_name: '&d&lScissors'
  4971. lore:
  4972. - ''
  4973. - '&fChange your tag to a'
  4974. - '&3scissors &fand stands out'
  4975. - '&fabove the others!'
  4976. - ''
  4977. - '&d&lINFORMATION:'
  4978. - '&5&l* &fTag: &3✂'
  4979. - ''
  4980. - '&d&lREQUIREMENTS:'
  4981. - '&5&l* &fAccess to this tag'
  4982. - ''
  4983. - '&5&nClick to select!'
  4984. left_click_commands:
  4985. - '[console] tags set %player_name% scissors'
  4986. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4987. the &3✂ &ftag!'
  4988. - '[close]'
  4989. - '[refresh]'
  4990. right_click_commands:
  4991. - '[console] tags set %player_name% scissors'
  4992. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  4993. the &3✂ &ftag!'
  4994. - '[close]'
  4995. - '[refresh]'
  4996. '1959223':
  4997. material: 421
  4998. slot: 21
  4999. priority: 2
  5000. display_name: '&d&lScissors'
  5001. lore:
  5002. - ''
  5003. - '&fChange your tag to a'
  5004. - '&3scissors &fand stands out'
  5005. - '&fabove the others!'
  5006. - ''
  5007. - '&d&lINFORMATION:'
  5008. - '&5&l* &fTag: &3✂'
  5009. - ''
  5010. - '&d&lREQUIREMENTS:'
  5011. - '&5&l* &fAccess to this tag'
  5012. - ''
  5013. - '&c&oYou do not have this tag!'
  5014. '192529':
  5015. material: 421
  5016. slot: 22
  5017. priority: 1
  5018. view_requirement:
  5019. requirements:
  5020. permission:
  5021. type: has permission
  5022. permission: tag.toxic
  5023. display_name: '&d&lToxic'
  5024. lore:
  5025. - ''
  5026. - '&fChange your tag to a'
  5027. - '&etoxic &fand stands out'
  5028. - '&fabove the others!'
  5029. - ''
  5030. - '&d&lINFORMATION:'
  5031. - '&5&l* &fTag: &e☢'
  5032. - ''
  5033. - '&d&lREQUIREMENTS:'
  5034. - '&5&l* &fAccess to this tag'
  5035. - ''
  5036. - '&5&nClick to select!'
  5037. left_click_commands:
  5038. - '[console] tags set %player_name% toxic'
  5039. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5040. the &e☢ &ftag!'
  5041. - '[close]'
  5042. - '[refresh]'
  5043. right_click_commands:
  5044. - '[console] tags set %player_name% toxic'
  5045. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5046. the &e☢ &ftag!'
  5047. - '[close]'
  5048. - '[refresh]'
  5049. '19259223':
  5050. material: 421
  5051. slot: 22
  5052. priority: 2
  5053. display_name: '&d&lToxic'
  5054. lore:
  5055. - ''
  5056. - '&fChange your tag to a'
  5057. - '&etoxic &fand stands out'
  5058. - '&fabove the others!'
  5059. - ''
  5060. - '&d&lINFORMATION:'
  5061. - '&5&l* &fTag: &e☢'
  5062. - ''
  5063. - '&d&lREQUIREMENTS:'
  5064. - '&5&l* &fAccess to this tag'
  5065. - ''
  5066. - '&c&oYou do not have this tag!'
  5067. '1925329':
  5068. material: 421
  5069. slot: 23
  5070. priority: 1
  5071. view_requirement:
  5072. requirements:
  5073. permission:
  5074. type: has permission
  5075. permission: tag.snowman
  5076. display_name: '&d&lSnowman'
  5077. lore:
  5078. - ''
  5079. - '&fChange your tag to a'
  5080. - '&bsnowman &fand stands out'
  5081. - '&fabove the others!'
  5082. - ''
  5083. - '&d&lINFORMATION:'
  5084. - '&5&l* &fTag: &b☃'
  5085. - ''
  5086. - '&d&lREQUIREMENTS:'
  5087. - '&5&l* &fAccess to this tag'
  5088. - ''
  5089. - '&5&nClick to select!'
  5090. left_click_commands:
  5091. - '[console] tags set %player_name% snowman'
  5092. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5093. the &b☃ &ftag!'
  5094. - '[close]'
  5095. - '[refresh]'
  5096. right_click_commands:
  5097. - '[console] tags set %player_name% snowman'
  5098. - '[console] titlemanager:tm message %player_name% &7\n&fYou have choosen
  5099. the &b☃ &ftag!'
  5100. - '[close]'
  5101. - '[refresh]'
  5102. '192592323':
  5103. material: 421
  5104. slot: 23
  5105. priority: 2
  5106. display_name: '&d&lSnowman'
  5107. lore:
  5108. - ''
  5109. - '&fChange your tag to a'
  5110. - '&bsnowman &fand stands out'
  5111. - '&fabove the others!'
  5112. - ''
  5113. - '&d&lINFORMATION:'
  5114. - '&5&l* &fTag: &b☃'
  5115. - ''
  5116. - '&d&lREQUIREMENTS:'
  5117. - '&5&l* &fAccess to this tag'
  5118. - ''
  5119. - '&c&oYou do not have rank enough!'
  5120. '1925923223':
  5121. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2VkMWFiYTczZjYzOWY0YmM0MmJkNDgxOTZjNzE1MTk3YmUyNzEyYzNiOTYyYzk3ZWJmOWU5ZWQ4ZWZhMDI1In19fQ==
  5122. data: 3
  5123. slot: 4
  5124. priority: 1
  5125. display_name: '&d&lReset tag'
  5126. lore:
  5127. - ''
  5128. - '&fReset your tag and remove'
  5129. - '&fany tag of your name if you'
  5130. - '&fare bored of tags!'
  5131. - ''
  5132. - '&5&nClick to reset!'
  5133. left_click_commands:
  5134. - '[console] tags clear %player_name%'
  5135. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  5136. tag!'
  5137. - '[close]'
  5138. - '[refresh]'
  5139. right_click_commands:
  5140. - '[console] tags clear %player_name%'
  5141. - '[console] titlemanager:tm message %player_name% &7\n&fYou have reset your
  5142. tag!'
  5143. - '[close]'
  5144. - '[refresh]'
  5145. '20':
  5146. material: 160
  5147. display_name: '&f'
  5148. data: 15
  5149. slots:
  5150. - 0
  5151. - 1
  5152. - 2
  5153. - 3
  5154. - 5
  5155. - 6
  5156. - 7
  5157. - 8
  5158. - 9
  5159. - 10
  5160. - 16
  5161. - 17
  5162. - 18
  5163. - 19
  5164. - 20
  5165. - 24
  5166. - 25
  5167. - 26
  5168. - 27
  5169. - 28
  5170. - 29
  5171. - 30
  5172. - 31
  5173. - 32
  5174. - 33
  5175. - 34
  5176. - 35
  5177. priority: 1
  5178. rankss:
  5179. menu_title: '&8» Store Ranks'
  5180. size: 27
  5181. open_command:
  5182. - rank
  5183. - ranks
  5184. items:
  5185. '1':
  5186. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGI5ZmU1N2FkMWQ4NzgxNjFhODM4MDI4MjkxYzE3ODMxZWQzYTc3YTc0NmZmYzhiZDVkYmI0NzdhN2VhMyJ9fX0=
  5187. slot: 11
  5188. priority: 1
  5189. display_name: '&d&lRank &8» &a&lVIP'
  5190. lore:
  5191. - '&fYou can access to buy'
  5192. - '&fthis available rank'
  5193. - '&fin the server shop'
  5194. - '&5www.server.net&f.'
  5195. - ''
  5196. - '&5&nClick to see the information!'
  5197. left_click_commands:
  5198. - '[openguimenu] infovip'
  5199. - '[close]'
  5200. right_click_commands:
  5201. - '[openguimenu] infovip'
  5202. - '[close]'
  5203. '2':
  5204. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmRlNjQyYzM2YzcxYzM0Y2M4OTM3OTExYzRhNDE0NWE0NTlkYjQ3MjI2MjVkYjVhZmM5MWQ1ZjgzOWZiZjA3ZSJ9fX0=
  5205. slot: 12
  5206. priority: 1
  5207. display_name: '&d&lRank &8» &b&lVIP+'
  5208. lore:
  5209. - '&fYou can access to buy'
  5210. - '&fthis available rank'
  5211. - '&fin the server shop'
  5212. - '&5www.server.net&f.'
  5213. - ''
  5214. - '&5&nClick to see the information!'
  5215. left_click_commands:
  5216. - '[openguimenu] infovip+'
  5217. - '[close]'
  5218. right_click_commands:
  5219. - '[openguimenu] infovip+'
  5220. - '[close]'
  5221. '3':
  5222. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGMzMjQyYzIyYzJkZTIzZWYzNzlmMTI2ZTlmYjE1NGQ2MDU4ODVlNmE3NGFhMjcyNDI5ZWY0OWEzMzFlMzI1YiJ9fX0=
  5223. slot: 13
  5224. priority: 1
  5225. display_name: '&d&lRank &8» &d&lVIP++'
  5226. lore:
  5227. - '&fYou can access to buy'
  5228. - '&fthis available rank'
  5229. - '&fin the server shop'
  5230. - '&5www.server.net&f.'
  5231. - ''
  5232. - '&5&nClick to see the information!'
  5233. left_click_commands:
  5234. - '[openguimenu] infovip++'
  5235. - '[close]'
  5236. right_click_commands:
  5237. - '[openguimenu] infovip++'
  5238. - '[close]'
  5239. '4':
  5240. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzljMWE0NzRhODkxZWYyNDY1YTlmMzc5ZTNjNTNkN2I1MGE5MWNiMDc4ZDliNzVkN2NmMjI5NWFmYjEyYzEifX19
  5241. slot: 14
  5242. priority: 1
  5243. display_name: '&d&lRank &8» &c&lVIP+++'
  5244. lore:
  5245. - '&fYou can access to buy'
  5246. - '&fthis available rank'
  5247. - '&fin the server shop'
  5248. - '&5www.server.net&f.'
  5249. - ''
  5250. - '&5&nClick to see the information!'
  5251. left_click_commands:
  5252. - '[openguimenu] infovip+++'
  5253. - '[close]'
  5254. right_click_commands:
  5255. - '[openguimenu] infovip+++'
  5256. - '[close]'
  5257. '5':
  5258. material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc4MmQ1ZjM1NjY0Nzg5M2UyNzVhOWI5ZDFlOWJlNDc1NmJkZmFhZmI3YmQ5ZmNiZWU2ZTQxMzk0NmVlZDFhIn19fQ==
  5259. slot: 15
  5260. priority: 1
  5261. display_name: '&d&lRank &8» &e&lVIP++++'
  5262. lore:
  5263. - '&fYou can access to buy'
  5264. - '&fthis available rank'
  5265. - '&fin the server shop'
  5266. - '&5www.server.net&f.'
  5267. - ''
  5268. - '&5&nClick to see the information!'
  5269. left_click_commands:
  5270. - '[openguimenu] infovip++++'
  5271. - '[close]'
  5272. right_click_commands:
  5273. - '[openguimenu] infovip++++'
  5274. - '[close]'
  5275. '10':
  5276. material: 160
  5277. display_name: '&f'
  5278. data: 15
  5279. slots:
  5280. - 0
  5281. - 1
  5282. - 2
  5283. - 3
  5284. - 4
  5285. - 5
  5286. - 6
  5287. - 7
  5288. - 8
  5289. - 9
  5290. - 10
  5291. - 16
  5292. - 17
  5293. - 18
  5294. - 19
  5295. - 20
  5296. - 21
  5297. - 22
  5298. - 23
  5299. - 24
  5300. - 25
  5301. - 26
  5302. infovip:
  5303. menu_title: '&8» Rank Information'
  5304. size: 9
  5305. open_command:
  5306. - infovip
  5307. items:
  5308. '1':
  5309. material: PAPER
  5310. slot: 2
  5311. priority: 1
  5312. display_name: '&d&lPerks'
  5313. lore:
  5314. - '&fCheck the &a&lVIP&f''s list'
  5315. - '&fof perks that you will be'
  5316. - '&fable to have with this rank.'
  5317. - ''
  5318. - '&5&nLeft-click to preview!'
  5319. left_click_commands:
  5320. - '[console] ib open infovip %player_name%'
  5321. - '[refresh]'
  5322. '2':
  5323. material: BOOK
  5324. slot: 6
  5325. priority: 1
  5326. display_name: '&d&lKit Preview'
  5327. lore:
  5328. - ''
  5329. - '&f&lCONTAIN:'
  5330. - '&5&l* &dArmor;'
  5331. - ' &8» &7Protection I'
  5332. - ''
  5333. - '&5&l* &dWeapon;'
  5334. - ' &8» &7Sharpness II'
  5335. - ' &8» &7Unbreaking I'
  5336. - ' &8» &7Fire Aspect I'
  5337. - ''
  5338. - '&5&l* &dTools;'
  5339. - ' &8» &7Efficiency II'
  5340. - ' &8» &7Unbreaking II'
  5341. - ''
  5342. - '&5&l* &dItems;'
  5343. - ' &8» &7x1 Common Star'
  5344. - ' &8» &7x32 Grass'
  5345. - ' &8» &7x32 Cobblestone'
  5346. - ' &8» &7x1 Sell-wand (10 uses)'
  5347. left_click_commands:
  5348. - '[player] previewkit vip'
  5349. - '[close]'
  5350. '10':
  5351. material: 160
  5352. display_name: '&f'
  5353. data: 15
  5354. slots:
  5355. - 0
  5356. - 1
  5357. - 3
  5358. - 4
  5359. - 5
  5360. - 7
  5361. - 8
  5362. infovip+:
  5363. menu_title: '&8» Rank Information'
  5364. size: 9
  5365. open_command:
  5366. - infovip+
  5367. items:
  5368. '1':
  5369. material: PAPER
  5370. slot: 2
  5371. priority: 1
  5372. display_name: '&d&lPerks'
  5373. lore:
  5374. - '&fCheck the &b&lVIP+&f''s list'
  5375. - '&fof perks that you will be'
  5376. - '&fable to have with this rank.'
  5377. - ''
  5378. - '&5&nLeft-click to preview!'
  5379. left_click_commands:
  5380. - '[console] ib open infovip+ %player_name%'
  5381. - '[refresh]'
  5382. '2':
  5383. material: BOOK
  5384. slot: 6
  5385. priority: 1
  5386. display_name: '&d&lKit Preview'
  5387. lore:
  5388. - ''
  5389. - '&f&lCONTAIN:'
  5390. - '&5&l* &dArmor;'
  5391. - ' &8» &7Protection II'
  5392. - ' &8» &7Unbreaking I'
  5393. - ''
  5394. - '&5&l* &dWeapon;'
  5395. - ' &8» &7Sharpness III'
  5396. - ' &8» &7Unbreaking II'
  5397. - ' &8» &7Fire Aspect II'
  5398. - ' &8» &7Looting I'
  5399. - ''
  5400. - '&5&l* &dTools;'
  5401. - ' &8» &7Efficiency III'
  5402. - ' &8» &7Unbreaking II'
  5403. - ''
  5404. - '&5&l* &dItems;'
  5405. - ' &8» &7x1 Rare Star'
  5406. - ' &8» &7x64 Grass'
  5407. - ' &8» &7x64 Cobblestone'
  5408. - ' &8» &7x1 Sell-wand (20 uses)'
  5409. left_click_commands:
  5410. - '[player] previewkit vip+'
  5411. - '[close]'
  5412. '10':
  5413. material: 160
  5414. display_name: '&f'
  5415. data: 15
  5416. slots:
  5417. - 0
  5418. - 1
  5419. - 3
  5420. - 4
  5421. - 5
  5422. - 7
  5423. - 8
  5424. - 9
  5425. infovip++:
  5426. menu_title: '&8» Rank Information'
  5427. size: 9
  5428. open_command:
  5429. - infovip++
  5430. items:
  5431. '1':
  5432. material: PAPER
  5433. slot: 2
  5434. priority: 1
  5435. display_name: '&d&lPerks'
  5436. lore:
  5437. - '&fCheck the &d&lVIP++&f''s list'
  5438. - '&fof perks that you will be'
  5439. - '&fable to have with this rank.'
  5440. - ''
  5441. - '&5&nLeft-click to preview!'
  5442. left_click_commands:
  5443. - '[console] ib open infovip++ %player_name%'
  5444. - '[refresh]'
  5445. '2':
  5446. material: BOOK
  5447. slot: 6
  5448. priority: 1
  5449. display_name: '&d&lKit Preview'
  5450. lore:
  5451. - ''
  5452. - '&f&lCONTAIN:'
  5453. - '&5&l* &dArmor;'
  5454. - ' &8» &7Protection III'
  5455. - ' &8» &7Unbreaking III'
  5456. - ''
  5457. - '&5&l* &dWeapon;'
  5458. - ' &8» &7Sharpness IV'
  5459. - ' &8» &7Unbreaking III'
  5460. - ' &8» &7Fire Aspect II'
  5461. - ' &8» &7Looting II'
  5462. - ''
  5463. - '&5&l* &dTools;'
  5464. - ' &8» &7Efficiency IV'
  5465. - ' &8» &7Unbreaking II'
  5466. - ''
  5467. - '&5&l* &dItems;'
  5468. - ' &8» &7x2 Rare Star'
  5469. - ' &8» &7x96 Grass'
  5470. - ' &8» &7x96 Cobblestone'
  5471. - ' &8» &7x8 Diamond Block'
  5472. - ' &8» &7x8 Emerald Block'
  5473. - ' &8» &7x1 Sell-wand (30 uses)'
  5474. left_click_commands:
  5475. - '[player] previewkit vip++'
  5476. - '[close]'
  5477. '10':
  5478. material: 160
  5479. display_name: '&f'
  5480. data: 15
  5481. slots:
  5482. - 0
  5483. - 1
  5484. - 3
  5485. - 4
  5486. - 5
  5487. - 7
  5488. - 8
  5489. - 9
  5490. infovip+++:
  5491. menu_title: '&8» Rank Information'
  5492. size: 9
  5493. open_command:
  5494. - infovip+++
  5495. items:
  5496. '1':
  5497. material: PAPER
  5498. slot: 2
  5499. priority: 1
  5500. display_name: '&d&lPerks'
  5501. lore:
  5502. - '&fCheck the &c&lVIP+++&f''s list'
  5503. - '&fof perks that you will be'
  5504. - '&fable to have with this rank.'
  5505. - ''
  5506. - '&5&nLeft-click to preview!'
  5507. left_click_commands:
  5508. - '[console] ib open infovip+++ %player_name%'
  5509. - '[refresh]'
  5510. '2':
  5511. material: BOOK
  5512. slot: 6
  5513. priority: 1
  5514. display_name: '&d&lKit Preview'
  5515. lore:
  5516. - ''
  5517. - '&f&lCONTAIN:'
  5518. - '&5&l* &dArmor;'
  5519. - ' &8» &7Protection IV'
  5520. - ' &8» &7Unbreaking IV'
  5521. - ''
  5522. - '&5&l* &dWeapon;'
  5523. - ' &8» &7Sharpness V'
  5524. - ' &8» &7Unbreaking III'
  5525. - ' &8» &7Fire Aspect II'
  5526. - ' &8» &7Looting III'
  5527. - ' &8» &7Knockback I'
  5528. - ''
  5529. - '&5&l* &dTools;'
  5530. - ' &8» &7Efficiency V'
  5531. - ' &8» &7Unbreaking IV'
  5532. - ' &8» &7Fortune I'
  5533. - ''
  5534. - '&5&l* &dItems;'
  5535. - ' &8» &7x1 Legendary Star'
  5536. - ' &8» &7x128 Grass'
  5537. - ' &8» &7x128 Cobblestone'
  5538. - ' &8» &7x16 Diamond Block'
  5539. - ' &8» &7x16 Emerald Block'
  5540. - ' &8» &7x1 Sell-wand (40 uses)'
  5541. left_click_commands:
  5542. - '[player] previewkit vip+++'
  5543. - '[close]'
  5544. '10':
  5545. material: 160
  5546. display_name: '&f'
  5547. data: 15
  5548. slots:
  5549. - 0
  5550. - 1
  5551. - 3
  5552. - 4
  5553. - 5
  5554. - 7
  5555. - 8
  5556. - 9
  5557. infovip++++:
  5558. menu_title: '&8» Rank Information'
  5559. size: 9
  5560. open_command:
  5561. - infovip++++
  5562. items:
  5563. '1':
  5564. material: PAPER
  5565. slot: 2
  5566. priority: 1
  5567. display_name: '&d&lPerks'
  5568. lore:
  5569. - '&fCheck the &e&lVIP++++&f''s list'
  5570. - '&fof perks that you will be'
  5571. - '&fable to have with this rank.'
  5572. - ''
  5573. - '&5&nLeft-click to preview!'
  5574. left_click_commands:
  5575. - '[console] ib open infovip++++ %player_name%'
  5576. - '[refresh]'
  5577. '2':
  5578. material: BOOK
  5579. slot: 6
  5580. priority: 1
  5581. display_name: '&d&lKit Preview'
  5582. lore:
  5583. - ''
  5584. - '&f&lCONTAIN:'
  5585. - '&5&l* &dArmor;'
  5586. - ' &8» &7Protection V'
  5587. - ' &8» &7Unbreaking IV'
  5588. - ''
  5589. - '&5&l* &dWeapon;'
  5590. - ' &8» &7Sharpness V'
  5591. - ' &8» &7Unbreaking III'
  5592. - ' &8» &7Fire Aspect II'
  5593. - ' &8» &7Looting III'
  5594. - ' &8» &7Knockback II'
  5595. - ''
  5596. - '&5&l* &dTools;'
  5597. - ' &8» &7Efficiency VI'
  5598. - ' &8» &7Unbreaking IV'
  5599. - ' &8» &7Fortune II'
  5600. - ''
  5601. - '&5&l* &dItems;'
  5602. - ' &8» &7x2 Legendary Star'
  5603. - ' &8» &7x190 Grass'
  5604. - ' &8» &7x190 Cobblestone'
  5605. - ' &8» &7x32 Diamond Block'
  5606. - ' &8» &7x32 Emerald Block'
  5607. - ' &8» &7x1 Sell-wand (50 uses)'
  5608. left_click_commands:
  5609. - '[player] previewkit vip++++'
  5610. - '[close]'
  5611. '10':
  5612. material: 160
  5613. display_name: '&f'
  5614. data: 15
  5615. slots:
  5616. - 0
  5617. - 1
  5618. - 3
  5619. - 4
  5620. - 5
  5621. - 7
  5622. - 8
  5623. - 9
Add Comment
Please, Sign In to add comment