Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. #
  2. # This the default TabList
  3. # It is shown to all users which haven't got another TabList
  4. #
  5. # Create a copy of this File, name it like you wish
  6. # and change the showTo and some other options
  7. # to create another TabList only shown to some users.
  8. # By doing this you can for example create
  9. # - a special tab list for VIPs / Admins or
  10. # - a tab list that is only shown on one server
  11. # You can find more information on the wiki https://github.com/CodeCrafter47/BungeeTabListPlus/wiki
  12. #
  13.  
  14. # This tab list should be shown to players on the skyblock server.
  15. showTo: ${viewer server} == "Skyblock"
  16. # Priority should be higher than the on of the default tab list.
  17. priority: 25
  18.  
  19. type: DYNAMIC_SIZE
  20.  
  21. showHeaderFooter: false
  22.  
  23. header:
  24. - '&cWelcome &f${viewer name}'
  25. - '&eW&celcome &f${viewer name}'
  26. - '&eWe&clcome &f${viewer name}'
  27. - '&eWel&ccome &f${viewer name}'
  28. - '&eWelc&come &f${viewer name}'
  29. - '&eWelco&cme &f${viewer name}'
  30. - '&eWelcom&ce &f${viewer name}'
  31. - '&eWelcome &f${viewer name}'
  32. - '&cW&eelcome &f${viewer name}'
  33. - '&cWe&elcome &f${viewer name}'
  34. - '&cWel&ecome &f${viewer name}'
  35. - '&cWelc&eome &f${viewer name}'
  36. - '&cWelco&eme &f${viewer name}'
  37. - '&cWelcom&ee &f${viewer name}'
  38. - '&cWelcome &f${viewer name}'
  39.  
  40. headerAnimationUpdateInterval: 0.2
  41.  
  42. footer:
  43. - '&f&oPowered by BungeeTabListPlus'
  44.  
  45. footerAnimationUpdateInterval: 0.5
  46.  
  47. customPlaceholders:
  48. other_server_prefix: # makes players on other servers gray
  49. !conditional
  50. condition: '${viewer server} == ${player server}'
  51. true: '&f'
  52. false: '&7'
  53.  
  54. playerSets:
  55. skyblock:
  56. filter: ${player server} == "skyblock"
  57. hiddenPlayers: VISIBLE
  58. global:
  59. filter: "true"
  60. hiddenPlayers: VISIBLE
  61.  
  62. playerSet: skyblock
  63.  
  64. playerOrder: "playerServerFirst,serverAlphabetically,vaultGroupInfo,alphabetically"
  65.  
  66. playerComponent: {text: "${other_server_prefix}${player name}", icon: "${player skin}", ping: "${player ping}"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement