Advertisement
Guest User

Untitled

a guest
Apr 5th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.56 KB | None | 0 0
  1. # DeluxeMenus 1.4.1 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. # click_menu_options.crouch_to_open: <true/false>
  7. # Should players need to sneak to open a click menu
  8. #
  9. # ==============================================================
  10. # Click menu configuration:
  11. #
  12. # You can create as many click menus you like.
  13. # Click menus are the only menus that require a priority set for each menu.
  14. # The highest priority menu you have permission for will be applied when you click a player.
  15. # Highest priority is 1, Lowest priority is 2147483647
  16. # Players must have permission for a click menu to open one!
  17. # All click menu permissions default to false so this even applies to Ops.
  18. # Permission for a click menu is: deluxemenus.clickmenu.<menuName>
  19. # Permission to open a click menu by command is: deluxemenus.clickmenucommand
  20. #
  21. # Click menus configuration layout:
  22. #
  23. # click_menus:
  24. # <menuName>:
  25. # menu_title: <title of menu goes here>
  26. # priority: <priority of this menu>
  27. # size: <size of this menu, increments of 9, max size is 54>
  28. # items:
  29. # <item identifier>:
  30. # material: <name or id>
  31. # data: <integer, used for data values for wool etc>
  32. # amount: <amount of this item to show>
  33. # slot: <slot number to put this item, slots start at 0 and end at 53 for a size 54 inventory>
  34. # priority: <this is used if you have multiple items set for the same slot>
  35. # permission: <the lowest priority item a player has permission for ex: 1, will be shown>
  36. # display_name: <display name to show for this item>
  37. # lore:
  38. # - 'placeholders can be used in the name and lore'
  39. # - '%viewer% shows the menu viewers name'
  40. # - '%<any placeholder from pAPI>% shows the targets values'
  41. # click_commands:
  42. # - '[player] runs this command as a player'
  43. # - '[player] tpa %player%'
  44. # - '[console] runs this command from the console'
  45. # - '[console] ban %player%'
  46. # - '[connect] connects the viewer to the specified bungee server'
  47. # - '[connect] Hub'
  48. # - '[close] closes the click menu'
  49. # - '[close]'
  50. #
  51. # You do not need to specify item options that you don't use!
  52. # The only required entries for a click menu item to be valid are:
  53. #
  54. # A valid material
  55. # A valid slot
  56. #
  57. # Every item in the items list must have a unique <item identifier>
  58. #
  59. # ==============================================================
  60. #
  61. # PER ITEM PERMISSION AND PRIORITY INFO:
  62. #
  63. # Per item permissions and priorities are optional.
  64. # High priority = 1, Lowest priority = 2147483647.
  65. # This allows you to show different items for a specific menu slot depending on the highest priority
  66. # item permission a player has. This makes your menus very dynamic :)
  67. #
  68. # You CAN NOT specify a permission without a priority!
  69. # You CAN specify a priority without a permission.
  70. # You should always create a low priority item without a permission which will act as the no permission
  71. # item if a player does not have permission for any of the items that require permission, otherwise
  72. # no item will be set in the slot if a player does not have permission for any of the permission items.
  73. #
  74. # ==============================================================
  75. #
  76. # GUI menu configuration:
  77. #
  78. # As of DeluxeMenus v1.4.1 GUI menus are a bit more advanced and
  79. # contain many more features than click menus. Most of these features will be implemented in click menus soon!
  80. #
  81. # You can create as many GUI menus you like.
  82. # Every menu name must be unique. There can not be duplicate menu names!
  83. # Players must have permission for a GUI menu to open one!
  84. # Ops should automatically have permission for any GUI menu.
  85. #
  86. # Permission to open a GUI menu is: deluxemenus.guimenu.<menuName>
  87. #
  88. # You specify the command which opens the GUI menu. Make sure this command
  89. # does not conflict with any existing commands on your server!
  90. # A GUI menu without an open command specified will not be loaded!
  91. #
  92. # GUI menus configuration layout:
  93. #
  94. # gui_menus:
  95. # <menuName>:
  96. # menu_title:
  97. # - '<title of menu goes here>'
  98. # - '<If using 1.8 you can specify many menu title frames and create animations>'
  99. # - '<in order for animations to work you must specify a menu_title_update_interval: ##>'
  100. # menu_title_update_interval: <amount of ticks to change title frames ex: 10, this is only needed if you have multiple frames>
  101. # command: <command to open this menu goes here>
  102. # size: <size of this menu, increments of 9, max size is 54>
  103. # update_interval: <time in seconds this gui should update for a player if an item is set to uodate placeholders>
  104. # items:
  105. # <item identifier>:
  106. # material: <name or id, for player heads use the format 'head;<players name/%player_name%>'>
  107. # data: <integer, used for data values for wool etc>
  108. # amount: <amount of this item to show>
  109. # slot: <slot number to put this item, slots start at 0 and end at 53 for a size 54 inventory>
  110. # priority: <this is used if you have multiple items set for the same slot>
  111. # view_requirement: <the lowest priority item a player meets this requirement for ex: 1, will be shown>
  112. # update: <true/false if this item should update placeholders on the interval set for the gui menu this item is in>
  113. # hide_attributes: <true/false if this item should display item attributes>
  114. # hide_enchantments: <true/false if this item should display item enchantment / level> (useful for 'enchantment glow' items)
  115. # hide_effects: <true/false if this item should display item effect attributes>
  116. # banner_meta: (this is used if you want to display a custom banner with specific patterns)
  117. # - <dyecolor>;<PatternType> (more information on where to find DyeColor and PatternType names below)
  118. # - 'RED;BASE'
  119. # - 'WHITE;CREEPER'
  120. # display_name: <display name to show for this item>
  121. # lore:
  122. # - 'placeholders can be used in the name and lore'
  123. # - '%<any placeholder from Papi>% shows the viewer values'
  124. # enchantments: valid enchantment names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  125. # - '<ENCHANTMENT>;<LEVEL>'
  126. # - 'SILK_TOUCH;1'
  127. # left_click_commands:
  128. # - '[close]'
  129. # right_click_commands:
  130. # - '[player] spawn'
  131. #
  132. #
  133. # You can specify if a GUI menu should be loaded from another file:
  134. #
  135. # gui_menus:
  136. # <menuName>:
  137. # file: 'menuName.yml'
  138. #
  139. # This allows you to keep your config clean and not have tons of GUI menus cluttering it.
  140. # The file format the GUI menu is loaded from must end in .yml
  141. # GUI menus loaded from other configuration files must follow a specific format as well...
  142. # 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.
  143. # After that is done, use /dm reload and DeluxeMenus will create a folder and file specific to the GUI menu you specified.
  144. # If the file specified is created by DeluxeMenus (because it did not exist), a default GUI menu layout will be saved to that file.
  145. # From here you can edit it to your liking and use /dm reload to update your GUI menu!
  146. #
  147. # This loading from external config files is only available for gui menus and will not work for click menus yet....
  148. #
  149. # banner_meta must be listed with a specific format:
  150. # banner_meta:
  151. # - <DyeColor>;<PatternType>
  152. #
  153. # Valid DyeColor names can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/DyeColor.html
  154. # Valid PatternTypes can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/banner/PatternType.html
  155. # ==============================================================
  156. #
  157. # Click requirement information
  158. #
  159. # You can now add 'click requirements' to left and right click commands!'
  160. # These are defined per item and must follow a specific format:
  161. #
  162. # 'item_one':
  163. # material: DIAMOND
  164. # slot: 3
  165. # left_click_commands:
  166. # - '[close]'
  167. # - '[message] You were charged 100 dollars for clicking that item!'
  168. # - '[console] eco take %player% 100'
  169. # left_click_requirement:
  170. # expression: '%vaulteco_balance% > 100'
  171. # deny_commands:
  172. # - '[close]'
  173. # - '[message] &cYou dont have 100 dollars to click that item'
  174. # right_click_commands:
  175. # - '[close]'
  176. # - '[message] You had permission to click that item!'
  177. # right_click_requirement:
  178. # expression: 'BukkitPlayer.hasPermission("some.permission.toclick")'
  179. # deny_commands:
  180. # - '[close]'
  181. # - '[message] &cYou dont have permission to click that item'
  182. #
  183. # Every left/right_click_requirement MUST have an expression specified that would return a boolean (true/false)
  184. # These expressions must also follow JavaScript format as they are all javascript based!
  185. #
  186. # deny_commands: are optional and will be executed if the expression returns false.
  187. # You may use placeholders in your Javascript expressions to evaluate if the player meets the requirement or not.
  188. # 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
  189. #
  190. # BukkitPlayer - references the Player object your expression is evaluating.
  191. # BukkitServer - references Bukkit.getServer() in the Bukkit API.
  192. #
  193. # The choice to use this system to evaluate if a player meets requirements to click an item was an easy choice.
  194. # This way I do not have to hook into every plugin to check if a player meets the requirement to click an item successfully.
  195. # You can simply use placeholders, or the keywords provided to give you access to the Player and Server objects.
  196. # If you want to check if a player has enough money, simply use an expression like so:
  197. #
  198. # expression: '%vaulteco_balance% >= 100' (checks if players balance is greater than or equal to 100)
  199. # If you want to charge the player, simply run the economy command to take the amount from the players balance in your click_commands
  200. # which will be executed if the player meets the requirement!
  201. # ==============================================================
  202. #
  203. # View requirement information
  204. #
  205. # You can add a 'view requirement' to an item if it has a priority value set for it
  206. # The view requirement has replaced the 'permission' entry for items
  207. # This allows you to specify a specific requirement in javascript for the item to be shown
  208. # In order to use view requirements, the item must have a priority value and a valid javascript expression
  209. # that returns true or false.
  210. #
  211. # 'item_one':
  212. # material: DIAMOND
  213. # slot: 3
  214. # priority: 1
  215. # view_requirement: '%vaulteco_balance% > 100'
  216. # 'item_two':
  217. # material: IRON_INGOT
  218. # slot: 3
  219. # priority: 2
  220. # view_requirement: 'BukkitPlayer.hasPermission("some.permission")'
  221. # 'item_three':
  222. # material: STONE
  223. # slot: 3
  224. # priority: 3
  225. #
  226. # 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.
  227. # 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
  228. # 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
  229. # a higher priority.
  230. #
  231. # You may use placeholders in your Javascript expressions to evaluate if the player meets the requirement or not.
  232. # 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
  233. #
  234. # BukkitPlayer - references the Player object your expression is evaluating.
  235. # BukkitServer - references Bukkit.getServer() in the Bukkit API.
  236. #
  237. # The choice to use this system to evaluate if a player meets requirements to click an item was an easy choice.
  238. # This way I do not have to hook into every plugin to check if a player meets the requirement to click an item successfully.
  239. # You can simply use placeholders, or the keywords provided to give you access to the Player and Server objects.
  240. # If you want to check if a player has enough money, simply use an expression like so:
  241. #
  242. # view_requirement: '%vaulteco_balance% >= 100' (checks if players balance is greater than or equal to 100)
  243. # ==============================================================
  244. #
  245. #
  246. # You do not need to specify item options that you don't use!
  247. # The only required entries for a gui menu item to be valid are:
  248. #
  249. # A valid material
  250. # A valid slot
  251. #
  252. # Every item in the items list must have a unique <item identifier>
  253. #
  254. # If you choose to update placeholders for a specific item, you must specify update_interval: <time>
  255. # in the GUI menu options for the specific GUI menu.
  256. # Only GUI menus with at least one item that has update: true will update those specific items placeholders.
  257. #
  258. # Every click_command must start with a specific identifier to know what to do for the execution.
  259. # Valid click_command identifiers:
  260. #
  261. # [console] - Execute a command from the console
  262. # Usage: - '[console] <command with no slash>'
  263. #
  264. # [player] - Execute a command for the menu viewer
  265. # Usage: - '[player] <command with no slash>'
  266. #
  267. # [message] - Send a message to the menu viewer
  268. # Usage: - [message] <message to send to the player
  269. #
  270. # [close] - Close the viewers open menu
  271. # Usage: - '[close]
  272. #
  273. # [openguimenu] - Open a GUI menu (can only be used in GUI menu click_commands)
  274. # Usage: - '[openguimenu] <guiMenuName>'
  275. #
  276. # [openclickmenu] - Open a different click menu for the viewer and target (can only be used in click menu click_commands)
  277. # Usage: - '[openclickmenu] <clickMenuName>'
  278. #
  279. # [connect] - Connect to the specified bungee server
  280. # Usage: - '[connect] <serverName>'
  281. #
  282. # [commandevent] - Fire a PlayerCommandPreprocessEvent for commands that do not use the bukkit command system
  283. # Usage: - '[commandevent] <command with no slash>'
  284. #
  285. #
  286. # A NOTE WHEN EDITING THIS OR ANY DeluxeMenus CONFIGURATION FILE:
  287. # This config is sensitive to yaml formatting errors
  288. # KEEP A BACKUP WHEN EDITING YOUR FILE BEFORE UPLOADING TO YOUR SERVER!!!
  289. # Make sure every String you modify or add is enclosed in 'apostrophes
  290. check_updates: true
  291. click_menu_options:
  292. sneak_to_open: true
  293. click_menus:
  294. example:
  295. menu_title: '&aExample menu'
  296. priority: 1
  297. size: 9
  298. items:
  299. '1':
  300. material: DIAMOND_BLOCK
  301. data: 0
  302. amount: 1
  303. slot: 0
  304. display_name: '&aHey &f%viewer%'
  305. lore:
  306. - '&aYou opened a click menu'
  307. - '&afor player: &f%player_name%'
  308. click_commands:
  309. - '[close]'
  310. '2':
  311. material: 368
  312. data: 0
  313. amount: 1
  314. slot: 1
  315. priority: 1
  316. permission: examplemenu.item.teleport
  317. display_name: '&bTeleport to player'
  318. lore:
  319. - '&bClick to teleport to player &f%player_name%'
  320. click_commands:
  321. - '[player] tp %player_name%'
  322. - '[close]'
  323. '3':
  324. material: 381
  325. data: 0
  326. amount: 1
  327. slot: 1
  328. priority: 2
  329. permission: examplemenu.item.tpa
  330. display_name: '&bRequest teleport to player'
  331. lore:
  332. - '&bClick to request to'
  333. - '&bteleport to &f%player_name%'
  334. click_commands:
  335. - '[player] tpa %player_name%'
  336. - '[close]'
  337. gui_menus:
  338. Warps:
  339. menu_title: '&7[&a&lMelon&7] &8» &aWarps'
  340. open_command: warp
  341. size: 54
  342. items:
  343. '1':
  344. material: stone
  345. slot: 0
  346. display_name: '&7[&c&lA&7] &7Mine'
  347. lore:
  348. - '&aClick to teleport!'
  349. - '&f&nCost: Free!'
  350. left_click_commands:
  351. - '[player] warp A'
  352. '2':
  353. material: stone
  354. slot: 1
  355. display_name: '&7[&6&lB&7] &7Mine'
  356. lore:
  357. - '&aClick to teleport!'
  358. - '&f&nCost: 50,000 (50k)'
  359. left_click_commands:
  360. - '[player] warp B'
  361. '3':
  362. material: stone
  363. slot: 2
  364. display_name: '&7[&e&lC&7] &7Mine'
  365. lore:
  366. - '&aClick to teleport!'
  367. - '&f&nCost: 80,000 (80k)'
  368. left_click_commands:
  369. - '[player] warp C'
  370. '4':
  371. material: stone
  372. slot: 3
  373. display_name: '&7[&a&lD&l&7] &7Mine'
  374. lore:
  375. - '&aClick to teleport!'
  376. - '&f&nCost: 100,000 (100k)'
  377. left_click_commands:
  378. - '[player] warp D'
  379. '5':
  380. material: stone
  381. slot: 4
  382. display_name: '&7[&2&lE&7] &7Mine'
  383. lore:
  384. - '&aClick to teleport!'
  385. - '&f&nCost: 155,000 (155k)'
  386. left_click_commands:
  387. - '[player] warp E'
  388. '6':
  389. material: coal_ore
  390. slot: 5
  391. display_name: '&7[&1&lF&7] &7Mine'
  392. lore:
  393. - '&aClick to teleport!'
  394. - '&f&nCost: 250,000 (250k)'
  395. left_click_commands:
  396. - '[player] warp F'
  397. '7':
  398. material: coal_ore
  399. slot: 6
  400. display_name: '&7[&3&lG&7] &7Mine'
  401. lore:
  402. - '&aClick to teleport!'
  403. - '&f&nCost: 450,000 (450k)'
  404. left_click_commands:
  405. - '[player] warp G'
  406. '8':
  407. material: coal_ore
  408. slot: 7
  409. display_name: '&7[&b&lH&7] &7Mine'
  410. lore:
  411. - '&aClick to teleport!'
  412. - '&f&nCost: 600,000 (600k)'
  413. left_click_commands:
  414. - '[player] warp H'
  415. '9':
  416. material: coal_ore
  417. slot: 8
  418. display_name: '&7[&d&lI&7] &7Mine'
  419. lore:
  420. - '&aClick to teleport!'
  421. - '&f&nCost: 900,000 (900k)'
  422. left_click_commands:
  423. - '[player] warp I'
  424. '10':
  425. material: coal_ore
  426. slot: 9
  427. display_name: '&7[&5&lJ&7] &7Mine'
  428. lore:
  429. - '&aClick to teleport!'
  430. - '&f&nCost: 1,200,000 (1.2m)'
  431. left_click_commands:
  432. - '[player] warp J'
  433. '11':
  434. material: iron_ore
  435. slot: 10
  436. display_name: '&7[&f&lK&7] &7Mine'
  437. lore:
  438. - '&aClick to teleport!'
  439. - '&f&nCost: 2,500,000 (2.5m)'
  440. left_click_commands:
  441. - '[player] warp K'
  442. '12':
  443. material: iron_ore
  444. slot: 11
  445. display_name: '&7[&7&lL&7] &7Mine'
  446. lore:
  447. - '&aClick to teleport!'
  448. - '&f&nCost: 4,000,000 (4m)'
  449. left_click_commands:
  450. - '[player] warp L'
  451. '13':
  452. material: iron_ore
  453. slot: 12
  454. display_name: '&7[&8&lM&7] &7Mine'
  455. lore:
  456. - '&aClick to teleport!'
  457. - '&f&nCost: 6,500,000 (6.5m)'
  458. left_click_commands:
  459. - '[player] warp M'
  460. '14':
  461. material: iron_ore
  462. slot: 13
  463. display_name: '&7[&c&lN&7] &7Mine'
  464. lore:
  465. - '&aClick to teleport!'
  466. - '&f&nCost: 10,000,000 (10m)'
  467. left_click_commands:
  468. - '[player] warp N'
  469. '15':
  470. material: iron_ore
  471. slot: 14
  472. display_name: '&7[&6&lO&7] &7Mine'
  473. lore:
  474. - '&aClick to teleport!'
  475. - '&f&nCost: 17,500,000 (17.5m)'
  476. left_click_commands:
  477. - '[player] warp O'
  478. '16':
  479. material: gold_ore
  480. slot: 15
  481. display_name: '&7[&f&ki&e&lP&f&ki&7] &7Mine'
  482. lore:
  483. - '&aClick to teleport!'
  484. - '&f&nCost: 25,000,000 (25m)'
  485. left_click_commands:
  486. - '[player] warp P'
  487. '17':
  488. material: gold_ore
  489. slot: 16
  490. display_name: '&7[&f&ki&a&lQ&f&ki&7] &7Mine'
  491. lore:
  492. - '&aClick to teleport!'
  493. - '&f&nCost: 50,000,000 (50m)'
  494. left_click_commands:
  495. - '[player] warp Q'
  496. '18':
  497. material: gold_ore
  498. slot: 17
  499. display_name: '&7[&f&ki&2&lR&f&ki&7] &7Mine'
  500. lore:
  501. - '&aClick to teleport!'
  502. - '&f&nCost: 95,000,000 (95m)'
  503. left_click_commands:
  504. - '[player] warp R'
  505. '19':
  506. material: gold_ore
  507. slot: 20
  508. display_name: '&7[&f&ki&1&lS&f&ki&7] &7Mine'
  509. lore:
  510. - '&aClick to teleport!'
  511. - '&f&nCost: 175,000,000 (175m)'
  512. left_click_commands:
  513. - '[player] warp S'
  514. '20':
  515. material: gold_ore
  516. slot: 21
  517. display_name: '&7[&f&ki&3&lT&f&ki&7] &7Mine'
  518. lore:
  519. - '&aClick to teleport!'
  520. - '&f&nCost: 300,000,000 (300m)'
  521. left_click_commands:
  522. - '[player] warp T'
  523. '21':
  524. material: diamond_ore
  525. slot: 22
  526. display_name: '&7[&f&ki&b&lU&f&ki&7] &7Mine'
  527. lore:
  528. - '&aClick to teleport!'
  529. - '&f&nCost: 500,000,000 (500m)'
  530. left_click_commands:
  531. - '[player] warp U'
  532. '22':
  533. material: diamond_ore
  534. slot: 23
  535. display_name: '&7[&f&ki&d&lV&f&ki&7] &7Mine'
  536. lore:
  537. - '&aClick to teleport!'
  538. - '&f&nCost: 1,000,000,000 (1b)'
  539. left_click_commands:
  540. - '[player] warp V'
  541. '23':
  542. material: diamond_ore
  543. slot: 24
  544. display_name: '&7[&f&ki&5&lW&f&ki&7] &7Mine'
  545. lore:
  546. - '&aClick to teleport!'
  547. - '&f&nCost: 2,500,000,000 (2.5b)'
  548. left_click_commands:
  549. - '[player] warp W'
  550. '24':
  551. material: gold_block
  552. slot: 30
  553. display_name: '&7[&f&k&li&a&l&nX&f&k&li&7] &7Mine'
  554. lore:
  555. - '&aClick to teleport!'
  556. - '&f&nCost: 10,000,000,000 (10b)'
  557. left_click_commands:
  558. - '[player] warp X'
  559. '25':
  560. material: diamond_block
  561. slot: 31
  562. display_name: '&7[&f&k&li&a&l&nY&f&k&li&7] &7Mine'
  563. lore:
  564. - '&aClick to teleport!'
  565. - '&f&nCost: 25,000,000,000 (25b)'
  566. left_click_commands:
  567. - '[player] warp Y'
  568. '26':
  569. material: emerald_block
  570. slot: 32
  571. display_name: '&7[&f&k&li&a&l&nZ&f&k&li&7] &7Mine'
  572. lore:
  573. - '&aClick to teleport!'
  574. - '&f&nCost: 50,000,000,000 (50b)'
  575. left_click_commands:
  576. - '[player] warp Z'
  577. '27':
  578. material: beacon
  579. slot: 40
  580. display_name: '&7[&2&k&li&a&l&nFree&2&k&li&7] &7Mine'
  581. lore:
  582. - '&aClick to teleport!'
  583. - '&f&nCost: 100,000,000,000 (100b)'
  584. left_click_commands:
  585. - '[player] warp Free'
  586. '28':
  587. material: coal_block
  588. slot: 47
  589. display_name: '&f&lASTRONAUT &bPremium Mine'
  590. lore:
  591. - '&aClick to teleport!'
  592. - '&c&nRequired Rank: Astronaut'
  593. left_click_commands:
  594. - '[player] warp Astronaut'
  595. '29':
  596. material: iron_block
  597. slot: 48
  598. display_name: '&5&lCELESTIAL &bPremium Mine'
  599. lore:
  600. - '&aClick to teleport!'
  601. - '&c&nRequired Rank: Celestial'
  602. left_click_commands:
  603. - '[player] warp Celestial'
  604. '30':
  605. material: gold_block
  606. slot: 49
  607. display_name: '&b&lCOSMIC &bPremium Mine'
  608. lore:
  609. - '&aClick to teleport!'
  610. - '&c&nRequired Rank: Cosmic'
  611. left_click_commands:
  612. - '[player] warp Cosmic'
  613. '31':
  614. material: diamond_block
  615. slot: 50
  616. display_name: '&6&lNOVA &bPremium Mine'
  617. lore:
  618. - '&aClick to teleport!'
  619. - '&c&nRequired Rank: Nova'
  620. left_click_commands:
  621. - '[player] warp Nova'
  622. '32':
  623. material: emerald_block
  624. slot: 51
  625. display_name: '&a&lGAMMA &bPremium Mine'
  626. lore:
  627. - '&aClick to teleport!'
  628. - '&c&nRequired Rank: Gamma'
  629. left_click_commands:
  630. - '[player] warp Gamma'
  631. '33':
  632. material: nether_star
  633. slot: 53
  634. display_name: '&c⬅ Back To Main Menu ⬅'
  635. '34':
  636. material: barrier
  637. slot: 52
  638. display_name: '&0.'
  639. '35':
  640. material: barrier
  641. slot: 43
  642. display_name: '&0.'
  643. '36':
  644. material: tnt
  645. slot: 44
  646. display_name: '&4&l✖ Close Menu ✖'
  647. left_click_commands:
  648. - '[close]'
  649. '37':
  650. material: barrier
  651. slot: 45
  652. '38':
  653. material: barrier
  654. slot: 46
  655. display_name: '&0.'
  656. '39':
  657. material: barrier
  658. slot: 37
  659. display_name: '&0.'
  660. '40':
  661. material: barrier
  662. slot: 36
  663. display_name: '&0.'
  664. '41':
  665. material: barrier
  666. slot: 38
  667. display_name: '&0.'
  668. '42':
  669. material: barrier
  670. slot: 39
  671. display_name: '&0.'
  672. '43':
  673. material: barrier
  674. slot: 41
  675. display_name: '&0.'
  676. '44':
  677. material: barrier
  678. slot: 42
  679. display_name: '&0.'
  680. '45':
  681. material: chest
  682. slot: 35
  683. display_name: '&b✦ Crates ✦'
  684. lore:
  685. - '&aClick to teleport!'
  686. left_click_commands:
  687. - '[player] warp Crates'
  688. '46':
  689. material: melon
  690. slot: 26
  691. display_name: '&d❂ Tokens ❂'
  692. lore:
  693. - '&aClick to teleport!'
  694. left_click_commands:
  695. - '[player] warp Tokens'
  696. '47':
  697. material: bed
  698. slot: 18
  699. display_name: '&a✫ Spawn ✫'
  700. lore:
  701. - '&aClick to teleport!'
  702. left_click_commands:
  703. - '[player] spawn'
  704. '48':
  705. material: diamond_sword
  706. slot: 27
  707. display_name: '&c⚔ PvP ⚔'
  708. lore:
  709. - '&aClick to teleport!'
  710. left_click_commands:
  711. - '[player] warp PvP'
  712. '49':
  713. material: barrier
  714. slot: 25
  715. display_name: '&0.'
  716. '50':
  717. material: barrier
  718. slot: 34
  719. display_name: '&0.'
  720. '51':
  721. material: barrier
  722. slot: 33
  723. display_name: '&0.'
  724. '52':
  725. material: barrier
  726. slot: 19
  727. display_name: '&0.'
  728. '53':
  729. material: barrier
  730. slot: 28
  731. display_name: '&0.'
  732. '54':
  733. material: barrier
  734. slot: 29
  735. display_name: '&0.'
  736. Kits:
  737. menu_title: '&7[&a&lMelon&7] &8» &aKits'
  738. open_command: kit
  739. size: 27
  740. items:
  741. 'starteron':
  742. material: diamond_pickaxe
  743. slot: 10
  744. view_requirement: '"%essentials_kit_is_available_starter%".equalsIgnoreCase("yes")'
  745. display_name: '&7&lStarter (Member)'
  746. lore:
  747. - '&fClick to '
  748. - '&a&l&nUNLOCKED!'
  749. left_click_commands:
  750. - '[player] kit starter'
  751. - '[console] playsound mob.horse.armor %player_name% ~ ~ ~ 1 1.2 1'
  752. - '[close]'
  753. right_click_commands:
  754. - '[player] kit starter'
  755. - '[console] playsound mob.horse.armor %player_name% ~ ~ ~ 1 1.2 1'
  756. - '[close]'
  757. 'starteroff':
  758. material: barrier
  759. slot: 10
  760. update: true
  761. hide_enchantments: true
  762. enchantments:
  763. - 'DURABILITY;1'
  764. display_name: '&c&n&lUNAVAILABLE &7&lStarter (Member)'
  765. lore:
  766. - '&8+---------------------+'
  767. - '&7This kit is on cooldown!'
  768. - '&7You must wait &c%essentials_kit_time_until_available_starter%'
  769. - '&7Before using this kit again.'
  770. left_click_commands:
  771. - '[console] playsound mob.bat.takeoff %player_name% ~ ~ ~ 1 1.5 1'
  772. - '[console] playsound mob.horse.armor %player_name% ~ ~ ~ 1 1.5 1'
  773. right_click_commands:
  774. - '[console] playsound mob.bat.takeoff %player_name% ~ ~ ~ 1 1.5 1'
  775. - '[console] playsound mob.horse.armor %player_name% ~ ~ ~ 1 1.5 1'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement