Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! #
  2. # #
  3. # For a list of item names see https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html #
  4. # #
  5. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! #
  6.  
  7.  
  8.  
  9. # Number of rows of slots of your server selector menu. For example '2' will mean 2*9 = 18 slots. Max value is 6.
  10. rows: 2
  11.  
  12. # This will be displayed as the title of the menu.
  13. title: '&aSzerver Választó'
  14.  
  15. # This will be the name of the server selector item
  16. item-name: '&aServer Választó'
  17.  
  18. # Item lore. For no lore, put 'none' in the first line.
  19. item-lore:
  20. - '&cNyomd meg és csatlakozz egy Szerverrre!'
  21.  
  22. # The name of the server selector item. Specify "NONE" for no item.
  23. item: COMPASS
  24. data: 0
  25.  
  26. # Give the item when a player joins?
  27. on-join: true
  28.  
  29. # What slot should the item be in? Specify -1 to automatically put it in the first available slot.
  30. inv-slot: 0
  31.  
  32. # URL clickable message
  33. url-message: '&3&lKattints ha mersz'
  34.  
  35. # Command to open the menu. Specify "none" for no command. (without /)
  36. command: "menu"
  37.  
  38. # Possible values for action:
  39. #
  40. # Teleport player to server
  41. # action: 'srv:skywars'
  42. #
  43. # Send player a clickable message to open a URL. Only works on spigot, not bukkit.
  44. # action: 'url:http://example.com/'
  45. #
  46. # Teleport player to world
  47. # action: 'world:skyblock'
  48. #
  49. # Execute a command. The player will need permission for this command. No / before the command.
  50. # action: 'cmd:gamemode 1'
  51. # For bungeecord commands, add a bungee: prefix. This requires https://www.spigotmc.org/resources/commandsync.115/ to be installed.
  52. # action: 'bungeecmd:glist'
  53. #
  54. # Open another selector (for submenus for example)
  55. # action: 'sel:uhc-servers'
  56. # SUPER VALUABLE TIP:
  57. # If you set the ip to 'submenu' and ping-server to true, {online} and {max} will be the combined number of players of all servers in the submenu.
  58. #
  59. # Send message
  60. # action: 'msg:&1This &2is &3a &4message'
  61. #
  62. # Close selector
  63. # action: 'close'
  64. #
  65. # Do nothing (selector stays open)
  66. # action: 'none'
  67.  
  68. menu:
  69.  
  70. 3: # Item in 4th slot (use 0 for first item). Add as many items as you want by copying this section and giving it a new number. This number must not be greater than (rows*9)-1
  71.  
  72. # Whether the server should be pinged for information. Enables placeholders in lore.
  73. ping-server: false
  74. ip: 37.221.209.210
  75. port: 25696
  76.  
  77. action: 'srv:skypvp'
  78.  
  79. # Change item count based on number of players online. Only works if ping-server is turned on. If there are more than 64 players online, the item count will be 1
  80. # Change how this works in config.yml.
  81. change-item-count: true
  82.  
  83. # This value is ignored when change-item-count is turned on.
  84. item-count: 1
  85.  
  86. # Online is used when ping-server is turned off, or ping-server is turned on and the server is online.
  87. online:
  88. item: DIAMOND_SWORD
  89. data: 0
  90. enchanted: true
  91. name: '&aSkyPvP &fSzerver'
  92. lore:
  93. - &8Játékmód: PvP!
  94. - &r
  95. - &cA Szerveren lehet potival pvpzni!
  96. - &cOP a szerveren található eldugva!
  97. - &r
  98. - &cJelenleg ennyi játékos játszik: &f {online}
  99.  
  100. # Offline is used when ping-server is turned on and the server is offline.
  101. offline:
  102. item: WOODEN_SWORD
  103. data: 0
  104. enchanted: false
  105. name: '&cSkyPvP &fSzerver'
  106. lore:
  107. - &aJelenleg a szerver nem fut!
  108.  
  109. # Change item based on server motd. If the server has an motd that is not listed below, settings above will be used as fallback.
  110. # If you do not need to use this you can just delete this entire section
  111. dynamic:
  112. "Lore example":
  113. item: IRON_SWORD
  114. data: 0
  115. enchanted: false
  116. name: '&cKitPvP Server'
  117. lore:
  118. - The game has not started
  119. "Other lore":
  120. item: WOODEN_SWORD
  121. data: 0
  122. enchanted: false
  123. name: '&cKitPvP Server'
  124. lore:
  125. - The game is in progress
  126.  
  127. 5: # Item in 6th slot
  128. action: 'none'
  129. online:
  130. item: 'head:auto' # You can use head:auto to get the head of the player opening the menu, or head:SomethingElse to get the head of a specific player.
  131. data: 0
  132. enchanted: false
  133. name: 'This is you!'
  134. lore:
  135. - This item does nothing
  136.  
  137. -1: # -1 means everything else
  138. action: 'none'
  139. online:
  140. item: STAINED_GLASS_PANE
  141. data: 0
  142. enchanted: false
  143. name: ''
  144. lore:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement