Guest User

Untitled

a guest
Oct 22nd, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 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 tab list for VIPs / Admins or
  10. # - a tab list that is only shown on one server
  11. # You can find more information on the wiki https://github.com/CodeCrafter47/BungeeTabListPlus/wiki
  12. #
  13.  
  14. showTo: "all"
  15.  
  16. priority: 23
  17.  
  18. type: FIXED_SIZE
  19.  
  20. showHeaderFooter: false
  21.  
  22. header:
  23. - 'dd'
  24.  
  25. headerAnimationUpdateInterval: 0.2
  26.  
  27. footer:
  28. - |-
  29. &aIP: Noctus.me
  30.  
  31. footerAnimationUpdateInterval: 0.5
  32.  
  33. customPlaceholders:
  34. afk_tag:
  35. !conditional
  36. condition: ${player essentials_afk}
  37. true: '&7|&oaway'
  38. false: ''
  39. viewer_colored_ping0:
  40. !conditional
  41. condition: "${viewer ping} < 50"
  42. true: "&a${viewer ping}"
  43. false: "&e${viewer ping}"
  44. viewer_colored_ping:
  45. !conditional
  46. condition: "${viewer ping} < 150"
  47. true: ${viewer_colored_ping0}
  48. false: "&c${viewer ping}"
  49.  
  50. defaultIcon: colors/dark_gray.png
  51. defaultPing: 1000
  52. size: 60
  53. playerSets:
  54. global:
  55. filter: "true"
  56. Hub:
  57. filter: |-
  58. ${player server} == "Hub"
  59. Survival:
  60. filter: |-
  61. ${player server} == "Survival"
  62. Creative:
  63. filter: |-
  64. ${player server} == "Creative"
  65. Mini-Games:
  66. filter: |-
  67. ${player server} == "Mini-Games"
  68. components:
  69. - !table
  70. columns:
  71. 0:
  72. - {text: "&2&lSurvival", icon: "colors/dark_green.png", ping: 0, alignment: CENTER}
  73. - !players
  74. playerSet: Survival
  75. playerComponent: {text: "${player vault_prefix}${player name}${afk_tag}", icon: "${player skin}", ping: "${player ping}"}
  76. morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/dark_green.png", ping: 0}
  77. 1:
  78. - {text: "&3&lMini-Games", icon: "colors/dark_aqua.png", ping: 0, alignment: CENTER}
  79. - !players
  80. playerSet: Mini-Games
  81. playerComponent: {text: "${player vault_prefix}${player name}${afk_tag}", icon: "${player skin}", ping: "${player ping}"}
  82. morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/dark_aqua.png", ping: 0}
  83. - !spacer {}
  84. - {text: "&7&lHub", icon: "colors/gray.png", ping: 0, alignment: CENTER}
  85. - !players
  86. playerSet: Hub
  87. playerComponent: {text: "${player vault_prefix}${player name}${afk_tag}", icon: "${player skin}", ping: "${player ping}"}
  88. morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/dark_aqua.png", ping: 0}
  89. - !spacer {}
  90. 2:
  91. - {text: "&4&lCreative", icon: "colors/dark_red.png", ping: 0, alignment: CENTER}
  92. - !players
  93. playerSet: Creative
  94. playerComponent: {text: "${player vault_prefix}${player name}${afk_tag}", icon: "${player skin}", ping: "${player ping}"}
  95. morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/dark_red.png", ping: 0}
Add Comment
Please, Sign In to add comment