Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. showTo: 'true'
  2. priority: 1
  3.  
  4. showHeaderFooter: false
  5.  
  6. # Three player sets, one for each server
  7. playerSets:
  8. lobby:
  9. filter: ${player server} == "lobby"
  10. bedwars:
  11. filter: ${player server} == "Bedwars"
  12. pvp:
  13. filter: ${player world} == "PVPMAP"
  14.  
  15. type: FIXED_SIZE
  16. size: 60
  17.  
  18. defaultIcon: "colors/dark_gray.png"
  19. defaultPing: 0
  20.  
  21. components:
  22. - !table
  23. columns:
  24. 0: # 1st column
  25. - {text: "&a&lLobby", icon: "colors/green.png", ping: 0}
  26. - !players
  27. playerSet: lobby
  28. playerComponent: "${player name}"
  29. morePlayersComponent: {text: "... and ${other_count} others", icon: "default/players.png", ping: 0}
  30. 1: # 2nd column
  31. - {text: "&b&lBedwars", icon: "colors/aqua.png", ping: 0}
  32. - !players
  33. playerSet: bedwars
  34. playerComponent: "${player name}"
  35. morePlayersComponent: {text: "... and ${other_count} others", icon: "default/players.png", ping: 0}
  36. 2: # 3rd column
  37. - {text: "&c&lPVP", icon: "colors/red.png", ping: 0}
  38. - !players
  39. playerSet: pvp
  40. playerComponent: "${player name}"
  41. morePlayersComponent: {text: "... and ${other_count} others", icon: "default/players.png", ping: 0}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement