Facebook
From Eratic Meerkat, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 218
  1. # This is the default configuration file of BungeeTabListPlus.
  2. #
  3. # Since the configuration of the plugin is quite complex you
  4. # might want to have a look at the wiki from time to time.
  5. #
  6. # Wiki: https://github.com/CodeCrafter47/BungeeTabListPlus/wiki
  7. #  Placeholders: https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Placeholders
  8. #  Examples: https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Examples
  9. #
  10.  
  11. # Configure who can see the tab lists
  12. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/MultipleTablists
  13. showTo: "all"
  14. priority: 0
  15.  
  16. # Configure header and footer
  17. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Configuration-Basics-Part-3---Header-and-Footer
  18. showHeaderFooter: true
  19. header:
  20.   - "&cWelcome &f${viewer name}"
  21.   - "&eW&celcome &f${viewer name}"
  22.   - "&eWe&clcome &f${viewer name}"
  23.   - "&eWel&ccome &f${viewer name}"
  24.   - "&eWelc&come &f${viewer name}"
  25.   - "&eWelco&cme &f${viewer name}"
  26.   - "&eWelcom&ce &f${viewer name}"
  27.   - "&eWelcome &f${viewer name}"
  28.   - "&cW&eelcome &f${viewer name}"
  29.   - "&cWe&elcome &f${viewer name}"
  30.   - "&cWel&ecome &f${viewer name}"
  31.   - "&cWelc&eome &f${viewer name}"
  32.   - "&cWelco&eme &f${viewer name}"
  33.   - "&cWelcom&ee &f${viewer name}"
  34.   - "&cWelcome &f${viewer name}"
  35. headerAnimationUpdateInterval: 0.2
  36. footer:
  37.   - "&4Powered by BungeeTabListPlus\n&fWiki:&7 https://github.com/CodeCrafter47/BungeeTabListPlus/wiki"
  38.   - "&4Powered by BungeeTabListPlus\n&fDonate:&7 https://tinyurl.com/DonateCodeCrafter47"
  39. footerAnimationUpdateInterval: 5
  40.  
  41. # Custom placeholders are a powerful mechanism to add more dynamic content
  42. # to the tab list.
  43. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/CustomPlaceholders
  44. customPlaceholders:
  45.   # Defines the ${afk_tag} placeholder which is used to add "|away"
  46.   # to the players name if he is afk.
  47.   afk_tag:
  48.     !conditional
  49.     condition: ${player essentials_afk}
  50.     true: "&7|&oaway"
  51.     false: ""
  52.   # Defines the ${viewer_colored_ping} placeholder which adds a color code to
  53.   # the ping using the following color scheme:
  54.   # 0 - 49   -> green
  55.   # 50 - 149 -> yellow
  56.   # 150+     -> red
  57.   viewer_colored_ping:
  58.     !conditional
  59.     condition: "${viewer ping} < 150"
  60.     true: ${viewer_colored_ping0}
  61.     false: "&c${viewer ping}"
  62.   viewer_colored_ping0:
  63.     !conditional
  64.     condition: "${viewer ping} < 50"
  65.     true: "&a${viewer ping}"
  66.     false: "&e${viewer ping}"
  67.  
  68. # Player sets are required to display players and player counts on the tab list.
  69. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Configuration-Basics-Part-4---Player-sets
  70. playerSets:
  71.   all_players:
  72.     filter: true
  73.  
  74. # Type of the tab list
  75. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Configuration-Basics-Part-5---Dynamic-Size-Tablist
  76. # and https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Configuration-Basics-Part-6---Fixed-Size-Tablist-Introduction
  77. # for different options
  78. type: FIXED_SIZE
  79. size: 60
  80.  
  81. defaultIcon: colors/dark_gray.png
  82. defaultPing: 1000
  83.  
  84. # Here the content of the tab list is configured:
  85. components:
  86.   - {text: "&cServer: &6${viewer server}", icon: "default/server.png", ping: 0}
  87.   - {text: "&cRank: &6${viewer vault_primary_group}", icon: "default/rank.png", ping: 0}
  88.   - {text: "&cPing: ${viewer_colored_ping}ms", icon: "default/ping.png", ping: 0}
  89.   -
  90.   -
  91.   -
  92.   - !players_by_server
  93.     playerSet: all_players
  94.     serverHeader:
  95.       - {text: "&e&n${server}&f&o (${server_player_count}):", icon: "colors/yellow.png", ping: 0}
  96.     serverSeparator:
  97.       -
  98.       -
  99.       -
  100.     showServers: ALL
  101.     playerComponent: "${player vault_prefix}${player name}${afk_tag}"
  102.     morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/gray.png", ping: 0}
  103.   - !spacer {}
  104.   -
  105.   -
  106.   -
  107.   - {text: "&cTime: &6${time H:mm:ss}", icon: "default/clock.png", ping: 0}
  108.   - {text: "&cPlayers: &6${playerset:all_players size}", icon: "default/players.png", ping: 0}
  109.   - {text: "&cBalance: &6${viewer vault_balance 1.2}", icon: "default/balance.png", ping: 0}
  110.