Advertisement
doggmatic

Untitled

Mar 2nd, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 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 TabList for VIPs / Admins or
  10. # create a tabList only shown o one server
  11. # You can find more information on the wiki https://github.com/CodeCrafter47/BungeeTabListPlus/wiki
  12. #
  13.  
  14. # Defines to which players this tabList applies
  15. # No effect in the default tabList
  16. # possible values:
  17. # 'Player:<Name>' for specific Player
  18. # 'Players:<player1>,<player2>' for multiple Players
  19. # 'Server:<Server>' for all Players on that Server
  20. # 'Servers:<server1>,<server2>' for all Players which are on These Servers
  21. # 'group:<group>' for all players within that permission group
  22. # 'groups:<group1>,<group2>' same with multiple groups
  23. # '1.7' for all players with client version 1.7 or below
  24. # '1.8' for all players with client version 1.8 or above
  25. # 'all' for all players
  26. showTo: all
  27. # This text will be shown above the tablist
  28. header: '&bWelcome &6{player}'
  29. # This text will be shown below the tablist
  30. footer: '&4magnum.zapto.org'
  31. # whether to shown header/footer or not. You should set this to false if you wan to use a bukkit/spigot side plugin for that.
  32. shownFooterHeader: true
  33. # The skin shown for non-players
  34. # leave empty for default skins
  35. defaultSkin: MHF_Question
  36. # ping value tu use for non-player slots,
  37. # used if no other value is specified using [PING=?]
  38. defaultPing: 0
  39. # if true player skin is shown beneath name, otherwise default skin
  40. showCorrectPlayerSkins: true
  41. # how Players should be grouped
  42. # You can use 'SERVER' or 'NONE'
  43. groupPlayers: NONE
  44. # Whether to Show Groups with no Players
  45. # not effective if groupPlayers=NONE
  46. showEmptyGroups: false
  47. # If enabled slots are filled top-to-bottom instead of left-to-right
  48. verticalMode: true
  49. # This is how a group looks in the tabList
  50. # Use {fillplayers} at the point where you
  51. # wish the players to be listet
  52. # not effective if groupPlayers=NONE
  53. # You can also use {fillplayers:<group>}
  54. groupLines:
  55. - '[ALIGN LEFT][SKIN=MHF_ArrowRight]&9&l>&9 {server}({server_player_count}):'
  56. - '{fillplayers}'
  57. # This allows you to change the way players are listet
  58. # You can also use multiple slots to displaye additional information
  59. playerLines:
  60. - '{tabName}'
  61. # These lines are shown if there's not enough space
  62. # for all players upon the tabList
  63. morePlayersLines:
  64. - '... and {other_count} others'
  65. # And here finally is the tabList
  66. # Use {fillplayers} at the point where
  67. # you want the players to be shown.
  68. # You can also use {fillplayers:<group>} or {fillplayers:<server>}
  69. # Use [ALIGN BOTTOM] to state that the folowing
  70. # lines should be shown at the bottom of the tabList
  71. # You can also use [ALIGN LEFT]
  72. # You can use Variables to display dynamic content
  73. # more information at https://github.com/CodeCrafter47/BungeeTabListPlus/wiki
  74. tabList:
  75. - '[ROW=0]&2&l&nHub'
  76. - '[MAXPLAYERS=19]{fillplayers:hub}
  77. - '[ROW=0]&b&l&nKillTown'
  78. - '[MAXPLAYERS=19]{fillplayers:killtown}
  79. - '[ROW=0]&c&l&nGames'
  80. - '[MAXPLAYERS=19]{fillplayers:minigames}
  81. - '[ROW=0]&6&l&nTowny'
  82. - '[MAXPLAYERS=19]{fillplayers:towny}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement