Advertisement
Guest User

Untitled

a guest
Mar 4th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 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: 1
  11.  
  12. # This will be displayed as the title of the menu.
  13. title: '&4choose your server'
  14.  
  15. # This will be the name of the server selector item
  16. item-name: '&3Server Selector'
  17.  
  18. # Item lore. For no lore, put 'none' in the first line.
  19. item-lore:
  20. - 'Line 1'
  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: 4
  31.  
  32. # URL clickable message
  33. url-message: '&3&lClick here'
  34.  
  35. # Command to open the menu. Specify "none" for no command. (without /)
  36. command: "menu"
  37. command: "menu"
  38.  
  39. # Possible values for action:
  40. #
  41. # Teleport player to server
  42. # action: 'srv:skywars'
  43. #
  44. # Send player a clickable message to open a URL. Only works on spigot, not bukkit.
  45. # action: 'url:http://example.com/'
  46. #
  47. # Teleport player to world
  48. # action: 'world:skyblock'
  49. #
  50. # Execute a command. The player will need permission for this command. No / before the command.
  51. # action: 'cmd:gamemode 1'
  52. # For bungeecord commands, add a bungee: prefix. This requires https://www.spigotmc.org/resources/commandsync.115/ to be installed.
  53. # action: 'bungeecmd:glist'
  54. #
  55. # Open another selector (for submenus for example)
  56. # action: 'sel:uhc-servers'
  57. # SUPER VALUABLE TIP:
  58. # 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.
  59. #
  60. # Send message
  61. # action: 'msg:&1This &2is &3a &4message'
  62. #
  63. # Close selector
  64. # action: 'close'
  65. #
  66. # Do nothing (selector stays open)
  67. # action: 'none'
  68.  
  69. menu:
  70.  
  71. 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
  72.  
  73. # Whether the server should be pinged for information. Enables placeholders in lore.
  74. ping-server: false
  75. ip: play.example.com # Note that you can't use localhost because the plugin uses an external API by default. For more info see config.yml
  76. port: 1234
  77.  
  78. action: 'srv:skyblock'
  79.  
  80. # 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
  81. # Change how this works in config.yml.
  82. change-item-count: true
  83.  
  84. # This value is ignored when change-item-count is turned on.
  85. item-count: 1
  86.  
  87. # Online is used when ping-server is turned off, or ping-server is turned on and the server is online.
  88. online:
  89. item: GRASS
  90. data: 0
  91. enchanted: true
  92. name: '&aSkyBlock Server'
  93. lore:
  94. - classic skyblock without shop!
  95.  
  96. # Offline is used when ping-server is turned on and the server is offline.
  97. offline:
  98. item: DIRT
  99. data: 0
  100. enchanted: false
  101. name: '&4skyblock Server'
  102. lore:
  103. - The server is offline
  104.  
  105. # Change item based on server motd. If the server has an motd that is not listed below, settings above will be used as fallback.
  106. # If you do not need to use this you can just delete this entire section
  107. dynamic:
  108. "Lore example":
  109. item: IRON_SWORD
  110. data: 0
  111. enchanted: false
  112. name: '&cKitPvP Server'
  113. lore:
  114. - The game has not started
  115. "Other lore":
  116. item: WOODEN_SWORD
  117. data: 0
  118. enchanted: false
  119. name: '&cKitPvP Server'
  120. lore:
  121. - The game is in progress
  122.  
  123. 5: # Item in 6th slot
  124. action: 'none'
  125. online:
  126. 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.
  127. data: 0
  128. enchanted: false
  129. name: 'This is you!'
  130. lore:
  131. - This item does nothing
  132.  
  133. -1: # -1 means everything else
  134. action: 'none'
  135. online:
  136. item: STAINED_GLASS_PANE
  137. data:
  138. enchanted: false
  139. name: ''
  140. lore:
  141. 1:
  142. action: 'srv:duels'
  143. online:
  144. item: DIAMOND_SWORD
  145. data: 0
  146. enchanted: true
  147. name: the duels server
  148. lore:
  149. - join here to have a private duel with anyone!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement