Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  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: '${viewer server} == "lobby"'
  14. priority: 10
  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. - |-
  21. &6&lFaites &b&l/menu
  22. &8&lDiscord : &r&7discord.gg/RQMdGwn
  23. &8&lTS : &r&7mineera.fr
  24. &8&lSite : &r&7mineera.fr
  25.  
  26. headerAnimationUpdateInterval: 0.2
  27.  
  28. footer:
  29. - |-
  30. &b&l/vote &r&3pour récompense
  31.  
  32. footerAnimationUpdateInterval: 0.5
  33.  
  34. # Configure whether hidden players appear on the tab list
  35. # see https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Hidden-Players
  36. hiddenPlayers: VISIBLE_TO_ADMINS
  37.  
  38. # Custom placeholders are a powerful mechanism to add more dynamic content
  39. # to the tab list.
  40. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/CustomPlaceholders
  41. customPlaceholders:
  42. # Defines the ${afk_tag} placeholder which is used to add "|away"
  43. # to the players name if he is afk.
  44. afk_tag:
  45. !conditional
  46. condition: ${viewer essentials_afk}
  47. true: "&7|&oaway"
  48. false: ""
  49. # Defines the ${viewer_colored_ping} placeholder which adds a color code to
  50. # the ping using the following color scheme:
  51. # 0 - 49 -> green
  52. # 50 - 149 -> yellow
  53. # 150+ -> red
  54. viewer_colored_ping:
  55. !conditional
  56. condition: "${viewer ping} < 150"
  57. true: ${viewer_colored_ping0}
  58. false: "&c${viewer ping}"
  59. viewer_colored_ping0:
  60. !conditional
  61. condition: "${viewer ping} < 50"
  62. true: "&a${viewer ping}"
  63. false: "&e${viewer ping}"
  64.  
  65. # Player sets are required to display players and player counts on the tab list.
  66. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Configuration-Basics-Part-4---Player-sets
  67. playerSets:
  68. global:
  69. filter: "true"
  70. lobby:
  71. filter: |-
  72. ${player server} == ${viewer server}
  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: DYNAMIC_SIZE
  79. playerSet: lobby
  80.  
  81. playerOrder: "luckpermsbungee_primary_group_weight asc,name"
  82.  
  83. playerComponent: "${player vault_suffix}${player name}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement