Advertisement
Hightension

Untitled

Feb 15th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 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.  
  28. # If multiple tab list are available for a player the plugin
  29. # chooses the tab list with the highest priority
  30. priority: 1
  31.  
  32. # This text will be shown above the tablist
  33. # Add multiple lines to create an animation
  34. header:
  35. - '&bWillkommen, &6{player}&b. &6- &2{balance} &7{currencyPl} &6- &e{hours}:{min}'
  36.  
  37. # Interval (in seconds) at which the header animation is updated
  38. # Use this to configure the speed to the animation
  39. headerAnimationUpdateInterval: 0.25
  40.  
  41. # This text will be shown below the tablist
  42. # Add multiple lines to create an animation
  43. footer:
  44. - '&6Quatsche mit deinen Mitspielern! Unsere Teamspeak 3 IP:&2 HexagonMC.eu {newline}&6
  45. Auf unserer Website findest du weitere Infos zum Server! Dort befindet sich unser
  46. Wiki, das Forum und unser Shop: &2HexagonMC.eu'
  47.  
  48. # Interval (in seconds) at which the footer animation is updated
  49. # Use this to configure the speed to the animation
  50. footerAnimationUpdateInterval: 0.5
  51.  
  52. # 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.
  53. shownFooterHeader: true
  54.  
  55. # The skin shown for non-players
  56. # leave empty for default skins
  57. defaultSkin: MHF_OakLog
  58.  
  59. # ping value tu use for non-player slots,
  60. # used if no other value is specified using [PING=?]
  61. defaultPing: 0
  62.  
  63. # 1.8 ONLY
  64. # When enabled the tablist will adjust it's size to the number of players online/ slots used, instead of using
  65. # the static tab_size set in bungee's config.yml.
  66. # WARNING: This is an experimental feature an will most likely cause bugs
  67. # WARNING: [ALIGN=LEFT] and other formatting tags will not operate correctly
  68. # WARNING: If this is enabled it is STRONGLY recommended to also enable verticalMode
  69. autoShrinkTabList: false
  70.  
  71. # 1.8 ONLY
  72. # Number of slots in the tab list. Please not that this only affects 1.8 clients
  73. # tab_size for 1.7 and older clients is configured in bungee's config.yml
  74. # Can be from 1 to 80.
  75. tab_size: 80
  76.  
  77. # how Players should be grouped
  78. # You can use 'SERVER' or 'NONE'
  79. groupPlayers: SERVER
  80.  
  81. # Whether to Show Groups with no Players
  82. # not effective if groupPlayers=NONE
  83. showEmptyGroups: false
  84.  
  85. # If enabled slots are filled top-to-bottom instead of left-to-right
  86. verticalMode: false
  87.  
  88. # This is how a group looks in the tabList
  89. # Use {fillplayers} at the point where you
  90. # wish the players to be listet
  91. # not effective if groupPlayers=NONE
  92. # You can also use {fillplayers:<group>}
  93. groupLines:
  94. - '[ALIGN LEFT]&9&l{server} &6({server_player_count})&9&l:'
  95. - '[SORT=adminFirst]{fillplayers}'
  96.  
  97. # This allows you to change the way players are listed
  98. # You can also use multiple slots to display additional information
  99. playerLines:
  100. - '{displayprefix}{player}'
  101.  
  102. # These lines are shown if there's not enough space
  103. # for all players upon the tabList
  104. morePlayersLines:
  105. - '... und {other_count} weitere'
  106.  
  107. # And here finally is the tabList
  108. # Use {fillplayers} at the point where
  109. # you want the players to be shown.
  110. # You can also use {fillplayers:<group>} or {fillplayers:<server>}
  111. # Use [ALIGN BOTTOM] to state that the following
  112. # lines should be shown at the bottom of the tabList
  113. # You can also use [ALIGN LEFT]
  114. # You can use Variables to display dynamic content
  115. # more information at https://github.com/CodeCrafter47/BungeeTabListPlus/wiki
  116. tabList:
  117. - '{fillplayers}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement