Guest User

Untitled

a guest
Jul 22nd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 87.96 KB | None | 0 0
  1. # DeluxeMenus 1.9.0 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. # expression: 'BukkitPlayer.hasPermission("some.permission");'
  45. # deny_commands:
  46. # - '[message] &cYou dont have permission to view that menu!'
  47. # size: <size of this menu, increments of 9, max size is 54>
  48. # update_interval: <time in seconds this gui should update for a player if an item is set to uodate placeholders>
  49. # items:
  50. # <item identifier>:
  51. # material: <name or id, for player heads use the format 'head;<players name/%player_name%>'>
  52. # data: <integer, used for data values for wool etc>
  53. # amount: <amount of this item to show>
  54. # slot: <slot number to put this item, slots start at 0 and end at 53 for a size 54 inventory>
  55. # priority: <this is used if you have multiple items set for the same slot>
  56. # view_requirement: <the lowest priority item a player meets this requirement for ex: 1, will be shown>
  57. # update: <true/false if this item should update placeholders on the interval set for the gui menu this item is in>
  58. # hide_attributes: <true/false if this item should display item attributes>
  59. # hide_enchantments: <true/false if this item should display item enchantment / level> (useful for 'enchantment glow' items)
  60. # hide_effects: <true/false if this item should display item effect attributes>
  61. # hide_unbreakable: <true/false if this item should display item unbreakable attributes>
  62. # banner_meta: (this is used if you want to display a custom banner with specific patterns)
  63. # - <dyecolor>;<PatternType> (more information on where to find DyeColor and PatternType names below)
  64. # - 'RED;BASE'
  65. # - 'WHITE;CREEPER'
  66. # display_name: <display name to show for this item>
  67. # lore:
  68. # - 'placeholders can be used in the name and lore'
  69. # - '%<any placeholder from Papi>% shows the viewer values'
  70. # enchantments: valid enchantment names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  71. # - '<ENCHANTMENT>;<LEVEL>'
  72. # - 'SILK_TOUCH;1'
  73. # left_click_commands:
  74. # - '[close]'
  75. # right_click_commands:
  76. # - '[player] spawn'
  77. #
  78. #
  79. # You can specify if a GUI menu should be loaded from another file:
  80. #
  81. # gui_menus:
  82. # <menuName>:
  83. # file: 'menuName.yml'
  84. #
  85. # This allows you to keep your config clean and not have tons of GUI menus cluttering it.
  86. # The file format the GUI menu is loaded from must end in .yml
  87. # GUI menus loaded from other configuration files must follow a specific format as well...
  88. # 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.
  89. # After that is done, use /dm reload and DeluxeMenus will create a folder and file specific to the GUI menu you specified.
  90. # If the file specified is created by DeluxeMenus (because it did not exist), a default GUI menu layout will be saved to that file.
  91. # From here you can edit it to your liking and use /dm reload to update your GUI menu!
  92. #
  93. # This loading from external config files is only available for gui menus and will not work for click menus yet....
  94. #
  95. # banner_meta must be listed with a specific format:
  96. # banner_meta:
  97. # - <DyeColor>;<PatternType>
  98. #
  99. # Valid DyeColor names can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/DyeColor.html
  100. # Valid PatternTypes can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/banner/PatternType.html
  101. # ==============================================================
  102. #
  103. # Click requirement information
  104. #
  105. # You can add 'click requirements' to left and right click commands'
  106. # These are defined per item and must follow a specific format:
  107. #
  108. # 'item_one':
  109. # material: DIAMOND
  110. # slot: 3
  111. # left_click_commands:
  112. # - '[close]'
  113. # - '[message] You were charged 100 dollars for clicking that item!'
  114. # - '[console] eco take %player% 100'
  115. # left_click_requirement:
  116. # expression: '%vaulteco_balance% > 100'
  117. # deny_commands:
  118. # - '[close]'
  119. # - '[message] &cYou dont have 100 dollars to click that item'
  120. # right_click_commands:
  121. # - '[close]'
  122. # - '[message] You had permission to click that item!'
  123. # right_click_requirement:
  124. # expression: 'BukkitPlayer.hasPermission("some.permission.toclick")'
  125. # deny_commands:
  126. # - '[close]'
  127. # - '[message] &cYou dont have permission to click that item'
  128. #
  129. # Every left/right_click_requirement MUST have an expression specified that would return a boolean (true/false)
  130. # These expressions must also follow JavaScript format as they are all javascript based!
  131. #
  132. # deny_commands: are optional and will be executed if the expression returns false.
  133. # You may use placeholders in your Javascript expressions to evaluate if the player meets the requirement or not.
  134. # You may also use a few keywords which give you access to the Player class and Bukkit.Server class if you understand the Bukkit API
  135. #
  136. # BukkitPlayer - references the Player object your expression is evaluating.
  137. # BukkitServer - references Bukkit.getServer() in the Bukkit API.
  138. #
  139. # The choice to use this system to evaluate if a player meets requirements to click an item was an easy choice.
  140. # This way I do not have to hook into every plugin to check if a player meets the requirement to click an item successfully.
  141. # You can simply use placeholders, or the keywords provided to give you access to the Player and Server objects.
  142. # If you want to check if a player has enough money, simply use an expression like so:
  143. #
  144. # expression: '%vaulteco_balance% >= 100' (checks if players balance is greater than or equal to 100)
  145. # If you want to charge the player, simply run the economy command to take the amount from the players balance in your click_commands
  146. # which will be executed if the player meets the requirement!
  147. # ==============================================================
  148. #
  149. # View requirement information
  150. #
  151. # You can add a 'view requirement' to an item if it has a priority value set for it
  152. # The view requirement has replaced the 'permission' entry for items
  153. # This allows you to specify a specific requirement in javascript for the item to be shown
  154. # In order to use view requirements, the item must have a priority value and a valid javascript expression
  155. # that returns true or false.
  156. #
  157. # 'item_one':
  158. # material: DIAMOND
  159. # slot: 3
  160. # priority: 1
  161. # view_requirement: '%vaulteco_balance% > 100'
  162. # 'item_two':
  163. # material: IRON_INGOT
  164. # slot: 3
  165. # priority: 2
  166. # view_requirement: 'BukkitPlayer.hasPermission("some.permission")'
  167. # 'item_three':
  168. # material: STONE
  169. # slot: 3
  170. # priority: 3
  171. #
  172. # In the example above, the priority 1 item view requirement will be checked first, if a player has over 100 dollars, that item will be shown.
  173. # If the player does not meet the requirement for the first item, the item with priority 2 will be checked. If the player does not have the permission
  174. # node some.permission, the final item 'item_three' will be set to slot 3 as the player did not meet the requirement for the first 2 items with
  175. # a higher priority.
  176. #
  177. # You may use placeholders in your Javascript expressions to evaluate if the player meets the requirement or not.
  178. # You may also use a few keywords which give you access to the Player class and Bukkit.Server class if you understand the Bukkit API
  179. #
  180. # BukkitPlayer - references the Player object your expression is evaluating.
  181. # BukkitServer - references Bukkit.getServer() in the Bukkit API.
  182. #
  183. # The choice to use this system to evaluate if a player meets requirements to click an item was an easy choice.
  184. # This way I do not have to hook into every plugin to check if a player meets the requirement to click an item successfully.
  185. # You can simply use placeholders, or the keywords provided to give you access to the Player and Server objects.
  186. # If you want to check if a player has enough money, simply use an expression like so:
  187. #
  188. # view_requirement: '%vaulteco_balance% >= 100' (checks if players balance is greater than or equal to 100)
  189. # ==============================================================
  190. #
  191. #
  192. # You do not need to specify item options that you don't use!
  193. # The only required entries for a gui menu item to be valid are:
  194. #
  195. # A valid material
  196. # A valid slot
  197. #
  198. # Every item in the items list must have a unique <item identifier>
  199. #
  200. # If you choose to update placeholders for a specific item, you must specify update_interval: <time>
  201. # in the GUI menu options for the specific GUI menu.
  202. # Only GUI menus with at least one item that has update: true will update those specific items placeholders.
  203. #
  204. # Every click_command must start with a specific identifier to know what to do for the execution.
  205. # Valid click_command identifiers:
  206. #
  207. # [console] - Execute a command from the console
  208. # Usage: - '[console] <command with no slash>'
  209. #
  210. # [player] - Execute a command for the menu viewer
  211. # Usage: - '[player] <command with no slash>'
  212. #
  213. # [commandevent] - Fire a PlayerCommandPreprocessEvent for commands that do not use the bukkit command system
  214. # Usage: - '[commandevent] <command with no slash>'
  215. #
  216. # [message] - Send a message to the menu viewer
  217. # Usage: - [message] <message to send to the player
  218. #
  219. # [openguimenu] - Open a GUI menu (can only be used in GUI menu click_commands)
  220. # Usage: - '[openguimenu] <guiMenuName>'
  221. #
  222. # [connect] - Connect to the specified bungee server
  223. # Usage: - '[connect] <serverName>'
  224. #
  225. # [close] - Close the viewers open menu
  226. # Usage: - '[close]
  227. #
  228. # [json] - Send a json message to the menu viewer
  229. # Usage: - '[json] {"text":"message"}'
  230. #
  231. #
  232. #
  233. # You can delay any of the click command being performed by ending the command with
  234. # <delay=(time in TICKS)>
  235. # example:
  236. # - '[close]'
  237. # - '[message] it has been 5 seconds since the menu closed!<delay=100>'
  238. # - '[message] it has been 10 seconds since the menu closed!<delay=200>'
  239. #
  240. # A delay should NOT be added to the [close] or [openguimenu] actions
  241. # as it could potentially cause unknown issues or glitches with menus.
  242. #
  243. # A NOTE WHEN EDITING THIS OR ANY DeluxeMenus CONFIGURATION FILE:
  244. # This config is sensitive to yaml formatting errors
  245. # KEEP A BACKUP WHEN EDITING YOUR FILE BEFORE UPLOADING TO YOUR SERVER!!!
  246. # Make sure every String you modify or add is enclosed in 'apostrophes
  247. check_updates: true
  248. gui_menus:
  249. upgrades:
  250. menu_title: Island Upgrades
  251. size: 57
  252. open_command:
  253. - upgrades
  254. - upgrade
  255. items:
  256. '1':
  257. material: IRON_ORE
  258. data: 0
  259. slot: 12
  260. priority: 1
  261. display_name: '&6&nSize Upgrade&6 &7(#1)'
  262. lore:
  263. - '&7This allows you to expand the'
  264. - '&7maximum size limit of your island'
  265. - ''
  266. - '&eNew size: &f&n150x150'
  267. - '&eUpgrade cost: &f&n$300,000'
  268. - ''
  269. - '&e&lSTATUS &aUnlocked'
  270. - ''
  271. - '&7&o(Click to upgrade Island)'
  272. view_requirement: BukkitPlayer.hasPermission("askyblock.island.range.150");
  273. left_click_commands:
  274. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  275. next upgrade'
  276. - '[close]'
  277. right_click_commands:
  278. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  279. next upgrade'
  280. - '[close]'
  281. '2':
  282. material: IRON_ORE
  283. data: 0
  284. priority: 2
  285. slot: 12
  286. display_name: '&6&nSize Upgrade&6 &7(#1)'
  287. lore:
  288. - '&7This allows you to expand the'
  289. - '&7maximum size limit of your island'
  290. - ''
  291. - '&eNew size: &f&n150x150'
  292. - '&eUpgrade cost: &f&n$300,000'
  293. - ''
  294. - '&e&lSTATUS &cLocked'
  295. - ''
  296. - '&7&o(Click to upgrade Island)'
  297. left_click_commands:
  298. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Size Upgrade'
  299. - '[console] eco take %player_name% 300000'
  300. - '[console] lp user %player_name% set askyblock.island.range.150 true'
  301. - '[console] ekick %player_name% &fPlease relog while your Island is being
  302. &e&lUPDATED'
  303. - '[close]'
  304. right_click_commands:
  305. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Size Upgrade'
  306. - '[console] eco take %player_name% 300000'
  307. - '[console] lp user %player_name% set askyblock.island.range.150 true'
  308. - '[console] ekick %player_name% &fPlease relog while your Island is being
  309. &e&lUPDATED'
  310. - '[close]'
  311. left_click_requirement:
  312. expression: '%vault_eco_balance% >= 300000'
  313. deny_commands:
  314. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  315. or previous upgrade'
  316. - '[close]'
  317. right_click_requirement:
  318. expression: '%vault_eco_balance% >= 300000'
  319. deny_commands:
  320. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  321. or previous upgrade'
  322. - '[close]'
  323. '3':
  324. material: GOLD_ORE
  325. data: 0
  326. slot: 13
  327. priority: 1
  328. display_name: '&6&nSize Upgrade&6 &7(#2)'
  329. lore:
  330. - '&7This allows you to expand the'
  331. - '&7maximum size limit of your island'
  332. - ''
  333. - '&eNew size: &f&n250x250'
  334. - '&eUpgrade cost: &f&n$1,000,000'
  335. - ''
  336. - '&e&lSTATUS &aUnlocked'
  337. - ''
  338. - '&7&o(Click to upgrade Island)'
  339. view_requirement: BukkitPlayer.hasPermission("askyblock.island.range.250");
  340. left_click_commands:
  341. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  342. next upgrade'
  343. - '[close]'
  344. right_click_commands:
  345. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  346. next upgrade'
  347. - '[close]'
  348. '4':
  349. material: GOLD_ORE
  350. data: 0
  351. priority: 2
  352. slot: 13
  353. display_name: '&6&nSize Upgrade&6 &7(#2)'
  354. lore:
  355. - '&7This allows you to expand the'
  356. - '&7maximum size limit of your island'
  357. - ''
  358. - '&eNew size: &f&n250x250'
  359. - '&eUpgrade cost: &f&n$1,000,000'
  360. - ''
  361. - '&e&lSTATUS &cLocked'
  362. - ''
  363. - '&7&o(Click to upgrade Island)'
  364. left_click_commands:
  365. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Size Upgrade'
  366. - '[console] eco take %player_name% 1000000'
  367. - '[console] lp user %player_name% set askyblock.island.range.250 true'
  368. - '[console] ekick %player_name% &fPlease relog while your Island is being
  369. &e&lUPDATED'
  370. - '[close]'
  371. right_click_commands:
  372. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Size Upgrade'
  373. - '[console] eco take %player_name% 1000000'
  374. - '[console] lp user %player_name% set askyblock.island.range.250 true'
  375. - '[console] ekick %player_name% &fPlease relog while your Island is being
  376. &e&lUPDATED'
  377. - '[close]'
  378. left_click_requirement:
  379. expression: '%vault_eco_balance% >= 1000000 && BukkitPlayer.hasPermission("askyblock.island.range.250")'
  380. deny_commands:
  381. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  382. or previous upgrade'
  383. - '[close]'
  384. right_click_requirement:
  385. expression: '%vault_eco_balance% >= 1000000 && BukkitPlayer.hasPermission("askyblock.island.range.250")'
  386. deny_commands:
  387. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  388. or previous upgrade'
  389. - '[close]'
  390. '5':
  391. material: DIAMOND_ORE
  392. data: 0
  393. slot: 14
  394. priority: 1
  395. display_name: '&6&nSize Upgrade&6 &7(#3)'
  396. lore:
  397. - '&7This allows you to expand the'
  398. - '&7maximum size limit of your island'
  399. - ''
  400. - '&eNew size: &f&n400x400'
  401. - '&eUpgrade cost: &f&n$3,000,000'
  402. - ''
  403. - '&e&lSTATUS &aUnlocked'
  404. - ''
  405. - '&7&o(Click to upgrade Island)'
  406. view_requirement: BukkitPlayer.hasPermission("askyblock.island.range.400");
  407. left_click_commands:
  408. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  409. next upgrade'
  410. - '[close]'
  411. right_click_commands:
  412. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  413. next upgrade'
  414. - '[close]'
  415. '6':
  416. material: DIAMOND_ORE
  417. data: 0
  418. priority: 2
  419. slot: 14
  420. display_name: '&6&nSize Upgrade&6 &7(#3)'
  421. lore:
  422. - '&7This allows you to expand the'
  423. - '&7maximum size limit of your island'
  424. - ''
  425. - '&eNew size: &f&n400x400'
  426. - '&eUpgrade cost: &f&n$3,000,000'
  427. - ''
  428. - '&e&lSTATUS &cLocked'
  429. - ''
  430. - '&7&o(Click to upgrade Island)'
  431. left_click_commands:
  432. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Size Upgrade'
  433. - '[console] eco take %player_name% 3000000'
  434. - '[console] lp user %player_name% set askyblock.island.range.400 true'
  435. - '[console] ekick %player_name% &fPlease relog while your Island is being
  436. &e&lUPDATED'
  437. - '[close]'
  438. right_click_commands:
  439. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Size Upgrade'
  440. - '[console] eco take %player_name% 3000000'
  441. - '[console] lp user %player_name% set askyblock.island.range.400 true'
  442. - '[console] ekick %player_name% &fPlease relog while your Island is being
  443. &e&lUPDATED'
  444. - '[close]'
  445. left_click_requirement:
  446. expression: '%vault_eco_balance% >= 3000000 && BukkitPlayer.hasPermission("askyblock.island.range.400")'
  447. deny_commands:
  448. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  449. or previous upgrade'
  450. - '[close]'
  451. right_click_requirement:
  452. expression: '%vault_eco_balance% >= 3000000 && BukkitPlayer.hasPermission("askyblock.island.range.400")'
  453. deny_commands:
  454. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  455. or previous upgrade'
  456. - '[close]'
  457. '7':
  458. material: BUCKET
  459. data: 0
  460. slot: 20
  461. priority: 1
  462. display_name: '&6&nTeam Upgrade&6 &7(#1)'
  463. lore:
  464. - '&7This allows you to expand the'
  465. - '&7maximum size limit of your team'
  466. - ''
  467. - '&eNew size: &f&n6 Members'
  468. - '&eUpgrade cost: &f&n$200,000'
  469. - ''
  470. - '&e&lSTATUS &aUnlocked'
  471. - ''
  472. - '&7&o(Click to upgrade Island)'
  473. view_requirement: BukkitPlayer.hasPermission("askyblock.team.maxsize.6");
  474. left_click_commands:
  475. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  476. next upgrade'
  477. - '[close]'
  478. right_click_commands:
  479. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  480. next upgrade'
  481. - '[close]'
  482. '8':
  483. material: BUCKET
  484. data: 0
  485. priority: 2
  486. slot: 20
  487. display_name: '&6&nTeam Upgrade&6 &7(#1)'
  488. lore:
  489. - '&7This allows you to expand the'
  490. - '&7maximum size limit of your team'
  491. - ''
  492. - '&eNew size: &f&n6 Members'
  493. - '&eUpgrade cost: &f&n$200,000'
  494. - ''
  495. - '&e&lSTATUS &cLocked'
  496. - ''
  497. - '&7&o(Click to upgrade Island)'
  498. left_click_commands:
  499. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Team Upgrade'
  500. - '[console] eco take %player_name% 200000'
  501. - '[console] lp user %player_name% set askyblock.team.maxsize.6 true'
  502. - '[console] ekick %player_name% &fPlease relog while your Island is being
  503. &e&lUPDATED'
  504. - '[close]'
  505. right_click_commands:
  506. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Team Upgrade'
  507. - '[console] eco take %player_name% 200000'
  508. - '[console] lp user %player_name% set askyblock.team.maxsize.6 true'
  509. - '[console] ekick %player_name% &fPlease relog while your Island is being
  510. &e&lUPDATED'
  511. - '[close]'
  512. left_click_requirement:
  513. expression: '%vault_eco_balance% >= 200000'
  514. deny_commands:
  515. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  516. or previous upgrade'
  517. - '[close]'
  518. right_click_requirement:
  519. expression: '%vault_eco_balance% >= 200000'
  520. deny_commands:
  521. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  522. or previous upgrade'
  523. - '[close]'
  524. '9':
  525. material: WATER_BUCKET
  526. data: 0
  527. slot: 21
  528. priority: 1
  529. display_name: '&6&nTeam Upgrade&6 &7(#2)'
  530. lore:
  531. - '&7This allows you to expand the'
  532. - '&7maximum size limit of your team'
  533. - ''
  534. - '&eNew size: &f&n8 Members'
  535. - '&eUpgrade cost: &f&n$1,000,000'
  536. - ''
  537. - '&e&lSTATUS &aUnlocked'
  538. - ''
  539. - '&7&o(Click to upgrade Island)'
  540. view_requirement: BukkitPlayer.hasPermission("askyblock.team.maxsize.8");
  541. left_click_commands:
  542. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  543. next upgrade'
  544. - '[close]'
  545. right_click_commands:
  546. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  547. next upgrade'
  548. - '[close]'
  549. '10':
  550. material: WATER_BUCKET
  551. data: 0
  552. priority: 2
  553. slot: 21
  554. display_name: '&6&nTeam Upgrade&6 &7(#2)'
  555. lore:
  556. - '&7This allows you to expand the'
  557. - '&7maximum size limit of your team'
  558. - ''
  559. - '&eNew size: &f&n8 Members'
  560. - '&eUpgrade cost: &f&n$1,000,000'
  561. - ''
  562. - '&e&lSTATUS &cLocked'
  563. - ''
  564. - '&7&o(Click to upgrade Island)'
  565. left_click_commands:
  566. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Team Upgrade'
  567. - '[console] eco take %player_name% 1000000'
  568. - '[console] lp user %player_name% set askyblock.team.maxsize.8 true'
  569. - '[console] ekick %player_name% &fPlease relog while your Island is being
  570. &e&lUPDATED'
  571. - '[close]'
  572. right_click_commands:
  573. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Team Upgrade'
  574. - '[console] eco take %player_name% 1000000'
  575. - '[console] lp user %player_name% set askyblock.team.maxsize.8 true'
  576. - '[console] ekick %player_name% &fPlease relog while your Island is being
  577. &e&lUPDATED'
  578. - '[close]'
  579. left_click_requirement:
  580. expression: '%vault_eco_balance% >= 1000000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.6")'
  581. deny_commands:
  582. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  583. or previous upgrade'
  584. - '[close]'
  585. right_click_requirement:
  586. expression: '%vault_eco_balance% >= 1000000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.6")'
  587. deny_commands:
  588. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  589. or previous upgrade'
  590. '11':
  591. material: LAVA_BUCKET
  592. data: 0
  593. slot: 22
  594. priority: 1
  595. display_name: '&6&nTeam Upgrade&6 &7(#3)'
  596. lore:
  597. - '&7This allows you to expand the'
  598. - '&7maximum size limit of your team'
  599. - ''
  600. - '&eNew size: &f&n12 Members'
  601. - '&eUpgrade cost: &f&n$1,500,000'
  602. - ''
  603. - '&e&lSTATUS &aUnlocked'
  604. - ''
  605. - '&7&o(Click to upgrade Island)'
  606. view_requirement: BukkitPlayer.hasPermission("askyblock.team.maxsize.12");
  607. left_click_commands:
  608. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  609. next upgrade'
  610. - '[close]'
  611. right_click_commands:
  612. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  613. next upgrade'
  614. - '[close]'
  615. '12':
  616. material: LAVA_BUCKET
  617. data: 0
  618. priority: 2
  619. slot: 22
  620. display_name: '&6&nTeam Upgrade&6 &7(#3)'
  621. lore:
  622. - '&7This allows you to expand the'
  623. - '&7maximum size limit of your team'
  624. - ''
  625. - '&eNew size: &f&n12 Members'
  626. - '&eUpgrade cost: &f&n$1,500,000'
  627. - ''
  628. - '&e&lSTATUS &cLocked'
  629. - ''
  630. - '&7&o(Click to upgrade Island)'
  631. left_click_commands:
  632. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Team Upgrade'
  633. - '[console] eco take %player_name% 1500000'
  634. - '[console] lp user %player_name% set askyblock.team.maxsize.12 true'
  635. - '[console] ekick %player_name% &fPlease relog while your Island is being
  636. &e&lUPDATED'
  637. - '[close]'
  638. right_click_commands:
  639. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Team Upgrade'
  640. - '[console] eco take %player_name% 1500000'
  641. - '[console] lp user %player_name% set askyblock.team.maxsize.12 true'
  642. - '[console] ekick %player_name% &fPlease relog while your Island is being
  643. &e&lUPDATED'
  644. - '[close]'
  645. left_click_requirement:
  646. expression: '%vault_eco_balance% >= 1500000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.8")'
  647. deny_commands:
  648. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  649. or previous upgrade'
  650. - '[close]'
  651. right_click_requirement:
  652. expression: '%vault_eco_balance% >= 1500000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.8")'
  653. deny_commands:
  654. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  655. or previous upgrade'
  656. '13':
  657. material: MILK_BUCKET
  658. data: 0
  659. slot: 23
  660. priority: 1
  661. display_name: '&6&nTeam Upgrade&6 &7(#4)'
  662. lore:
  663. - '&7This allows you to expand the'
  664. - '&7maximum size limit of your team'
  665. - ''
  666. - '&eNew size: &f&n14 Members'
  667. - '&eUpgrade cost: &f&n$2,000,000'
  668. - ''
  669. - '&e&lSTATUS &aUnlocked'
  670. - ''
  671. - '&7&o(Click to upgrade Island)'
  672. view_requirement: BukkitPlayer.hasPermission("askyblock.team.maxsize.14");
  673. left_click_commands:
  674. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  675. next upgrade'
  676. - '[close]'
  677. right_click_commands:
  678. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  679. next upgrade'
  680. - '[close]'
  681. '14':
  682. material: MILK_BUCKET
  683. data: 0
  684. priority: 2
  685. slot: 23
  686. display_name: '&6&nTeam Upgrade&6 &7(#4)'
  687. lore:
  688. - '&7This allows you to expand the'
  689. - '&7maximum size limit of your team'
  690. - ''
  691. - '&eNew size: &f&n14 Members'
  692. - '&eUpgrade cost: &f&n$2,000,000'
  693. - ''
  694. - '&e&lSTATUS &cLocked'
  695. - ''
  696. - '&7&o(Click to upgrade Island)'
  697. left_click_commands:
  698. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Team Upgrade'
  699. - '[console] eco take %player_name% 2000000'
  700. - '[console] lp user %player_name% set askyblock.team.maxsize.14 true'
  701. - '[console] ekick %player_name% &fPlease relog while your Island is being
  702. &e&lUPDATED'
  703. - '[close]'
  704. right_click_commands:
  705. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Team Upgrade'
  706. - '[console] eco take %player_name% 2000000'
  707. - '[console] lp user %player_name% set askyblock.team.maxsize.14 true'
  708. - '[console] ekick %player_name% &fPlease relog while your Island is being
  709. &e&lUPDATED'
  710. - '[close]'
  711. left_click_requirement:
  712. expression: '%vault_eco_balance% >= 2000000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.12")'
  713. deny_commands:
  714. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  715. or previous upgrade'
  716. - '[close]'
  717. right_click_requirement:
  718. expression: '%vault_eco_balance% >= 2000000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.12")'
  719. deny_commands:
  720. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  721. or previous upgrade'
  722. '15':
  723. material: 346
  724. data: 0
  725. slot: 24
  726. priority: 1
  727. display_name: '&6&nTeam Upgrade&6 &7(#5)'
  728. lore:
  729. - '&7This allows you to expand the'
  730. - '&7maximum size limit of your team'
  731. - ''
  732. - '&eNew size: &f&n16 Members'
  733. - '&eUpgrade cost: &f&n$2,500,000'
  734. - ''
  735. - '&e&lSTATUS &aUnlocked'
  736. - ''
  737. - '&7&o(Click to upgrade Island)'
  738. view_requirement: BukkitPlayer.hasPermission("askyblock.team.maxsize.16");
  739. left_click_commands:
  740. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  741. next upgrade'
  742. - '[close]'
  743. right_click_commands:
  744. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  745. next upgrade'
  746. - '[close]'
  747. '16':
  748. material: 346
  749. data: 0
  750. priority: 2
  751. slot: 24
  752. display_name: '&6&nTeam Upgrade&6 &7(#5)'
  753. lore:
  754. - '&7This allows you to expand the'
  755. - '&7maximum size limit of your team'
  756. - ''
  757. - '&eNew size: &f&n16 Members'
  758. - '&eUpgrade cost: &f&n$2,500,000'
  759. - ''
  760. - '&e&lSTATUS &cLocked'
  761. - ''
  762. - '&7&o(Click to upgrade Island)'
  763. left_click_commands:
  764. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Team Upgrade'
  765. - '[console] eco take %player_name% 2500000'
  766. - '[console] lp user %player_name% set askyblock.team.maxsize.16 true'
  767. - '[console] ekick %player_name% &fPlease relog while your Island is being
  768. &e&lUPDATED'
  769. - '[close]'
  770. right_click_commands:
  771. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Team Upgrade'
  772. - '[console] eco take %player_name% 2500000'
  773. - '[console] lp user %player_name% set askyblock.team.maxsize.16 true'
  774. - '[console] ekick %player_name% &fPlease relog while your Island is being
  775. &e&lUPDATED'
  776. - '[close]'
  777. left_click_requirement:
  778. expression: '%vault_eco_balance% >= 2500000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.14")'
  779. deny_commands:
  780. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  781. or previous upgrade'
  782. - '[close]'
  783. right_click_requirement:
  784. expression: '%vault_eco_balance% >= 2500000 && BukkitPlayer.hasPermission("askyblock.team.maxsize.14")'
  785. deny_commands:
  786. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  787. or previous upgrade'
  788. '17':
  789. material: 324
  790. data: 0
  791. slot: 30
  792. priority: 1
  793. display_name: '&6&nHomes Upgrade&6 &7(#1)'
  794. lore:
  795. - '&7This allows you to expand the'
  796. - '&7maximum homes limit of your island'
  797. - ''
  798. - '&eNew size: &f&n2 Homes'
  799. - '&eUpgrade cost: &f&n$50,000'
  800. - ''
  801. - '&e&lSTATUS &aUnlocked'
  802. - '&cUsage: &7/Is go <Number>'
  803. - ''
  804. - '&7&o(Click to upgrade Island)'
  805. view_requirement: BukkitPlayer.hasPermission("askyblock.island.maxhomes.2");
  806. left_click_commands:
  807. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  808. next upgrade'
  809. - '[close]'
  810. right_click_commands:
  811. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  812. next upgrade'
  813. - '[close]'
  814. '18':
  815. material: 324
  816. data: 0
  817. priority: 2
  818. slot: 30
  819. display_name: '&6&nHomes Upgrade&6 &7(#1)'
  820. lore:
  821. - '&7This allows you to expand the'
  822. - '&7maximum homes limit of your island'
  823. - ''
  824. - '&eNew size: &f&n2 Homes'
  825. - '&eUpgrade cost: &f&n$50,000'
  826. - ''
  827. - '&e&lSTATUS &cLocked'
  828. - '&cUsage: &7/Is go <Number>'
  829. - ''
  830. - '&7&o(Click to upgrade Island)'
  831. left_click_commands:
  832. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Homes Upgrade'
  833. - '[console] eco take %player_name% 50000'
  834. - '[console] lp user %player_name% set askyblock.island.maxhomes.2 true'
  835. - '[console] ekick %player_name% &fPlease relog while your Island is being
  836. &e&lUPDATED'
  837. - '[close]'
  838. right_click_commands:
  839. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Homes Upgrade'
  840. - '[console] eco take %player_name% 50000'
  841. - '[console] lp user %player_name% set askyblock.island.maxhomes.2 true'
  842. - '[console] ekick %player_name% &fPlease relog while your Island is being
  843. &e&lUPDATED'
  844. - '[close]'
  845. left_click_requirement:
  846. expression: '%vault_eco_balance% >= 50000'
  847. deny_commands:
  848. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  849. or previous upgrade'
  850. - '[close]'
  851. right_click_requirement:
  852. expression: '%vault_eco_balance% >= 50000'
  853. deny_commands:
  854. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  855. or previous upgrade'
  856. '19':
  857. material: 428
  858. data: 0
  859. slot: 31
  860. priority: 1
  861. display_name: '&6&nHomes Upgrade&6 &7(#2)'
  862. lore:
  863. - '&7This allows you to expand the'
  864. - '&7maximum homes limit of your island'
  865. - ''
  866. - '&eNew size: &f&n4 Homes'
  867. - '&eUpgrade cost: &f&n$75,000'
  868. - ''
  869. - '&e&lSTATUS &aUnlocked'
  870. - '&cUsage: &7/Is go <Number>'
  871. - ''
  872. - '&7&o(Click to upgrade Island)'
  873. view_requirement: BukkitPlayer.hasPermission("askyblock.island.maxhomes.4");
  874. left_click_commands:
  875. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  876. next upgrade'
  877. - '[close]'
  878. right_click_commands:
  879. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  880. next upgrade'
  881. - '[close]'
  882. '20':
  883. material: 428
  884. data: 0
  885. priority: 2
  886. slot: 31
  887. display_name: '&6&nHomes Upgrade&6 &7(#2)'
  888. lore:
  889. - '&7This allows you to expand the'
  890. - '&7maximum homes limit of your island'
  891. - ''
  892. - '&eNew size: &f&n4 Homes'
  893. - '&eUpgrade cost: &f&n$75,000'
  894. - ''
  895. - '&e&lSTATUS &cLocked'
  896. - '&cUsage: &7/Is go <Number>'
  897. - ''
  898. - '&7&o(Click to upgrade Island)'
  899. left_click_commands:
  900. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Homes Upgrade'
  901. - '[console] eco take %player_name% 75000'
  902. - '[console] lp user %player_name% set askyblock.island.maxhomes.4 true'
  903. - '[console] ekick %player_name% &fPlease relog while your Island is being
  904. &e&lUPDATED'
  905. - '[close]'
  906. right_click_commands:
  907. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Homes Upgrade'
  908. - '[console] eco take %player_name% 75000'
  909. - '[console] lp user %player_name% set askyblock.island.maxhomes.4 true'
  910. - '[console] ekick %player_name% &fPlease relog while your Island is being
  911. &e&lUPDATED'
  912. - '[close]'
  913. left_click_requirement:
  914. expression: '%vault_eco_balance% >= 75000 && BukkitPlayer.hasPermission("askyblock.island.maxhomes.2")'
  915. deny_commands:
  916. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  917. or previous upgrade'
  918. - '[close]'
  919. right_click_requirement:
  920. expression: '%vault_eco_balance% >= 75000 && BukkitPlayer.hasPermission("askyblock.island.maxhomes.2")'
  921. deny_commands:
  922. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  923. or previous upgrade'
  924. '21':
  925. material: 431
  926. data: 0
  927. slot: 32
  928. priority: 1
  929. display_name: '&6&nHomes Upgrade&6 &7(#3)'
  930. lore:
  931. - '&7This allows you to expand the'
  932. - '&7maximum homes limit of your island'
  933. - ''
  934. - '&eNew size: &f&n6 Homes'
  935. - '&eUpgrade cost: &f&n$150,000'
  936. - ''
  937. - '&e&lSTATUS &aUnlocked'
  938. - '&cUsage: &7/Is go <Number>'
  939. - ''
  940. - '&7&o(Click to upgrade Island)'
  941. view_requirement: BukkitPlayer.hasPermission("askyblock.island.maxhomes.6");
  942. left_click_commands:
  943. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fYou unlocked all
  944. upgrades'
  945. - '[close]'
  946. right_click_commands:
  947. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fYou unlocked all
  948. upgrades'
  949. - '[close]'
  950. '22':
  951. material: 431
  952. data: 0
  953. priority: 2
  954. slot: 32
  955. display_name: '&6&nHomes Upgrade&6 &7(#3)'
  956. lore:
  957. - '&7This allows you to expand the'
  958. - '&7maximum homes limit of your island'
  959. - ''
  960. - '&eNew size: &f&n6 Homes'
  961. - '&eUpgrade cost: &f&n$150,000'
  962. - ''
  963. - '&e&lSTATUS &cLocked'
  964. - '&cUsage: &7/Is go <Number>'
  965. - ''
  966. - '&7&o(Click to upgrade Island)'
  967. left_click_commands:
  968. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Homes Upgrade'
  969. - '[console] eco take %player_name% 150000'
  970. - '[console] lp user %player_name% set askyblock.island.maxhomes.6 true'
  971. - '[console] ekick %player_name% &fPlease relog while your Island is being
  972. &e&lUPDATED'
  973. - '[close]'
  974. right_click_commands:
  975. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Homes Upgrade'
  976. - '[console] eco take %player_name% 150000'
  977. - '[console] lp user %player_name% set askyblock.island.maxhomes.6 true'
  978. - '[console] ekick %player_name% &fPlease relog while your Island is being
  979. &e&lUPDATED'
  980. - '[close]'
  981. left_click_requirement:
  982. expression: '%vault_eco_balance% >= 150000 && BukkitPlayer.hasPermission("askyblock.island.maxhomes.4")'
  983. deny_commands:
  984. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  985. or previous upgrade'
  986. - '[close]'
  987. right_click_requirement:
  988. expression: '%vault_eco_balance% >= 150000 && BukkitPlayer.hasPermission("askyblock.island.maxhomes.4")'
  989. deny_commands:
  990. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  991. or previous upgrade'
  992. '23':
  993. material: 160
  994. display_name: '&f'
  995. data: 15
  996. slot: 0
  997. '24':
  998. material: 160
  999. display_name: '&f'
  1000. data: 15
  1001. slot: 1
  1002. '25':
  1003. material: 160
  1004. display_name: '&f'
  1005. data: 15
  1006. slot: 2
  1007. '26':
  1008. material: 160
  1009. display_name: '&f'
  1010. data: 15
  1011. slot: 3
  1012. '27':
  1013. material: 160
  1014. display_name: '&f'
  1015. data: 15
  1016. slot: 4
  1017. '28':
  1018. material: 160
  1019. display_name: '&f'
  1020. data: 15
  1021. slot: 5
  1022. '29':
  1023. material: 160
  1024. display_name: '&f'
  1025. data: 15
  1026. slot: 6
  1027. '30':
  1028. material: 160
  1029. display_name: '&f'
  1030. data: 15
  1031. slot: 7
  1032. '31':
  1033. material: 160
  1034. display_name: '&f'
  1035. data: 15
  1036. slot: 8
  1037. '32':
  1038. material: 160
  1039. display_name: '&f'
  1040. data: 15
  1041. slot: 9
  1042. '33':
  1043. material: 160
  1044. display_name: '&f'
  1045. data: 15
  1046. slot: 10
  1047. '34':
  1048. material: 160
  1049. display_name: '&f'
  1050. data: 15
  1051. slot: 11
  1052. '35':
  1053. material: 160
  1054. display_name: '&f'
  1055. data: 15
  1056. slot: 15
  1057. '36':
  1058. material: 160
  1059. display_name: '&f'
  1060. data: 15
  1061. slot: 16
  1062. '37':
  1063. material: 160
  1064. display_name: '&f'
  1065. data: 15
  1066. slot: 17
  1067. '38':
  1068. material: 160
  1069. display_name: '&f'
  1070. data: 15
  1071. slot: 18
  1072. '39':
  1073. material: 160
  1074. display_name: '&f'
  1075. data: 15
  1076. slot: 19
  1077. '40':
  1078. material: 160
  1079. display_name: '&f'
  1080. data: 15
  1081. slot: 25
  1082. '41':
  1083. material: 160
  1084. display_name: '&f'
  1085. data: 15
  1086. slot: 26
  1087. '42':
  1088. material: 160
  1089. display_name: '&f'
  1090. data: 15
  1091. slot: 27
  1092. '43':
  1093. material: 160
  1094. display_name: '&f'
  1095. data: 15
  1096. slot: 28
  1097. '44':
  1098. material: 160
  1099. display_name: '&f'
  1100. data: 15
  1101. slot: 29
  1102. '45':
  1103. material: 160
  1104. display_name: '&f'
  1105. data: 15
  1106. slot: 33
  1107. '46':
  1108. material: 160
  1109. display_name: '&f'
  1110. data: 15
  1111. slot: 34
  1112. '47':
  1113. material: 160
  1114. display_name: '&f'
  1115. data: 15
  1116. slot: 35
  1117. '48':
  1118. material: 160
  1119. display_name: '&f'
  1120. data: 15
  1121. slot: 36
  1122. '49':
  1123. material: 160
  1124. display_name: '&f'
  1125. data: 15
  1126. slot: 37
  1127. '50':
  1128. material: 160
  1129. display_name: '&f'
  1130. data: 15
  1131. slot: 38
  1132. '51':
  1133. material: 160
  1134. display_name: '&f'
  1135. data: 15
  1136. slot: 39
  1137. '52':
  1138. material: 160
  1139. display_name: '&f'
  1140. data: 15
  1141. slot: 40
  1142. '53':
  1143. material: 160
  1144. display_name: '&f'
  1145. data: 15
  1146. slot: 41
  1147. '54':
  1148. material: 160
  1149. display_name: '&f'
  1150. data: 15
  1151. slot: 42
  1152. '55':
  1153. material: 160
  1154. display_name: '&f'
  1155. data: 15
  1156. slot: 43
  1157. '56':
  1158. material: 160
  1159. display_name: '&f'
  1160. data: 15
  1161. slot: 44
  1162. '57':
  1163. material: 160
  1164. display_name: '&f'
  1165. data: 15
  1166. slot: 45
  1167. '58':
  1168. material: 160
  1169. display_name: '&f'
  1170. data: 15
  1171. slot: 46
  1172. '59':
  1173. material: 160
  1174. display_name: '&f'
  1175. data: 15
  1176. slot: 47
  1177. '60':
  1178. material: 160
  1179. display_name: '&f'
  1180. data: 15
  1181. slot: 48
  1182. '61':
  1183. material: 160
  1184. display_name: '&c&lWARNING!'
  1185. lore:
  1186. - '&fUpgrades only apply to your'
  1187. - '&fown islands and not islands that'
  1188. - '&fyou are a member of'
  1189. data: 14
  1190. slot: 49
  1191. '62':
  1192. material: 160
  1193. display_name: '&f'
  1194. data: 15
  1195. slot: 50
  1196. '63':
  1197. material: 160
  1198. display_name: '&f'
  1199. data: 15
  1200. slot: 51
  1201. '64':
  1202. material: 160
  1203. display_name: '&f'
  1204. data: 15
  1205. slot: 52
  1206. '65':
  1207. material: 160
  1208. display_name: '&f'
  1209. data: 15
  1210. slot: 53
  1211. generators:
  1212. menu_title: Generator Upgrades
  1213. size: 27
  1214. open_command:
  1215. - gen
  1216. - gens
  1217. - generator
  1218. - generators
  1219. items:
  1220. '1':
  1221. material: IRON_INGOT
  1222. data: 0
  1223. slot: 12
  1224. priority: 1
  1225. display_name: '&6&lIron Generator&6 &7(#1)'
  1226. lore:
  1227. - '&7This upgrade will add the'
  1228. - '&7following percentages to your'
  1229. - '&7Cobble generators:'
  1230. - ''
  1231. - '&c&lSTONE: &f64'
  1232. - '&a&lIRON ORE: &f9'
  1233. - '&a&lLAPIS ORE: &f8'
  1234. - '&a&lGOAL ORE: &f8'
  1235. - '&a&lGOLD ORE: &f5.5'
  1236. - '&a&lDIAMOND ORE: &f3'
  1237. - '&a&lEMERALD ORE: &f1.5'
  1238. - '&a&lREDSTONE ORE: &f1'
  1239. - ''
  1240. - '&e&lCOST: &f&n$100,000'
  1241. - '&e&lSTATUS: &aUnlocked'
  1242. - ''
  1243. - '&7&o(Click to upgrade Generator)'
  1244. view_requirement: BukkitPlayer.hasPermission("upgrades.gen.first");
  1245. left_click_commands:
  1246. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  1247. next upgrade'
  1248. - '[close]'
  1249. right_click_commands:
  1250. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  1251. next upgrade'
  1252. - '[close]'
  1253. '2':
  1254. material: IRON_INGOT
  1255. data: 0
  1256. priority: 2
  1257. slot: 12
  1258. display_name: '&6&lIron Generator&6 &7(#1)'
  1259. lore:
  1260. - '&7This upgrade will add the'
  1261. - '&7following percentages to your'
  1262. - '&7Cobble generators:'
  1263. - ''
  1264. - '&c&lSTONE: &f64'
  1265. - '&a&lIRON ORE: &f9'
  1266. - '&a&lLAPIS ORE: &f8'
  1267. - '&a&lGOAL ORE: &f8'
  1268. - '&a&lGOLD ORE: &f5.5'
  1269. - '&a&lDIAMOND ORE: &f3'
  1270. - '&a&lEMERALD ORE: &f1.5'
  1271. - '&a&lREDSTONE ORE: &f1'
  1272. - ''
  1273. - '&e&lCOST: &f&n$100,000'
  1274. - '&e&lSTATUS: &cLocked'
  1275. - ''
  1276. - '&7&o(Click to upgrade Generator)'
  1277. left_click_commands:
  1278. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Generator
  1279. Upgrade'
  1280. - '[console] eco take %player_name% 100000'
  1281. - '[console] lp user %player_name% set upgrades.gen.first true'
  1282. - '[console] ekick %player_name% &fPlease relog while your Island is being
  1283. &e&lUPDATED'
  1284. - '[close]'
  1285. right_click_commands:
  1286. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fFirst Generator
  1287. Upgrade'
  1288. - '[console] eco take %player_name% 100000'
  1289. - '[console] lp user %player_name% set upgrades.gen.first true'
  1290. - '[console] ekick %player_name% &fPlease relog while your Island is being
  1291. &e&lUPDATED'
  1292. - '[close]'
  1293. left_click_requirement:
  1294. expression: '%vault_eco_balance% >= 100000'
  1295. deny_commands:
  1296. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  1297. or previous upgrade'
  1298. - '[close]'
  1299. right_click_requirement:
  1300. expression: '%vault_eco_balance% >= 100000'
  1301. deny_commands:
  1302. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  1303. or previous upgrade'
  1304. - '[close]'
  1305. '3':
  1306. material: GOLD_INGOT
  1307. data: 0
  1308. slot: 13
  1309. priority: 1
  1310. display_name: '&6&lGold Generator&6 &7(#2)'
  1311. lore:
  1312. - '&7This upgrade will add the'
  1313. - '&7following percentages to your'
  1314. - '&7Cobble generators:'
  1315. - ''
  1316. - '&c&lSTONE: &f59'
  1317. - '&a&lIRON ORE: &f9'
  1318. - '&a&lGOAL ORE: &f9'
  1319. - '&a&lGOLD ORE: &f7.5'
  1320. - '&a&lLAPIS ORE: &f7'
  1321. - '&a&lDIAMOND ORE: &f4'
  1322. - '&a&lEMERALD ORE: &f2.5'
  1323. - '&a&lREDSTONE ORE: &f1'
  1324. - ''
  1325. - '&e&lCOST: &f&n$250,000'
  1326. - '&e&lSTATUS: &aUnlocked'
  1327. - ''
  1328. - '&7&o(Click to upgrade Generator)'
  1329. view_requirement: BukkitPlayer.hasPermission("upgrades.gen.second");
  1330. left_click_commands:
  1331. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  1332. next upgrade'
  1333. - '[close]'
  1334. right_click_commands:
  1335. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  1336. next upgrade'
  1337. - '[close]'
  1338. '4':
  1339. material: GOLD_INGOT
  1340. data: 0
  1341. priority: 2
  1342. slot: 13
  1343. display_name: '&6&lGold Generator&6 &7(#2)'
  1344. lore:
  1345. - '&7This upgrade will add the'
  1346. - '&7following percentages to your'
  1347. - '&7Cobble generators:'
  1348. - ''
  1349. - '&c&lSTONE: &f59'
  1350. - '&a&lIRON ORE: &f9'
  1351. - '&a&lGOAL ORE: &f9'
  1352. - '&a&lGOLD ORE: &f7.5'
  1353. - '&a&lLAPIS ORE: &f7'
  1354. - '&a&lDIAMOND ORE: &f4'
  1355. - '&a&lEMERALD ORE: &f2.5'
  1356. - '&a&lREDSTONE ORE: &f1'
  1357. - ''
  1358. - '&e&lCOST: &f&n$250,000'
  1359. - '&e&lSTATUS: &cLocked'
  1360. - ''
  1361. - '&7&o(Click to upgrade Generator)'
  1362. left_click_commands:
  1363. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Generator
  1364. Upgrade'
  1365. - '[console] eco take %player_name% 250000'
  1366. - '[console] lp user %player_name% set upgrades.gen.second true'
  1367. - '[console] ekick %player_name% &fPlease relog while your Island is being
  1368. &e&lUPDATED'
  1369. - '[close]'
  1370. right_click_commands:
  1371. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fSecond Generator
  1372. Upgrade'
  1373. - '[console] eco take %player_name% 250000'
  1374. - '[console] lp user %player_name% set upgrades.gen.second true'
  1375. - '[console] ekick %player_name% &fPlease relog while your Island is being
  1376. &e&lUPDATED'
  1377. - '[close]'
  1378. left_click_requirement:
  1379. expression: '%vault_eco_balance% >= 250000 && BukkitPlayer.hasPermission("upgrades.gen.second")'
  1380. deny_commands:
  1381. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  1382. or previous upgrade'
  1383. - '[close]'
  1384. right_click_requirement:
  1385. expression: '%vault_eco_balance% >= 250000 && BukkitPlayer.hasPermission("upgrades.gen.second")'
  1386. deny_commands:
  1387. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  1388. or previous upgrade'
  1389. - '[close]'
  1390. '5':
  1391. material: DIAMOND
  1392. data: 0
  1393. slot: 14
  1394. priority: 1
  1395. display_name: '&6&lDiamond Generator&a &7(#3)'
  1396. lore:
  1397. - '&7This upgrade will add the'
  1398. - '&7following percentages to your'
  1399. - '&7Cobble generators:'
  1400. - ''
  1401. - '&c&lSTONE: &f57'
  1402. - '&a&lIRON ORE: &f8'
  1403. - '&a&lGOAL ORE: &f8'
  1404. - '&a&lGOLD ORE: &f8'
  1405. - '&a&lLAPIS ORE: &f7'
  1406. - '&a&lDIAMOND ORE: &f6'
  1407. - '&a&lREDSTONE ORE: &f3'
  1408. - '&a&lEMERALD ORE: &f3'
  1409. - ''
  1410. - '&e&lCOST: &f&n$500,000'
  1411. - '&e&lSTATUS: &aUnlocked'
  1412. - ''
  1413. - '&7&o(Click to upgrade Generator)'
  1414. view_requirement: BukkitPlayer.hasPermission("upgrades.gen.third");
  1415. left_click_commands:
  1416. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  1417. next upgrade'
  1418. - '[close]'
  1419. right_click_commands:
  1420. - '[console] tm msg %player_name% &6&lALREADY UNLOCKED\n&fProcceed to the
  1421. next upgrade'
  1422. - '[close]'
  1423. '6':
  1424. material: DIAMOND
  1425. data: 0
  1426. priority: 2
  1427. slot: 14
  1428. display_name: '&6&lDiamond Generator&a &7(#3)'
  1429. lore:
  1430. - '&7This upgrade will add the'
  1431. - '&7following percentages to your'
  1432. - '&7Cobble generators:'
  1433. - ''
  1434. - '&c&lSTONE: &f57'
  1435. - '&a&lIRON ORE: &f8'
  1436. - '&a&lGOAL ORE: &f8'
  1437. - '&a&lGOLD ORE: &f8'
  1438. - '&a&lLAPIS ORE: &f7'
  1439. - '&a&lDIAMOND ORE: &f6'
  1440. - '&a&lREDSTONE ORE: &f3'
  1441. - '&a&lEMERALD ORE: &f3'
  1442. - ''
  1443. - '&e&lCOST: &f&n$500,000'
  1444. - '&e&lSTATUS: &cLocked'
  1445. - ''
  1446. - '&7&o(Click to upgrade Generator)'
  1447. left_click_commands:
  1448. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Generator
  1449. Upgrade'
  1450. - '[console] eco take %player_name% 500000'
  1451. - '[console] lp user %player_name% set upgrades.gen.third true'
  1452. - '[console] ekick %player_name% &fPlease relog while your Island is being
  1453. &e&lUPDATED'
  1454. - '[close]'
  1455. right_click_commands:
  1456. - '[console] tm msg %player_name% &a&lUPGRADE UNLOCKED\n&fThird Generator
  1457. Upgrade'
  1458. - '[console] eco take %player_name% 500000'
  1459. - '[console] lp user %player_name% set upgrades.gen.third true'
  1460. - '[console] ekick %player_name% &fPlease relog while your Island is being
  1461. &e&lUPDATED'
  1462. - '[close]'
  1463. left_click_requirement:
  1464. expression: '%vault_eco_balance% >= 500000 && BukkitPlayer.hasPermission("upgrades.gen.second")'
  1465. deny_commands:
  1466. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  1467. or previous upgrade'
  1468. - '[close]'
  1469. right_click_requirement:
  1470. expression: '%vault_eco_balance% >= 500000 && BukkitPlayer.hasPermission("upgrades.gen.second")'
  1471. deny_commands:
  1472. - '[console] tm msg %player_name% &c&lUNSUCCESSFUL\n&fYou''re missing $
  1473. or previous upgrade'
  1474. - '[close]'
  1475. '11':
  1476. material: 160
  1477. display_name: '&f'
  1478. data: 15
  1479. slot: 16
  1480. '12':
  1481. material: 160
  1482. display_name: '&f'
  1483. data: 15
  1484. slot: 10
  1485. '13':
  1486. material: 160
  1487. display_name: '&f'
  1488. data: 15
  1489. slot: 1
  1490. '14':
  1491. material: 160
  1492. display_name: '&f'
  1493. data: 15
  1494. slot: 2
  1495. '15':
  1496. material: 160
  1497. display_name: '&f'
  1498. data: 15
  1499. slot: 3
  1500. '16':
  1501. material: 160
  1502. display_name: '&f'
  1503. data: 15
  1504. slot: 4
  1505. '715':
  1506. material: 160
  1507. display_name: '&f'
  1508. data: 15
  1509. slot: 11
  1510. '816':
  1511. material: 160
  1512. display_name: '&f'
  1513. data: 15
  1514. slot: 15
  1515. '17':
  1516. material: 160
  1517. display_name: '&f'
  1518. data: 15
  1519. slot: 5
  1520. '18':
  1521. material: 160
  1522. display_name: '&f'
  1523. data: 15
  1524. slot: 6
  1525. '19':
  1526. material: 160
  1527. display_name: '&f'
  1528. data: 15
  1529. slot: 7
  1530. '20':
  1531. material: 160
  1532. display_name: '&f'
  1533. data: 15
  1534. slot: 8
  1535. '21':
  1536. material: 160
  1537. display_name: '&f'
  1538. data: 15
  1539. slot: 0
  1540. '22':
  1541. material: 160
  1542. display_name: '&f'
  1543. data: 15
  1544. slot: 9
  1545. '23':
  1546. material: 160
  1547. display_name: '&f'
  1548. data: 15
  1549. slot: 17
  1550. '24':
  1551. material: 160
  1552. display_name: '&f'
  1553. data: 15
  1554. slot: 18
  1555. '25':
  1556. material: 160
  1557. display_name: '&f'
  1558. data: 15
  1559. slot: 19
  1560. '26':
  1561. material: 160
  1562. display_name: '&f'
  1563. data: 15
  1564. slot: 20
  1565. '27':
  1566. material: 160
  1567. display_name: '&f'
  1568. data: 15
  1569. slot: 21
  1570. '28':
  1571. material: 160
  1572. display_name: '&c&lWARNING!'
  1573. lore:
  1574. - '&fGenerator upgrades only apply'
  1575. - '&fto the Island team when the'
  1576. - '&c&lOWNER &fis online!'
  1577. data: 14
  1578. slot: 22
  1579. '29':
  1580. material: 160
  1581. display_name: '&f'
  1582. data: 15
  1583. slot: 23
  1584. '30':
  1585. material: 160
  1586. display_name: '&f'
  1587. data: 15
  1588. slot: 24
  1589. '31':
  1590. material: 160
  1591. display_name: '&f'
  1592. data: 15
  1593. slot: 25
  1594. '32':
  1595. material: 160
  1596. display_name: '&f'
  1597. data: 15
  1598. slot: 26
  1599. ranks:
  1600. menu_title: Donator Ranks
  1601. open_command:
  1602. - perks
  1603. - ranks
  1604. - donator
  1605. - rank
  1606. - donor
  1607. - donors
  1608. - donators
  1609. - perk
  1610. size: 27
  1611. items:
  1612. '1':
  1613. material: IRON_BLOCK
  1614. slot: 10
  1615. display_name: '&6SKYHERO &7(Rank #1)'
  1616. lore:
  1617. - ''
  1618. - '&bPrice: &f$25'
  1619. - '&bPrfix: &6[SKYHERO]'
  1620. - ''
  1621. - '&bPerks:'
  1622. - '&7Kit Skyhero, /back'
  1623. - '&7/hat, /nick'
  1624. - '&bUpon Purchase:'
  1625. - '&7$30,000 & 2x God Swords'
  1626. - ''
  1627. - '&eShortcut: &7/settings'
  1628. - '&eClick to open store'
  1629. left_click_commands:
  1630. - '[player] buy'
  1631. right_click_commands:
  1632. - '[player] buy'
  1633. '2':
  1634. material: GOLD_BLOCK
  1635. slot: 12
  1636. display_name: '&bSKYLEGEND &7(Rank #2)'
  1637. lore:
  1638. - ''
  1639. - '&bPrice: &f$50'
  1640. - '&bPrfix: &b[SKYLEGEND]'
  1641. - '&bInheritance: &fAll lower ranks'
  1642. - ''
  1643. - '&bPerks:'
  1644. - '&7Kit Silktouch, /craft, /feed'
  1645. - '&7/Kit Skylegend'
  1646. - '&bUpon Purchase:'
  1647. - '&7$50,000 & 2x God Swords'
  1648. - '&71x God Tools kit'
  1649. - ''
  1650. - '&eShortcut: &7/settings'
  1651. - '&eClick to open store'
  1652. left_click_commands:
  1653. - '[player] buy'
  1654. right_click_commands:
  1655. - '[player] buy'
  1656. '3':
  1657. material: DIAMOND_BLOCK
  1658. slot: 14
  1659. display_name: '&aSKYLORD &7(Rank #3)'
  1660. lore:
  1661. - ''
  1662. - '&bPrice: &f$150'
  1663. - '&bPrfix: &b[SKYLORD]'
  1664. - '&bInheritance: &fAll lower ranks'
  1665. - ''
  1666. - '&bPerks:'
  1667. - '&7Kit Skylord, /heal'
  1668. - '&7/ignore'
  1669. - '&bUpon Purchase:'
  1670. - '&7$100,000 & God armour'
  1671. - '&71x God Tools kit'
  1672. - ''
  1673. - '&eShortcut: &7/settings'
  1674. - '&eClick to open store'
  1675. left_click_commands:
  1676. - '[player] buy'
  1677. right_click_commands:
  1678. - '[player] buy'
  1679. '4':
  1680. material: EMERALD_BLOCK
  1681. slot: 16
  1682. display_name: '&dSKYMAGE &7(Rank #4)'
  1683. lore:
  1684. - ''
  1685. - '&bPrice: &f$200'
  1686. - '&bPrfix: &d[SKYMAGE]'
  1687. - '&bInheritance: &fAll lower ranks'
  1688. - ''
  1689. - '&bPerks:'
  1690. - '&7Kit Skymage, /echest, /fly'
  1691. - '&7/repair all, create trade signs'
  1692. - '&bUpon Purchase:'
  1693. - '&7$500,000, God armour'
  1694. - '&71x God Tools kit, 1x God sword kit'
  1695. - ''
  1696. - '&eShortcut: &7/settings'
  1697. - '&eClick to open store'
  1698. left_click_commands:
  1699. - '[player] buy'
  1700. right_click_commands:
  1701. - '[player] buy'
  1702. kits:
  1703. menu_title: Kits Menu
  1704. open_command:
  1705. - kits
  1706. - kit
  1707. - ekit
  1708. - ekits
  1709. size: 18
  1710. items:
  1711. '1':
  1712. material: 310
  1713. slot: 0
  1714. display_name: '&6SKYHERO &7Kit'
  1715. lore:
  1716. - ''
  1717. - '&bIncludes:'
  1718. - '&72x Blocks of'
  1719. - '&3&l * &bLapis, Diamond, Redstone'
  1720. - '&3&l * &bCoal, Iron & Gold'
  1721. - ''
  1722. - '&71x Enchantment Book of:'
  1723. - '&3&l * &bEffeciency II, Unbreaking I'
  1724. - '&3&l * &bProtection I, Power II'
  1725. - '&3&l * &bSharpness II'
  1726. - ''
  1727. - '&bStatus: %javascript_skyhero%'
  1728. - '%javascript_herobuy%'
  1729. left_click_commands:
  1730. - '[player] kit skyhero'
  1731. right_click_commands:
  1732. - '[player] kit skyhero'
  1733. '3':
  1734. material: 311
  1735. slot: 1
  1736. display_name: '&bSKYLEGEND &7Kit'
  1737. lore:
  1738. - ''
  1739. - '&bIncludes:'
  1740. - '&73x Blocks of'
  1741. - '&3&l * &bLapis, Diamond, Redstone'
  1742. - '&3&l * &bCoal, Iron, Emerald & Gold'
  1743. - ''
  1744. - '&71x Enchantment Book of:'
  1745. - '&3&l * &bEffeciency III, Unbreaking II'
  1746. - '&3&l * &bProtection II, Power III, Thorns I'
  1747. - '&3&l * &bSharpness II, Looting I & Fortune I'
  1748. - ''
  1749. - '&bStatus: %javascript_skylegend%'
  1750. - '%javascript_legendbuy%'
  1751. left_click_commands:
  1752. - '[player] kit skylegend'
  1753. right_click_commands:
  1754. - '[player] kit skylegend'
  1755. '2':
  1756. material: 312
  1757. slot: 2
  1758. display_name: '&aSKYLORD &7Kit'
  1759. lore:
  1760. - ''
  1761. - '&bIncludes:'
  1762. - '&74x Blocks of'
  1763. - '&3&l * &bLapis, Diamond, Redstone'
  1764. - '&3&l * &bCoal, Iron, Emerald & Gold'
  1765. - ''
  1766. - '&3&l * &bEffeciency IV, Unbreaking III'
  1767. - '&3&l * &bProtection III, Power IV, Thorns II'
  1768. - '&3&l * &bSharpness IV, Looting II, Fortune II'
  1769. - '&3&l * &bKnockback I & Punch I'
  1770. - ''
  1771. - '&bStatus: %javascript_skylord%'
  1772. - '%javascript_lordbuy%'
  1773. left_click_commands:
  1774. - '[player] kit skylord'
  1775. right_click_commands:
  1776. - '[player] kit skylord'
  1777. '4':
  1778. material: 313
  1779. slot: 3
  1780. display_name: '&dSKYMAGE &7Kit'
  1781. lore:
  1782. - ''
  1783. - '&bIncludes:'
  1784. - '&75x Blocks of'
  1785. - '&3&l * &bLapis, Diamond, Redstone'
  1786. - '&3&l * &bCoal, Iron, Emerald & Gold'
  1787. - ''
  1788. - '&71x Enchantment Book of:'
  1789. - '&3&l * &bEffeciency V, Unbreaking III'
  1790. - '&3&l * &bProtection IV, Power V, Thorns III'
  1791. - '&3&l * &bSharpness V, Looting III & Fortune III'
  1792. - '&3&l * &bPunch II, Knockback II, Fire Aspect II'
  1793. - ''
  1794. - '&bStatus: %javascript_skymage%'
  1795. - '%javascript_magebuy%'
  1796. left_click_commands:
  1797. - '[player] kit skymage'
  1798. right_click_commands:
  1799. - '[player] kit skymage'
  1800. '5':
  1801. material: BRICK
  1802. slot: 4
  1803. display_name: '&6Tier I &7Kit'
  1804. lore:
  1805. - ''
  1806. - '&bIncludes:'
  1807. - '&3&l * &b32x Grass, 16x Sand'
  1808. - '&3&l * &b16x Gravel, 16x Glass'
  1809. - '&3&l * &b16x Log, 16x Sandstone'
  1810. - '&3&l * &b16x Quartz block, 16x Bricks'
  1811. - '&3&l * &b32x Stonebricks, 8x Glowstone'
  1812. - '&3&l * &b16x Endstone & 8x Obsidian'
  1813. - ''
  1814. - '&bStatus: %javascript_tier1%'
  1815. - '%javascript_tier1buy%'
  1816. left_click_commands:
  1817. - '[player] kit tier1'
  1818. right_click_commands:
  1819. - '[player] kit tier1'
  1820. '6':
  1821. material: GRASS
  1822. slot: 5
  1823. display_name: '&6Tier II &7Kit'
  1824. lore:
  1825. - ''
  1826. - '&bIncludes:'
  1827. - '&3&l * &b64x Grass, 32x Sand'
  1828. - '&3&l * &b32x Gravel, 32x Glass'
  1829. - '&3&l * &b32x Log, 32x Sandstone'
  1830. - '&3&l * &b32x Quartz block, 32x Bricks'
  1831. - '&3&l * &b64x Stonebricks, 16x Glowstone'
  1832. - '&3&l * &b32x Endstone, 1x Enchantment Table'
  1833. - '&3&l * &b16x Obsidian'
  1834. - ''
  1835. - '&bStatus: %javascript_tier2%'
  1836. - '%javascript_tier2buy%'
  1837. left_click_commands:
  1838. - '[player] kit tier2'
  1839. right_click_commands:
  1840. - '[player] kit tier2'
  1841. '7':
  1842. material: WOOD
  1843. slot: 6
  1844. display_name: '&6Tier III &7Kit'
  1845. lore:
  1846. - ''
  1847. - '&bIncludes:'
  1848. - '&3&l * &b64x Grass, 48x Sand'
  1849. - '&3&l * &b48x Gravel, 48x Glass'
  1850. - '&3&l * &b48x Log, 48x Sandstone'
  1851. - '&3&l * &b48x Quartz block, 48x Bricks'
  1852. - '&3&l * &b48x Stonebricks, 32x Glowstone'
  1853. - '&3&l * &b48x Endstone, 8x Bookshelves'
  1854. - '&3&l * &b2x Enchantment Table, 32x Obsidian'
  1855. - ''
  1856. - '&bStatus: %javascript_tier3%'
  1857. - '%javascript_tier3buy%'
  1858. left_click_commands:
  1859. - '[player] kit tier3'
  1860. right_click_commands:
  1861. - '[player] kit tier3'
  1862. '8':
  1863. material: SAND
  1864. slot: 7
  1865. display_name: '&6Tier IV &7Kit'
  1866. lore:
  1867. - ''
  1868. - '&bIncludes:'
  1869. - '&3&l * &b128x Grass, 64x Sand'
  1870. - '&3&l * &b64x Gravel, 64x Glass'
  1871. - '&3&l * &b64x Log, 64x Sandstone'
  1872. - '&3&l * &b64x Quartz block, 64x Bricks'
  1873. - '&3&l * &b64x Stonebricks, 48x Glowstone'
  1874. - '&3&l * &b64x Endstone, 16x Bookshelves'
  1875. - '&3&l * &b4x Enchantment Table, 48x Obsidian'
  1876. - ''
  1877. - '&bStatus: %javascript_tier4%'
  1878. - '%javascript_tier4buy%'
  1879. left_click_commands:
  1880. - '[player] kit tier4'
  1881. right_click_commands:
  1882. - '[player] kit tier4'
  1883. is:
  1884. menu_title: Island Panel
  1885. open_command:
  1886. - is
  1887. - island
  1888. - panel
  1889. size: 27
  1890. items:
  1891. '1':
  1892. material: 431
  1893. slot: 10
  1894. display_name: '&bTeleport to Island'
  1895. lore:
  1896. - '&7Teleport to your Island'
  1897. - '&b'
  1898. - '&7You can set this position'
  1899. - '&7on your island with &e/is sethome'
  1900. - ''
  1901. - '&eClick to execute: &7/Is go'
  1902. left_click_commands:
  1903. - '[player] is go'
  1904. right_click_commands:
  1905. - '[player] is go'
  1906. '2':
  1907. material: ANVIL
  1908. slot: 11
  1909. display_name: '&bIsland Upgrades'
  1910. lore:
  1911. - '&7Upgrade several aspects of your'
  1912. - '&7Island to have a maxed out one!'
  1913. - ''
  1914. - '&6Size Upgrades &8- &7Bigger border'
  1915. - '&6Team Upgrades &8- &7Increased team limit'
  1916. - '&6Home Upgrades &8- &7More homes'
  1917. - ''
  1918. - '&eClick to execute: &7/upgrades'
  1919. left_click_commands:
  1920. - '[openguimenu] upgrades'
  1921. right_click_commands:
  1922. - '[openguimenu] upgrades'
  1923. '3':
  1924. material: SIGN
  1925. slot: 12
  1926. display_name: '&bTeam List'
  1927. lore:
  1928. - '&7List your team''s members'
  1929. - '&b'
  1930. - '&eClick to execute: &7/Is team'
  1931. left_click_commands:
  1932. - '[player] is team'
  1933. right_click_commands:
  1934. - '[player] is team'
  1935. '4':
  1936. material: PAINTING
  1937. slot: 13
  1938. display_name: '&bTop Islands'
  1939. lore:
  1940. - '&7View the top islands on the server'
  1941. - '&b'
  1942. - '&7Listed by levels'
  1943. - '&7Increase levels by placing &cblocks'
  1944. - ''
  1945. - '&eClick to execute: &7/Is top'
  1946. left_click_commands:
  1947. - '[player] is top'
  1948. right_click_commands:
  1949. - '[player] is top'
  1950. '5':
  1951. material: DIAMOND
  1952. slot: 14
  1953. display_name: '&bQuests'
  1954. lore:
  1955. - '&7Complete quest to gain rewards.'
  1956. - '&b'
  1957. - '&7The person with the most quest'
  1958. - '&7points at the end of the month'
  1959. - '&7earns the &a&lSkyHero&7 rank!'
  1960. - ''
  1961. - '&eClick to execute: &7/quests'
  1962. left_click_commands:
  1963. - '[player] warp quests'
  1964. right_click_commands:
  1965. - '[player] warp quests'
  1966. '6':
  1967. material: GRASS
  1968. slot: 15
  1969. display_name: '&bIsland Themes'
  1970. lore:
  1971. - '&7Change how your island looks'
  1972. - ''
  1973. - '&7In order for you to change the biome'
  1974. - '&7you must be &e&lVIP &7or higher'
  1975. - ''
  1976. - '&eClick to execute: &7/Is biomes'
  1977. left_click_commands:
  1978. - '[player] is biomes'
  1979. right_click_commands:
  1980. - '[player] is biomes'
  1981. '7':
  1982. material: PAPER
  1983. slot: 16
  1984. display_name: '&bPlayer Warps'
  1985. lore:
  1986. - '&7Teleport to other Islands'
  1987. - ''
  1988. - '&7You can make a warp by placing'
  1989. - '&7a sign and writing &a[WELCOME]'
  1990. - '&7on the first line'
  1991. - ''
  1992. - '&eClick to execute: &7/Is warps'
  1993. left_click_commands:
  1994. - '[player] is warps'
  1995. right_click_commands:
  1996. - '[player] is warps'
  1997. '83':
  1998. material: 160
  1999. data: 15
  2000. slot: 2
  2001. display_name: '&f'
  2002. '70':
  2003. material: 160
  2004. data: 15
  2005. slot: 1
  2006. display_name: '&f'
  2007. '89':
  2008. material: 160
  2009. data: 15
  2010. slot: 0
  2011. display_name: '&f'
  2012. '8':
  2013. material: 160
  2014. data: 15
  2015. slot: 3
  2016. display_name: '&f'
  2017. '9':
  2018. material: 160
  2019. data: 15
  2020. slot: 4
  2021. display_name: '&f'
  2022. '10':
  2023. material: 160
  2024. data: 15
  2025. slot: 5
  2026. display_name: '&f'
  2027. '11':
  2028. material: 160
  2029. data: 15
  2030. slot: 6
  2031. display_name: '&f'
  2032. '12':
  2033. material: 160
  2034. data: 15
  2035. slot: 7
  2036. display_name: '&f'
  2037. '13':
  2038. material: 160
  2039. data: 15
  2040. slot: 8
  2041. display_name: '&f'
  2042. '14':
  2043. material: 160
  2044. data: 15
  2045. slot: 9
  2046. display_name: '&f'
  2047. '18':
  2048. material: 160
  2049. data: 15
  2050. slot: 17
  2051. display_name: '&f'
  2052. '19':
  2053. material: 160
  2054. data: 15
  2055. slot: 18
  2056. display_name: '&f'
  2057. '20':
  2058. material: 160
  2059. data: 15
  2060. slot: 19
  2061. display_name: '&f'
  2062. '21':
  2063. material: 160
  2064. data: 15
  2065. slot: 20
  2066. display_name: '&f'
  2067. '22':
  2068. material: 160
  2069. data: 15
  2070. slot: 21
  2071. display_name: '&f'
  2072. '23':
  2073. material: 160
  2074. data: 15
  2075. slot: 23
  2076. display_name: '&f'
  2077. '24':
  2078. material: BARRIER
  2079. slot: 22
  2080. display_name: '&bGenerator Manager'
  2081. lore:
  2082. - '&7Upgrade your cobble generator'
  2083. - '&b'
  2084. - '&f&lDefault:'
  2085. - '&e*&7 80% Stone'
  2086. - '&e*&7 10% Iron'
  2087. - '&e*&7 7% Gold'
  2088. - '&e*&7 2% Diamond'
  2089. - '&e*&7 1% Emerald'
  2090. - '&f'
  2091. - '&eClick to execute: &7/gen'
  2092. left_click_commands:
  2093. - '[openguimenu] generators'
  2094. right_click_commands:
  2095. - '[openguimenu] generators'
  2096. '25':
  2097. material: 160
  2098. data: 15
  2099. slot: 24
  2100. display_name: '&f'
  2101. '26':
  2102. material: 160
  2103. data: 15
  2104. slot: 25
  2105. display_name: '&f'
  2106. '27':
  2107. material: 160
  2108. data: 15
  2109. slot: 26
  2110. display_name: '&f'
  2111. '29':
  2112. material: 160
  2113. data: 15
  2114. slot: 12
  2115. display_name: '&f'
  2116. '30':
  2117. material: 160
  2118. data: 15
  2119. slot: 14
  2120. display_name: '&f'
  2121. stats:
  2122. menu_title: Profile Statistics
  2123. open_command:
  2124. - is stats
  2125. - stats
  2126. - statistics
  2127. - island stats
  2128. size: 27
  2129. items:
  2130. '1':
  2131. material: head;%player_name%
  2132. slot: 10
  2133. display_name: '&bHey&b, %player_name%'
  2134. lore:
  2135. - '&eThese are your statistics:'
  2136. - '&b'
  2137. - '&7Kills: &a%statistic_player_kills%'
  2138. - '&7Deaths: &a%statistic_deaths%'
  2139. - '&7Joins: &a%statistic_join_game%'
  2140. - '&7Time Played: &a%statistic_time_played%'
  2141. - ''
  2142. - '&fClick to close the menu'
  2143. left_click_commands:
  2144. - '[close]'
  2145. right_click_commands:
  2146. - '[close]'
  2147. '2':
  2148. material: BOOK
  2149. slot: 13
  2150. display_name: '&dTeam Information'
  2151. lore:
  2152. - '&eIsland''s team statistics:'
  2153. - '&b'
  2154. - '&7Team Size: &a%mvdw_askyblock_team_members%'
  2155. - '&7Leader: &a%mvdw_askyblock_island_owner%'
  2156. - '&7Island Level: &a%askyblock_level%'
  2157. - '&7Location: &aX: %mvdw_askyblock_island_blockx%, Y: %mvdw_askyblock_island_blocky%,
  2158. Z: %mvdw_askyblock_island_blockz%'
  2159. - ''
  2160. - '&fClick to close the menu'
  2161. left_click_commands:
  2162. - '[close]'
  2163. right_click_commands:
  2164. - '[close]'
  2165. '3':
  2166. material: COMPASS
  2167. slot: 16
  2168. display_name: '&cServer Information'
  2169. lore:
  2170. - '&eSkyblock Server:'
  2171. - '&b'
  2172. - '&7Online: &a%server_online%'
  2173. - '&7Unique Joins: &a%server_unique_joins%'
  2174. - '&7Server Uptime: &a%server_uptime%'
  2175. - ''
  2176. - '&fClick to close the menu'
  2177. left_click_commands:
  2178. - '[close]'
  2179. right_click_commands:
  2180. - '[close]'
  2181. '5':
  2182. material: 160
  2183. data: 15
  2184. slot: 0
  2185. display_name: '&f'
  2186. '6':
  2187. material: 160
  2188. data: 15
  2189. slot: 1
  2190. display_name: '&f'
  2191. '7':
  2192. material: 160
  2193. data: 15
  2194. slot: 2
  2195. display_name: '&f'
  2196. '8':
  2197. material: 160
  2198. data: 15
  2199. slot: 3
  2200. display_name: '&f'
  2201. '9':
  2202. material: 160
  2203. data: 15
  2204. slot: 4
  2205. display_name: '&f'
  2206. '10':
  2207. material: 160
  2208. data: 15
  2209. slot: 5
  2210. display_name: '&f'
  2211. '11':
  2212. material: 160
  2213. data: 15
  2214. slot: 6
  2215. display_name: '&f'
  2216. '12':
  2217. material: 160
  2218. data: 15
  2219. slot: 7
  2220. display_name: '&f'
  2221. '13':
  2222. material: 160
  2223. data: 15
  2224. slot: 8
  2225. display_name: '&f'
  2226. '14':
  2227. material: 160
  2228. data: 15
  2229. slot: 9
  2230. display_name: '&f'
  2231. '15':
  2232. material: 160
  2233. data: 15
  2234. slot: 11
  2235. display_name: '&f'
  2236. '16':
  2237. material: 160
  2238. data: 15
  2239. slot: 13
  2240. display_name: '&f'
  2241. '17':
  2242. material: 160
  2243. data: 15
  2244. slot: 15
  2245. display_name: '&f'
  2246. '18':
  2247. material: 160
  2248. data: 15
  2249. slot: 17
  2250. display_name: '&f'
  2251. '19':
  2252. material: 160
  2253. data: 15
  2254. slot: 18
  2255. display_name: '&f'
  2256. '20':
  2257. material: 160
  2258. data: 15
  2259. slot: 19
  2260. display_name: '&f'
  2261. '21':
  2262. material: 160
  2263. data: 15
  2264. slot: 20
  2265. display_name: '&f'
  2266. '22':
  2267. material: 160
  2268. data: 15
  2269. slot: 21
  2270. display_name: '&f'
  2271. '23':
  2272. material: 160
  2273. data: 15
  2274. slot: 22
  2275. display_name: '&f'
  2276. '24':
  2277. material: 160
  2278. data: 15
  2279. slot: 23
  2280. display_name: '&f'
  2281. '25':
  2282. material: 160
  2283. data: 15
  2284. slot: 24
  2285. display_name: '&f'
  2286. '26':
  2287. material: 160
  2288. data: 15
  2289. slot: 25
  2290. display_name: '&f'
  2291. '27':
  2292. material: 160
  2293. data: 15
  2294. slot: 26
  2295. display_name: '&f'
  2296. '28':
  2297. material: 160
  2298. data: 15
  2299. slot: 27
  2300. display_name: '&f'
  2301. '29':
  2302. material: 160
  2303. data: 15
  2304. slot: 12
  2305. display_name: '&f'
  2306. '30':
  2307. material: 160
  2308. data: 15
  2309. slot: 14
  2310. display_name: '&f'
  2311. help:
  2312. menu_title: Server Guide
  2313. open_command:
  2314. - island help
  2315. - is help
  2316. - help
  2317. - null: null
  2318. size: 27
  2319. items:
  2320. '1':
  2321. material: BED
  2322. slot: 10
  2323. display_name: '&bManagement Commands'
  2324. lore:
  2325. - '&7Listed as: Command - Description'
  2326. - '&b'
  2327. - '&6&l * &e/Is &7- Open Island Menu'
  2328. - '&6&l * &e/Is go &7- Directly teleport to island'
  2329. - '&6&l * &e/Is reset &7- Delete your island'
  2330. - '&6&l * &e/Is sethome &7- Set your island home loc.'
  2331. - '&6&l * &e/Is level &7- Check the island''s level'
  2332. - '&6&l * &e/Is expel &7- Expel a player from your island'
  2333. - '&6&l * &e/Is settings &7- Edit island settings'
  2334. - '&6&l * &e/Is biomes &7- Change your island biome'
  2335. - ''
  2336. - '&7(( &7&oClick to close the menu&7 ))'
  2337. left_click_commands:
  2338. - '[close]'
  2339. right_click_commands:
  2340. - '[close]'
  2341. '2':
  2342. material: DIAMOND_CHESTPLATE
  2343. slot: 13
  2344. display_name: '&dTeam Commands'
  2345. lore:
  2346. - '&7Listed as: Command - Description'
  2347. - '&b'
  2348. - '&6&l * &e/Is team &7- List team members'
  2349. - '&6&l * &e/Is invite &7- Invite a player to your island'
  2350. - '&6&l * &e/Is accept &7- Accept island invitation'
  2351. - '&6&l * &e/Is deny &7- Deny island invitation'
  2352. - '&6&l * &e/Is makeleader &7- Transfer ownership of island'
  2353. - '&6&l * &e/Is teamchat &7- Chat with your team only'
  2354. - '&6&l * &e/Is leave &7- Leave an island you are a member of'
  2355. - '&6&l * &e/Is kick &7- Kick a member from your island'
  2356. - '&6&l * &e/Is ban &7- Ban a player from your island'
  2357. - ''
  2358. - '&7(( &7&oClick to close the menu&7 ))'
  2359. left_click_commands:
  2360. - '[close]'
  2361. right_click_commands:
  2362. - '[close]'
  2363. '3':
  2364. material: MAP
  2365. slot: 16
  2366. display_name: '&aGeneral Commands'
  2367. lore:
  2368. - '&7Listed as: Command - Description'
  2369. - '&b'
  2370. - '&6&l * &e/Is top &7- Open Top Islands menu'
  2371. - '&6&l * &e/Is level <player> &7- Check level of a player'
  2372. - '&6&l * &e/Is warps &7- Open player warps menu'
  2373. - '&6&l * &e/Is warp <name> &7- Teleport to a player''s warp'
  2374. - ''
  2375. - '&7(( &7&oClick to close the menu&7 ))'
  2376. left_click_commands:
  2377. - '[close]'
  2378. right_click_commands:
  2379. - '[close]'
  2380. '5':
  2381. material: 160
  2382. data: 15
  2383. slot: 0
  2384. display_name: '&f'
  2385. '6':
  2386. material: 160
  2387. data: 15
  2388. slot: 1
  2389. display_name: '&f'
  2390. '7':
  2391. material: 160
  2392. data: 15
  2393. slot: 2
  2394. display_name: '&f'
  2395. '8':
  2396. material: 160
  2397. data: 15
  2398. slot: 3
  2399. display_name: '&f'
  2400. '9':
  2401. material: 160
  2402. data: 15
  2403. slot: 4
  2404. display_name: '&f'
  2405. '10':
  2406. material: 160
  2407. data: 15
  2408. slot: 5
  2409. display_name: '&f'
  2410. '11':
  2411. material: 160
  2412. data: 15
  2413. slot: 6
  2414. display_name: '&f'
  2415. '12':
  2416. material: 160
  2417. data: 15
  2418. slot: 7
  2419. display_name: '&f'
  2420. '13':
  2421. material: 160
  2422. data: 15
  2423. slot: 8
  2424. display_name: '&f'
  2425. '14':
  2426. material: 160
  2427. data: 15
  2428. slot: 9
  2429. display_name: '&f'
  2430. '15':
  2431. material: 160
  2432. data: 15
  2433. slot: 11
  2434. display_name: '&f'
  2435. '16':
  2436. material: 160
  2437. data: 15
  2438. slot: 13
  2439. display_name: '&f'
  2440. '17':
  2441. material: 160
  2442. data: 15
  2443. slot: 15
  2444. display_name: '&f'
  2445. '18':
  2446. material: 160
  2447. data: 15
  2448. slot: 17
  2449. display_name: '&f'
  2450. '19':
  2451. material: 160
  2452. data: 15
  2453. slot: 18
  2454. display_name: '&f'
  2455. '20':
  2456. material: 160
  2457. data: 15
  2458. slot: 19
  2459. display_name: '&f'
  2460. '21':
  2461. material: 160
  2462. data: 15
  2463. slot: 20
  2464. display_name: '&f'
  2465. '22':
  2466. material: 160
  2467. data: 15
  2468. slot: 21
  2469. display_name: '&f'
  2470. '23':
  2471. material: 160
  2472. data: 15
  2473. slot: 22
  2474. display_name: '&f'
  2475. '24':
  2476. material: 160
  2477. data: 15
  2478. slot: 23
  2479. display_name: '&f'
  2480. '25':
  2481. material: 160
  2482. data: 15
  2483. slot: 24
  2484. display_name: '&f'
  2485. '26':
  2486. material: 160
  2487. data: 15
  2488. slot: 25
  2489. display_name: '&f'
  2490. '27':
  2491. material: 160
  2492. data: 15
  2493. slot: 26
  2494. display_name: '&f'
  2495. '28':
  2496. material: 160
  2497. data: 15
  2498. slot: 27
  2499. display_name: '&f'
  2500. '29':
  2501. material: 160
  2502. data: 15
  2503. slot: 12
  2504. display_name: '&f'
  2505. '30':
  2506. material: 160
  2507. data: 15
  2508. slot: 14
  2509. display_name: '&f'
  2510. warps:
  2511. menu_title: Warps Panel
  2512. open_command:
  2513. - warp
  2514. - warps
  2515. - ewarp
  2516. - ewarps
  2517. size: 36
  2518. items:
  2519. '1':
  2520. material: ENDER_CHEST
  2521. slot: 11
  2522. display_name: '&e&nServer Shop'
  2523. enchantments:
  2524. - SILK_TOUCH;1
  2525. hide_attributes: true
  2526. hide_enchantments: true
  2527. hide_effects: true
  2528. lore:
  2529. - '&7Physically buy or sell items'
  2530. - '&7inside this warp'
  2531. - '&7'
  2532. - '&bStatus: %javascript_shop%'
  2533. - '&7Right-Click to &e&lOPEN'
  2534. - '&7Left-Click to &e&lTELEPORT'
  2535. left_click_commands:
  2536. - '[player] warp shop'
  2537. right_click_commands:
  2538. - '[player] shopgui'
  2539. '2':
  2540. material: CHEST
  2541. slot: 12
  2542. display_name: '&e&nCrates'
  2543. enchantments:
  2544. - SILK_TOUCH;1
  2545. hide_attributes: true
  2546. hide_enchantments: true
  2547. hide_effects: true
  2548. lore:
  2549. - '&7Redeem or preview the'
  2550. - '&7different crates here'
  2551. - '&7'
  2552. - '&bStatus: %javascript_crates%'
  2553. - '&7Right-Click to &e&lTELEPORT'
  2554. left_click_commands:
  2555. - '[player] warp crates'
  2556. right_click_commands:
  2557. - '[player] warp crates'
  2558. '3':
  2559. material: GRASS
  2560. slot: 13
  2561. display_name: '&e&nUpgrades'
  2562. enchantments:
  2563. - SILK_TOUCH;1
  2564. hide_attributes: true
  2565. hide_enchantments: true
  2566. hide_effects: true
  2567. lore:
  2568. - '&7Upgrade several aspects'
  2569. - '&7of your island'
  2570. - '&7'
  2571. - '&bStatus: %javascript_upgrades%'
  2572. - '&7Right-Click to &e&lOPEN'
  2573. - '&7Left-Click to &e&lTELEPORT'
  2574. left_click_commands:
  2575. - '[player] warp upgrades'
  2576. right_click_commands:
  2577. - '[player] upgrades'
  2578. '4':
  2579. material: COMPASS
  2580. slot: 14
  2581. display_name: '&e&nStats'
  2582. enchantments:
  2583. - SILK_TOUCH;1
  2584. hide_attributes: true
  2585. hide_enchantments: true
  2586. hide_effects: true
  2587. lore:
  2588. - '&7Teleport to the stats NPC'
  2589. - '&7to check some interesting info'
  2590. - '&7'
  2591. - '&bStatus: %javascript_stats%'
  2592. - '&7Right-Click to &e&lOPEN'
  2593. - '&7Left-Click to &e&lTELEPORT'
  2594. left_click_commands:
  2595. - '[player] warp stats'
  2596. right_click_commands:
  2597. - '[player] dm open stats -s'
  2598. '5':
  2599. material: DIAMOND_BLOCK
  2600. slot: 15
  2601. display_name: '&e&nBig Papa'
  2602. enchantments:
  2603. - SILK_TOUCH;1
  2604. hide_attributes: true
  2605. hide_enchantments: true
  2606. hide_effects: true
  2607. lore:
  2608. - '&7Teleport to Big Papa to'
  2609. - '&7list the donator ranks perks'
  2610. - '&7'
  2611. - '&bStatus: %javascript_papa%'
  2612. - '&7Right-Click to &e&lOPEN'
  2613. - '&7Left-Click to &e&lTELEPORT'
  2614. left_click_commands:
  2615. - '[player] warp papa'
  2616. right_click_commands:
  2617. - '[player] dm open ranks -s'
  2618. '6':
  2619. material: ENCHANTED_BOOK
  2620. slot: 21
  2621. display_name: '&e&nGuide'
  2622. enchantments:
  2623. - SILK_TOUCH;1
  2624. hide_attributes: true
  2625. hide_enchantments: true
  2626. hide_effects: true
  2627. lore:
  2628. - '&7Open a descriptive list'
  2629. - '&7of island commands'
  2630. - '&7'
  2631. - '&bStatus: %javascript_guide%'
  2632. - '&7Right-Click to &e&lOPEN'
  2633. - '&7Left-Click to &e&lTELEPORT'
  2634. left_click_commands:
  2635. - '[player] warp guide'
  2636. right_click_commands:
  2637. - '[player] dm open help -s'
  2638. '7':
  2639. material: MOB_SPAWNER
  2640. slot: 22
  2641. display_name: '&e&nSpawners'
  2642. enchantments:
  2643. - SILK_TOUCH;1
  2644. hide_attributes: true
  2645. hide_enchantments: true
  2646. hide_effects: true
  2647. lore:
  2648. - '&7Teleport to the spawner'
  2649. - '&7dealer to buy spawners'
  2650. - '&7'
  2651. - '&bStatus: %javascript_spawners%'
  2652. - '&7Right-Click to &e&lOPEN'
  2653. - '&7Left-Click to &e&lTELEPORT'
  2654. left_click_commands:
  2655. - '[player] warp spawners'
  2656. right_click_commands:
  2657. - '[player] spawnershop'
  2658. '11':
  2659. material: 160
  2660. data: 15
  2661. slot: 0
  2662. display_name: '&e'
  2663. '11657':
  2664. material: 160
  2665. data: 15
  2666. slot: 23
  2667. display_name: '&e'
  2668. '14441':
  2669. material: 160
  2670. data: 15
  2671. slot: 20
  2672. display_name: '&e'
  2673. '1441':
  2674. material: 160
  2675. data: 15
  2676. slot: 24
  2677. display_name: '&e'
  2678. '12':
  2679. material: 160
  2680. data: 15
  2681. slot: 1
  2682. display_name: '&e'
  2683. '13':
  2684. material: 160
  2685. data: 15
  2686. slot: 2
  2687. display_name: '&e'
  2688. '14':
  2689. material: 160
  2690. data: 15
  2691. slot: 3
  2692. display_name: '&e'
  2693. '15':
  2694. material: 160
  2695. data: 15
  2696. slot: 4
  2697. display_name: '&e'
  2698. '16':
  2699. material: 160
  2700. data: 15
  2701. slot: 5
  2702. display_name: '&e'
  2703. '17':
  2704. material: 160
  2705. data: 15
  2706. slot: 6
  2707. display_name: '&e'
  2708. '18':
  2709. material: 160
  2710. data: 15
  2711. slot: 7
  2712. display_name: '&e'
  2713. '19':
  2714. material: 160
  2715. data: 15
  2716. slot: 8
  2717. display_name: '&e'
  2718. '20':
  2719. material: 160
  2720. data: 15
  2721. slot: 9
  2722. display_name: '&e'
  2723. '21':
  2724. material: 160
  2725. data: 15
  2726. slot: 10
  2727. display_name: '&e'
  2728. '22':
  2729. material: 160
  2730. data: 15
  2731. slot: 18
  2732. display_name: '&e'
  2733. '23':
  2734. material: 160
  2735. data: 15
  2736. slot: 19
  2737. display_name: '&e'
  2738. '24':
  2739. material: 160
  2740. data: 15
  2741. slot: 25
  2742. display_name: '&e'
  2743. '25':
  2744. material: 160
  2745. data: 15
  2746. slot: 26
  2747. display_name: '&e'
  2748. '26':
  2749. material: 160
  2750. data: 15
  2751. slot: 27
  2752. display_name: '&e'
  2753. '27':
  2754. material: 160
  2755. data: 15
  2756. slot: 28
  2757. display_name: '&e'
  2758. '28':
  2759. material: 160
  2760. data: 15
  2761. slot: 29
  2762. display_name: '&e'
  2763. '29':
  2764. material: 160
  2765. data: 15
  2766. slot: 30
  2767. display_name: '&e'
  2768. '30':
  2769. material: 160
  2770. data: 15
  2771. slot: 31
  2772. display_name: '&e'
  2773. '31':
  2774. material: 160
  2775. data: 15
  2776. slot: 32
  2777. display_name: '&e'
  2778. '32':
  2779. material: 160
  2780. data: 15
  2781. slot: 33
  2782. display_name: '&e'
  2783. '33':
  2784. material: 160
  2785. data: 15
  2786. slot: 34
  2787. display_name: '&e'
  2788. '34':
  2789. material: 160
  2790. data: 15
  2791. slot: 35
  2792. display_name: '&e'
  2793. '35':
  2794. material: 160
  2795. data: 15
  2796. slot: 36
  2797. display_name: '&e'
  2798. '36':
  2799. material: 160
  2800. data: 15
  2801. slot: 16
  2802. display_name: '&e'
  2803. '37':
  2804. material: 160
  2805. data: 15
  2806. slot: 17
  2807. display_name: '&e'
Add Comment
Please, Sign In to add comment