Advertisement
chris_61

Untitled

Jan 14th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 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: '&e[&dMCBuffalo &bNetwork&e]'
  29. # This text will be shown below the tablist
  30. footer: ''
  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. # how Players should be grouped
  34. # You can use 'SERVER' or 'NONE'
  35. groupPlayers: SERVER
  36. # Whether to Show Groups with no Players
  37. # not effective if groupPlayers=NONE
  38. showEmptyGroups: false
  39. # This is how a group looks in the tabList
  40. # Use {fillplayers} at the point where you
  41. # wish the players to be listet
  42. # not effective if groupPlayers=NONE
  43. # You can also use {fillplayers:<group>}
  44. groupLines:
  45. - '[ALIGN LEFT]&2{server} (&a{server_player_count}&2):'
  46. - ' '
  47. - ' '
  48. - ' '
  49. - '&7 {fillplayers}'
  50. - ' '
  51. - ' '
  52. - ' '
  53. - ' '
  54. # This allows you to change the way players are listet
  55. # You can also use multiple slots to displaye additional information
  56. playerLines:
  57. - '{tabName}'
  58. # These lines are shown if there's not enough space
  59. # for all players upon the tabList
  60. morePlayersLines:
  61. - '... and {other_count} others'
  62. # And here finally is the tabList
  63. # Use {fillplayers} at the point where
  64. # you want the players to be shown.
  65. # You can also use {fillplayers:<group>} or {fillplayers:<server>}
  66. # Use [ALIGN BOTTOM] to state that the folowing
  67. # lines should be shown at the bottom of the tabList
  68. # You can also use [ALIGN LEFT]
  69. # You can use Variables to display dynamic content
  70. # more information at https://github.com/CodeCrafter47/BungeeTabListPlus/wiki
  71. tabList:
  72. - '[ALIGN LEFT]{fillplayers}'
  73. - '[ALIGN BOTTOM]&2============'
  74. - '&2============'
  75. - '&2============'
  76. - '&2============'
  77. - '&bTime: &a{time}'
  78. - '&bPlayers: &a{players}'
  79. - '&bBalance: &a{balance}'
  80. - '&bTokens: &a{playerPoints}'
  81. # The skin shown for non-players
  82. # leave empty for default skins
  83. defaultSkin: MHF_ArrowRight
  84. # ping value tu use for non-player slots,
  85. # used if no other value is specified using [PING=?]
  86. defaultPing: 0
  87. # if true player skin is shown beneath name, otherwise default skin
  88. showCorrectPlayerSkins: true
  89. # If enabled slots are filled top-to-bottom instead of left-to-right
  90. verticalMode: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement