Advertisement
Guest User

Untitled

a guest
Apr 16th, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.62 KB | None | 0 0
  1. # warps GUI menu configuration
  2. #
  3. # configuration layout:
  4. #
  5. # menu_title: '<title of menu goes here>'
  6. # inventory_type: '<add this option if you want to create a menu of a different InventoryType aside from chest>'
  7. # command: <command to open this menu goes here>
  8. # open_requirement:
  9. # expression: 'BukkitPlayer.hasPermission("some.permission");'
  10. # deny_commands:
  11. # - '[message] &cYou dont have permission to view that menu!'
  12. # size: <size of this menu, increments of 9, max size is 54>
  13. # update_interval: <time in seconds this gui should update for a player if an item is set to uodate placeholders>
  14. # items:
  15. # <item identifier>:
  16. # material: <name or id, for player heads use the format 'head;<players name/%player_name%>'>
  17. # entitytype: <name of entity type for mob eggs> https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html'>
  18. # data: <integer, used for data values for wool etc>
  19. # amount: <amount of this item to show>
  20. # slot: <slot number to put this item, slots start at 0 and end at 53 for a size 54 inventory>
  21. # priority: <this is used if you have multiple items set for the same slot>
  22. # permission: <the lowest priority item a player has permission for ex: 1, will be shown>
  23. # update: <true/false if this item should update placeholders on the interval set for the gui menu this item is in>
  24. # hide_attributes: <true/false if this item should display item attributes>
  25. # hide_enchantments: <true/false if this item should display item enchantment / level> (useful for 'enchantment glow' items)
  26. # hide_effects: <true/false if this item should display item effect attributes>
  27. # hide_unbreakable: <true/false if this item should display item unbreakable attributes>
  28. # display_name: <display name to show for this item>
  29. # banner_meta: (this is used if you want to display a custom banner with specific patterns)
  30. # - <dyecolor>;<PatternType> (more information on where to find DyeColor and PatternType names below)
  31. # - 'RED;BASE'
  32. # - 'WHITE;CREEPER'
  33. # lore:
  34. # - 'placeholders can be used in the name and lore'
  35. # - '%<any placeholder from Papi>% shows the viewer values'
  36. # enchantments: valid enchantment names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  37. # - '<ENCHANTMENT>;<LEVEL>'
  38. # - 'SILK_TOUCH;1'
  39. # left_click_commands:
  40. # - '[close]'
  41. # right_click_commands:
  42. # - '[player] spawn'
  43. #
  44. # All keys aside from update_interval are required for this menu to be valid and loaded!
  45. # The only options for an item to be considered valid are material and slot!
  46. #
  47. # banner_meta must be listed with a specific format:
  48. # banner_meta:
  49. # - <DyeColor>;<PatternType>
  50. #
  51. # Valid DyeColor names can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/DyeColor.html
  52. # Valid PatternTypes can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/banner/PatternType.html
  53. # ==============================================================
  54. #
  55. # Click requirement information
  56. #
  57. # You can now add 'click requirements' to left and right click commands!'
  58. # These are defined per item and must follow a specific format:
  59. #
  60. # 'item_one':
  61. # material: DIAMOND
  62. # slot: 3
  63. # left_click_commands:
  64. # - '[close]'
  65. # - '[message] You were charged 100 dollars for clicking that item!'
  66. # - '[console] eco take %player% 100'
  67. # left_click_requirement:
  68. # expression: '%vaulteco_balance% > 100'
  69. # deny_commands:
  70. # - '[close]'
  71. # - '[message] &cYou dont have 100 dollars to click that item'
  72. # right_click_commands:
  73. # - '[close]'
  74. # - '[message] You had permission to click that item!'
  75. # right_click_requirement:
  76. # expression: 'BukkitPlayer.hasPermission("some.permission.toclick")'
  77. # deny_commands:
  78. # - '[close]'
  79. # - '[message] &cYou dont have permission to click that item'
  80. #
  81. # Every left/right_click_requirement MUST have an expression specified that would return a boolean (true/false)
  82. # These expressions must also follow JavaScript format as they are all javascript based!
  83. #
  84. # deny_commands: are optional and will be executed if the expression returns false.
  85. # You may use placeholders in your Javascript expressions to evaluate if the player meets the requirement or not.
  86. # 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
  87. #
  88. # BukkitPlayer - references the Player object your expression is evaluating.
  89. # BukkitServer - references Bukkit.getServer() in the Bukkit API.
  90. #
  91. # The choice to use this system to evaluate if a player meets requirements to click an item was an easy choice.
  92. # This way I do not have to hook into every plugin to check if a player meets the requirement to click an item successfully.
  93. # You can simply use placeholders, or the keywords provided to give you access to the Player and Server objects.
  94. # If you want to check if a player has enough money, simply use an expression like so:
  95. #
  96. # expression: '%vaulteco_balance% >= 100' (checks if players balance is greater than or equal to 100)
  97. # If you want to charge the player, simply run the economy command to take the amount from the players balance in your click_commands
  98. # which will be executed if the player meets the requirement!
  99. # ==============================================================
  100. #
  101. # View requirement information
  102. #
  103. # You can add a 'view requirement' to an item if it has a priority value set for it
  104. # The view requirement has replaced the 'permission' entry for items
  105. # This allows you to specify a specific requirement in javascript for the item to be shown
  106. # In order to use view requirements, the item must have a priority value and a valid javascript expression
  107. # that returns true or false.
  108. #
  109. # 'item_one':
  110. # material: DIAMOND
  111. # slot: 3
  112. # priority: 1
  113. # view_requirement: '%vaulteco_balance% > 100'
  114. # 'item_two':
  115. # material: IRON_INGOT
  116. # slot: 3
  117. # priority: 2
  118. # view_requirement: 'BukkitPlayer.hasPermission("some.permission")'
  119. # 'item_three':
  120. # material: STONE
  121. # slot: 3
  122. # priority: 3
  123. #
  124. # 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.
  125. # 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
  126. # 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
  127. # a higher priority.
  128. #
  129. # You may use placeholders in your Javascript expressions to evaluate if the player meets the requirement or not.
  130. # 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
  131. #
  132. # BukkitPlayer - references the Player object your expression is evaluating.
  133. # BukkitServer - references Bukkit.getServer() in the Bukkit API.
  134. #
  135. # The choice to use this system to evaluate if a player meets requirements to click an item was an easy choice.
  136. # This way I do not have to hook into every plugin to check if a player meets the requirement to click an item successfully.
  137. # You can simply use placeholders, or the keywords provided to give you access to the Player and Server objects.
  138. # If you want to check if a player has enough money, simply use an expression like so:
  139. #
  140. # view_requirement: '%vaulteco_balance% >= 100' (checks if players balance is greater than or equal to 100)
  141. # ==============================================================
  142. menu_title: ' &c&lMunch&c&lcraft &c&lWarps'
  143. open_command: warp
  144. size: 54
  145. update_interval: 1
  146. items:
  147. '1':
  148. material: head;%player_name%
  149. slot: 4
  150. update: true
  151. display_name: '&cStatistics'
  152. lore:
  153. - '&7Username: &c%player_name%'
  154. - '&7Rank: &c%ezrankspro_rank%'
  155. - '&7Joined: &c%player_first_join_date%'
  156. - '&7Playtime: &c%statistic_time_played%'
  157. - '&7Ping: &c%player_ping%'
  158. - '&7Multiplier: &c%autosell_total_multiplier%'
  159. '2':
  160. material: head;MHF_ArrowLeft
  161. slot: 48
  162. update: true
  163. display_name: '&cBack'
  164. left_click_commands:
  165. - '[openguimenu] menu'
  166. right_click_commands:
  167. - '[openguimenu] menu'
  168. '3':
  169. material: head;MHF_ArrowRight
  170. slot: 50
  171. update: true
  172. display_name: '&cNext'
  173. left_click_commands:
  174. - '[openguimenu] menu'
  175. right_click_commands:
  176. - '[openguimenu] menu'
  177. '4':
  178. material: STAINED_GLASS_PANE
  179. data: 5
  180. amount: 1
  181. slot: 10
  182. priority: 1
  183. view_requirement: BukkitPlayer.hasPermission("essentials.warps.a");
  184. display_name: '&cWarp A'
  185. lore:
  186. - '&7Makes you go to Warp A.'
  187. left_click_commands:
  188. - '[player] warp a'
  189. - '[close]'
  190. right_click_commands:
  191. - '[player] warp a'
  192. - '[close]'
  193. '4.1':
  194. material: STAINED_GLASS_PANE
  195. data: 14
  196. amount: 1
  197. slot: 10
  198. priority: 2
  199. display_name: '&cWarp A'
  200. lore:
  201. - '&7You do not have access!'
  202. '5':
  203. material: STAINED_GLASS_PANE
  204. data: 5
  205. amount: 1
  206. slot: 11
  207. priority: 1
  208. view_requirement: BukkitPlayer.hasPermission("essentials.warps.b");
  209. display_name: '&cWarp B'
  210. lore:
  211. - '&7Makes you go to Warp B.'
  212. left_click_commands:
  213. - '[player] warp b'
  214. - '[close]'
  215. right_click_commands:
  216. - '[player] warp b'
  217. - '[close]'
  218. '5.1':
  219. material: STAINED_GLASS_PANE
  220. data: 14
  221. amount: 1
  222. slot: 11
  223. priority: 2
  224. display_name: '&cWarp B'
  225. lore:
  226. - '&7You do not have access!'
  227. '6':
  228. material: STAINED_GLASS_PANE
  229. data: 5
  230. amount: 1
  231. slot: 12
  232. priority: 1
  233. view_requirement: BukkitPlayer.hasPermission("essentials.warps.c");
  234. display_name: '&cWarp C'
  235. lore:
  236. - '&7Makes you go to Warp C.'
  237. left_click_commands:
  238. - '[player] warp c'
  239. - '[close]'
  240. right_click_commands:
  241. - '[player] warp c'
  242. - '[close]'
  243. '6.1':
  244. material: STAINED_GLASS_PANE
  245. data: 14
  246. amount: 1
  247. slot: 12
  248. priority: 2
  249. display_name: '&cWarp C'
  250. lore:
  251. - '&7You do not have access!'
  252. '7':
  253. material: STAINED_GLASS_PANE
  254. data: 5
  255. amount: 1
  256. slot: 13
  257. priority: 1
  258. view_requirement: BukkitPlayer.hasPermission("essentials.warps.d");
  259. display_name: '&cWarp D'
  260. lore:
  261. - '&7Makes you go to Warp D.'
  262. left_click_commands:
  263. - '[player] warp d'
  264. - '[close]'
  265. right_click_commands:
  266. - '[player] warp d'
  267. - '[close]'
  268. '7.1':
  269. material: STAINED_GLASS_PANE
  270. data: 14
  271. amount: 1
  272. slot: 13
  273. priority: 2
  274. display_name: '&cWarp D'
  275. lore:
  276. - '&7You do not have access!'
  277. '8':
  278. material: STAINED_GLASS_PANE
  279. data: 5
  280. amount: 1
  281. slot: 14
  282. priority: 1
  283. view_requirement: BukkitPlayer.hasPermission("essentials.warps.e");
  284. display_name: '&cWarp E'
  285. lore:
  286. - '&7Makes you go to Warp E.'
  287. left_click_commands:
  288. - '[player] warp e'
  289. - '[close]'
  290. right_click_commands:
  291. - '[player] warp e'
  292. - '[close]'
  293. '8.1':
  294. material: STAINED_GLASS_PANE
  295. data: 14
  296. amount: 1
  297. slot: 14
  298. priority: 2
  299. display_name: '&cWarp E'
  300. lore:
  301. - '&7You do not have access!'
  302. '9':
  303. material: STAINED_GLASS_PANE
  304. data: 5
  305. amount: 1
  306. slot: 15
  307. priority: 1
  308. view_requirement: BukkitPlayer.hasPermission("essentials.warps.f");
  309. display_name: '&cWarp F'
  310. lore:
  311. - '&7Makes you go to Warp F.'
  312. left_click_commands:
  313. - '[player] warp f'
  314. - '[close]'
  315. right_click_commands:
  316. - '[player] warp f'
  317. - '[close]'
  318. '9.1':
  319. material: STAINED_GLASS_PANE
  320. data: 14
  321. amount: 1
  322. slot: 15
  323. priority: 2
  324. display_name: '&cWarp F'
  325. lore:
  326. - '&7You do not have access!'
  327. '10':
  328. material: STAINED_GLASS_PANE
  329. data: 5
  330. amount: 1
  331. slot: 16
  332. priority: 1
  333. view_requirement: BukkitPlayer.hasPermission("essentials.warps.g");
  334. display_name: '&cWarp G'
  335. lore:
  336. - '&7Makes you go to Warp G.'
  337. left_click_commands:
  338. - '[player] warp g'
  339. - '[close]'
  340. right_click_commands:
  341. - '[player] warp g'
  342. - '[close]'
  343. '10.1':
  344. material: STAINED_GLASS_PANE
  345. data: 14
  346. amount: 1
  347. slot: 16
  348. priority: 2
  349. display_name: '&cWarp G'
  350. lore:
  351. - '&7You do not have access!'
  352. '11':
  353. material: STAINED_GLASS_PANE
  354. data: 5
  355. amount: 1
  356. slot: 19
  357. priority: 1
  358. view_requirement: BukkitPlayer.hasPermission("essentials.warps.h");
  359. display_name: '&cWarp H'
  360. lore:
  361. - '&7Makes you go to Warp H.'
  362. left_click_commands:
  363. - '[player] warp h'
  364. - '[close]'
  365. right_click_commands:
  366. - '[player] warp h'
  367. - '[close]'
  368. '11.1':
  369. material: STAINED_GLASS_PANE
  370. data: 14
  371. amount: 1
  372. slot: 19
  373. priority: 2
  374. display_name: '&cWarp H'
  375. lore:
  376. - '&7You do not have access!'
  377. '12':
  378. material: STAINED_GLASS_PANE
  379. data: 5
  380. amount: 1
  381. slot: 20
  382. priority: 1
  383. view_requirement: BukkitPlayer.hasPermission("essentials.warps.i");
  384. display_name: '&cWarp I'
  385. lore:
  386. - '&7Makes you go to Warp I.'
  387. left_click_commands:
  388. - '[player] warp i'
  389. - '[close]'
  390. right_click_commands:
  391. - '[player] warp i'
  392. - '[close]'
  393. '12.1':
  394. material: STAINED_GLASS_PANE
  395. data: 14
  396. amount: 1
  397. slot: 20
  398. priority: 2
  399. display_name: '&cWarp I'
  400. lore:
  401. - '&7You do not have access!'
  402. '13':
  403. material: STAINED_GLASS_PANE
  404. data: 5
  405. amount: 1
  406. slot: 21
  407. priority: 1
  408. view_requirement: BukkitPlayer.hasPermission("essentials.warps.j");
  409. display_name: '&cWarp J'
  410. lore:
  411. - '&7Makes you go to Warp J.'
  412. left_click_commands:
  413. - '[player] warp j'
  414. - '[close]'
  415. right_click_commands:
  416. - '[player] warp j'
  417. - '[close]'
  418. '13.1':
  419. material: STAINED_GLASS_PANE
  420. data: 14
  421. amount: 1
  422. slot: 21
  423. priority: 2
  424. display_name: '&cWarp J'
  425. lore:
  426. - '&7You do not have access!'
  427. '14':
  428. material: STAINED_GLASS_PANE
  429. data: 5
  430. amount: 1
  431. slot: 22
  432. priority: 1
  433. view_requirement: BukkitPlayer.hasPermission("essentials.warps.k");
  434. display_name: '&cWarp K'
  435. lore:
  436. - '&7Makes you go to Warp K.'
  437. left_click_commands:
  438. - '[player] warp k'
  439. - '[close]'
  440. right_click_commands:
  441. - '[player] warp k'
  442. - '[close]'
  443. '14.1':
  444. material: STAINED_GLASS_PANE
  445. data: 14
  446. amount: 1
  447. slot: 22
  448. priority: 2
  449. display_name: '&cWarp K'
  450. lore:
  451. - '&7You do not have access!'
  452. '15':
  453. material: STAINED_GLASS_PANE
  454. data: 5
  455. amount: 1
  456. slot: 23
  457. priority: 1
  458. view_requirement: BukkitPlayer.hasPermission("essentials.warps.l");
  459. display_name: '&cWarp L'
  460. lore:
  461. - '&7Makes you go to Warp L.'
  462. left_click_commands:
  463. - '[player] warp l'
  464. - '[close]'
  465. right_click_commands:
  466. - '[player] warp l'
  467. - '[close]'
  468. '15.1':
  469. material: STAINED_GLASS_PANE
  470. data: 14
  471. amount: 1
  472. slot: 23
  473. priority: 2
  474. display_name: '&cWarp L'
  475. lore:
  476. - '&7You do not have access!'
  477. '16':
  478. material: STAINED_GLASS_PANE
  479. data: 5
  480. amount: 1
  481. slot: 24
  482. priority: 1
  483. view_requirement: BukkitPlayer.hasPermission("essentials.warps.m");
  484. display_name: '&cWarp M'
  485. lore:
  486. - '&7Makes you go to Warp M.'
  487. left_click_commands:
  488. - '[player] warp m'
  489. - '[close]'
  490. right_click_commands:
  491. - '[player] warp m'
  492. - '[close]'
  493. '16.1':
  494. material: STAINED_GLASS_PANE
  495. data: 14
  496. amount: 1
  497. slot: 24
  498. priority: 2
  499. display_name: '&cWarp M'
  500. lore:
  501. - '&7You do not have access!'
  502. '17':
  503. material: STAINED_GLASS_PANE
  504. data: 5
  505. amount: 1
  506. slot: 25
  507. priority: 1
  508. view_requirement: BukkitPlayer.hasPermission("essentials.warps.n");
  509. display_name: '&cWarp N'
  510. lore:
  511. - '&7Makes you go to Warp N.'
  512. left_click_commands:
  513. - '[player] warp n'
  514. - '[close]'
  515. right_click_commands:
  516. - '[player] warp n'
  517. - '[close]'
  518. '17.1':
  519. material: STAINED_GLASS_PANE
  520. data: 14
  521. amount: 1
  522. slot: 25
  523. priority: 2
  524. display_name: '&cWarp N'
  525. lore:
  526. - '&7You do not have access!'
  527. '18':
  528. material: STAINED_GLASS_PANE
  529. data: 5
  530. amount: 1
  531. slot: 28
  532. priority: 1
  533. view_requirement: BukkitPlayer.hasPermission("essentials.warps.o");
  534. display_name: '&cWarp O'
  535. lore:
  536. - '&7Makes you go to Warp O.'
  537. left_click_commands:
  538. - '[player] warp o'
  539. - '[close]'
  540. right_click_commands:
  541. - '[player] warp o'
  542. - '[close]'
  543. '18.1':
  544. material: STAINED_GLASS_PANE
  545. data: 14
  546. amount: 1
  547. slot: 28
  548. priority: 2
  549. display_name: '&cWarp O'
  550. lore:
  551. - '&7You do not have access!'
  552. '19':
  553. material: STAINED_GLASS_PANE
  554. data: 5
  555. amount: 1
  556. slot: 29
  557. priority: 1
  558. view_requirement: BukkitPlayer.hasPermission("essentials.warps.p");
  559. display_name: '&cWarp P'
  560. lore:
  561. - '&7Makes you go to Warp P.'
  562. left_click_commands:
  563. - '[player] warp p'
  564. - '[close]'
  565. right_click_commands:
  566. - '[player] warp p'
  567. - '[close]'
  568. '19.1':
  569. material: STAINED_GLASS_PANE
  570. data: 14
  571. amount: 1
  572. slot: 29
  573. priority: 2
  574. display_name: '&cWarp P'
  575. lore:
  576. - '&7You do not have access!'
  577. '20':
  578. material: STAINED_GLASS_PANE
  579. data: 5
  580. amount: 1
  581. slot: 30
  582. priority: 1
  583. view_requirement: BukkitPlayer.hasPermission("essentials.warps.q");
  584. display_name: '&cWarp Q'
  585. lore:
  586. - '&7Makes you go to Warp Q.'
  587. left_click_commands:
  588. - '[player] warp q'
  589. - '[close]'
  590. right_click_commands:
  591. - '[player] warp q'
  592. - '[close]'
  593. '20.1':
  594. material: STAINED_GLASS_PANE
  595. data: 14
  596. amount: 1
  597. slot: 30
  598. priority: 2
  599. display_name: '&cWarp Q'
  600. lore:
  601. - '&7You do not have access!'
  602. '21':
  603. material: STAINED_GLASS_PANE
  604. data: 5
  605. amount: 1
  606. slot: 31
  607. priority: 1
  608. view_requirement: BukkitPlayer.hasPermission("essentials.warps.r");
  609. display_name: '&cWarp R'
  610. lore:
  611. - '&7Makes you go to Warp R.'
  612. left_click_commands:
  613. - '[player] warp r'
  614. - '[close]'
  615. right_click_commands:
  616. - '[player] warp r'
  617. - '[close]'
  618. '21.1':
  619. material: STAINED_GLASS_PANE
  620. data: 14
  621. amount: 1
  622. slot: 31
  623. priority: 2
  624. display_name: '&cWarp R'
  625. lore:
  626. - '&7You do not have access!'
  627. '22':
  628. material: STAINED_GLASS_PANE
  629. data: 5
  630. amount: 1
  631. slot: 32
  632. priority: 1
  633. view_requirement: BukkitPlayer.hasPermission("essentials.warps.t");
  634. display_name: '&cWarp S'
  635. lore:
  636. - '&7Makes you go to Warp S.'
  637. left_click_commands:
  638. - '[player] warp s'
  639. - '[close]'
  640. right_click_commands:
  641. - '[player] warp s'
  642. - '[close]'
  643. '22.1':
  644. material: STAINED_GLASS_PANE
  645. data: 14
  646. amount: 1
  647. slot: 32
  648. priority: 2
  649. display_name: '&cWarp S'
  650. lore:
  651. - '&7You do not have access!'
  652. '23':
  653. material: STAINED_GLASS_PANE
  654. data: 5
  655. amount: 1
  656. slot: 33
  657. priority: 1
  658. view_requirement: BukkitPlayer.hasPermission("essentials.warps.t");
  659. display_name: '&cWarp T'
  660. lore:
  661. - '&7Makes you go to Warp T.'
  662. left_click_commands:
  663. - '[player] warp t'
  664. - '[close]'
  665. right_click_commands:
  666. - '[player] warp t'
  667. - '[close]'
  668. '23.1':
  669. material: STAINED_GLASS_PANE
  670. data: 14
  671. amount: 1
  672. slot: 33
  673. priority: 2
  674. display_name: '&cWarp T'
  675. lore:
  676. - '&7You do not have access!'
  677. '24':
  678. material: STAINED_GLASS_PANE
  679. data: 5
  680. amount: 1
  681. slot: 34
  682. priority: 1
  683. view_requirement: BukkitPlayer.hasPermission("essentials.warps.u");
  684. display_name: '&cWarp U'
  685. lore:
  686. - '&7Makes you go to Warp U.'
  687. left_click_commands:
  688. - '[player] warp u'
  689. - '[close]'
  690. right_click_commands:
  691. - '[player] warp u'
  692. - '[close]'
  693. '24.1':
  694. material: STAINED_GLASS_PANE
  695. data: 14
  696. amount: 1
  697. slot: 34
  698. priority: 2
  699. display_name: '&cWarp U'
  700. lore:
  701. - '&7You do not have access!'
  702. '25':
  703. material: STAINED_GLASS_PANE
  704. data: 5
  705. amount: 1
  706. slot: 38
  707. priority: 1
  708. view_requirement: BukkitPlayer.hasPermission("essentials.warps.v");
  709. display_name: '&cWarp V'
  710. lore:
  711. - '&7Makes you go to Warp V.'
  712. left_click_commands:
  713. - '[player] warp v'
  714. - '[close]'
  715. right_click_commands:
  716. - '[player] warp v'
  717. - '[close]'
  718. '25.1':
  719. material: STAINED_GLASS_PANE
  720. data: 14
  721. amount: 1
  722. slot: 38
  723. priority: 2
  724. display_name: '&cWarp V'
  725. lore:
  726. - '&7You do not have access!'
  727. '27':
  728. material: STAINED_GLASS_PANE
  729. data: 5
  730. amount: 1
  731. slot: 39
  732. priority: 1
  733. view_requirement: BukkitPlayer.hasPermission("essentials.warps.w");
  734. display_name: '&cWarp W'
  735. lore:
  736. - '&7Makes you go to Warp W.'
  737. left_click_commands:
  738. - '[player] warp w'
  739. - '[close]'
  740. right_click_commands:
  741. - '[player] warp w'
  742. - '[close]'
  743. '27.1':
  744. material: STAINED_GLASS_PANE
  745. data: 14
  746. amount: 1
  747. slot: 39
  748. priority: 2
  749. display_name: '&cWarp W'
  750. lore:
  751. - '&7You do not have access!'
  752. '29':
  753. material: STAINED_GLASS_PANE
  754. data: 5
  755. amount: 1
  756. slot: 40
  757. priority: 1
  758. view_requirement: BukkitPlayer.hasPermission("essentials.warps.x");
  759. display_name: '&cWarp X'
  760. lore:
  761. - '&7Makes you go to Warp X.'
  762. left_click_commands:
  763. - '[player] warp x'
  764. - '[close]'
  765. right_click_commands:
  766. - '[player] warp x'
  767. - '[close]'
  768. '29.1':
  769. material: STAINED_GLASS_PANE
  770. data: 14
  771. amount: 1
  772. slot: 40
  773. priority: 2
  774. display_name: '&cWarp X'
  775. lore:
  776. - '&7You do not have access!'
  777. '30':
  778. material: STAINED_GLASS_PANE
  779. data: 5
  780. amount: 1
  781. slot: 41
  782. priority: 1
  783. view_requirement: BukkitPlayer.hasPermission("essentials.warps.y");
  784. display_name: '&cWarp Y'
  785. lore:
  786. - '&7Makes you go to Warp Y.'
  787. left_click_commands:
  788. - '[player] warp y'
  789. - '[close]'
  790. right_click_commands:
  791. - '[player] warp y'
  792. - '[close]'
  793. '30.1':
  794. material: STAINED_GLASS_PANE
  795. data: 14
  796. amount: 1
  797. slot: 41
  798. priority: 2
  799. display_name: '&cWarp Y'
  800. lore:
  801. - '&7You do not have access!'
  802. '26':
  803. material: STAINED_GLASS_PANE
  804. data: 5
  805. amount: 1
  806. slot: 42
  807. priority: 1
  808. view_requirement: BukkitPlayer.hasPermission("essentials.warps.z");
  809. display_name: '&cWarp Z'
  810. lore:
  811. - '&7Makes you go to Warp Z.'
  812. left_click_commands:
  813. - '[player] warp z'
  814. - '[close]'
  815. right_click_commands:
  816. - '[player] warp z'
  817. - '[close]'
  818. '26.1':
  819. material: STAINED_GLASS_PANE
  820. data: 14
  821. amount: 1
  822. slot: 42
  823. priority: 2
  824. display_name: '&cWarp Z'
  825. lore:
  826. - '&7You do not have access!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement