Advertisement
Oliinyk

BungeeTabListPlus raw config

Apr 19th, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.28 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. showTo: all
  12. priority: 0
  13.  
  14. showHeaderFooter: true
  15. header: |-
  16. &f
  17. &f${switch_player_message}
  18. &f
  19.  
  20. headerAnimationUpdateInterval: 0.2
  21.  
  22. footer: |-
  23. &f
  24. # &f${viewer luckperms_meta_groupcolor}${viewer luckpermsbungee_primary_group}&7: &f${viewer name} &f(&7${viewer luckperms_meta_realname}&f)
  25.  
  26. # Configure whether hidden players appear on the tab list
  27. # see https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Hidden-Players
  28. hiddenPlayers: VISIBLE_TO_ADMINS
  29.  
  30. playerSets:
  31. all_players: all
  32. main: ${player server} == "Main"
  33. factory: ${player server} == "Factory"
  34. creative: ${player server} == "Creative"
  35.  
  36. type: FIXED_SIZE
  37. size: 60
  38.  
  39. defaultIcon: colors/dark_gray.png
  40. defaultPing: 1000
  41.  
  42. components:
  43. - {text: "&7Время: &f${time H:mm:ss}", icon: "default/clock.png", ping: 0}
  44. - {text: "&7Игроков: &f${playerset:all_players size}", icon: "default/players.png", ping: 0}
  45. - {text: "&7TPS: &f${custom_tps_1}", icon: "default/ping.png", ping: 0}
  46. - {text: "", icon: "colors/black.png"}
  47. - {text: "", icon: "colors/black.png"}
  48. - {text: "", icon: "colors/black.png"}
  49. - {text: "${animated_line_main}"}
  50. - {text: "${animated_line_factory}"}
  51. - {text: "${animated_line_creative}"}
  52. - !table
  53. columns:
  54. 0:
  55. - {text: "&7Сервер: &2Main", icon: "colors/dark_green.png"}
  56. - {text: "${animated_line_main}"}
  57. - !players
  58. playerSet: main
  59. playerComponent: "${viewer luckperms_meta_groupcolor}* &f${player name} &f(&7${player luckperms_meta_realname}&f) ${afk_tag}"
  60. morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/dark_green.png", ping: 0}
  61. 1:
  62. - {text: "&7Сервер: &9Factory", icon: "colors/dark_aqua.png"}
  63. - {text: "${animated_line_factory}"}
  64. - !players
  65. playerSet: factory
  66. playerComponent: "${viewer luckperms_meta_groupcolor}* &f${player name} &f(&7${player luckperms_meta_realname}&f) ${afk_tag}"
  67. morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/dark_aqua.png", ping: 0}
  68. 2:
  69. - {text: "&7Сервер: &dCreative", icon: "colors/dark_red.png"}
  70. - {text: "${animated_line_creative}"}
  71. - !players
  72. playerSet: creative
  73. playerComponent: "${viewer luckperms_meta_groupcolor}* &f${player name} &f(&7${player luckperms_meta_realname}&f) ${afk_tag}"
  74. morePlayersComponent: {text: "&7... и еще &e${other_count} игроков!", icon: "colors/dark_red.png", ping: 0}
  75. # We want to components below to be at the very bottom of the tab list
  76. - !spacer {}
  77. # Another empty row
  78. - {text: "", icon: "colors/black.png"}
  79. - {text: "", icon: "colors/black.png"}
  80. - {text: "", icon: "colors/black.png"}
  81. - {text: "${animated_line_main}"}
  82. - {text: "${animated_line_factory}"}
  83. - {text: "${animated_line_creative}"}
  84.  
  85.  
  86. # Custom placeholders are a powerful mechanism to add more dynamic content
  87. # to the tab list.
  88. # See https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Custom=Placeholders
  89. customPlaceholders:
  90. afk_tag:
  91. !conditional
  92. condition: ${player essentials_afk}
  93. true: "&7|&oaway"
  94. false: ""
  95. viewer_colored_ping:
  96. !conditional
  97. condition: "${viewer ping} < 150"
  98. true: ${viewer_colored_ping0}
  99. false: "&c${viewer ping}"
  100. viewer_colored_ping0:
  101. !conditional
  102. condition: "${viewer ping} < 50"
  103. true: "&a${viewer ping}"
  104. false: "&e${viewer ping}"
  105.  
  106. custom_tps_1: "${viewer server_tps}"
  107.  
  108. c_tps_1:
  109. !conditional
  110. condition: "${viewer server_tps_1} >= 17.5"
  111. true: "&a${viewer server_tps_1}"
  112. false: "${c_tps_1_low}"
  113. c_tps_1_low:
  114. !conditional
  115. condition: "${viewer server_tps_1} >= 15.0"
  116. true: "&e${viewer server_tps_1}"
  117. false: "&c${viewer server_tps_1}"
  118.  
  119. c_tps_5:
  120. !conditional
  121. condition: "${viewer server_tps_5} >= 17.5"
  122. true: "&a${viewer server_tps_5}"
  123. false: "${c_tps_5_low}"
  124. c_tps_5_low:
  125. !conditional
  126. condition: "${viewer server_tps_5} >= 15.0"
  127. true: "&e${viewer server_tps_5}"
  128. false: "&c${viewer server_tps_5}"
  129.  
  130. c_tps_15:
  131. !conditional
  132. condition: "${viewer server_tps_15} >= 17.5"
  133. true: "&a${viewer server_tps_15}"
  134. false: "${c_tps_15_low}"
  135. c_tps_15_low:
  136. !conditional
  137. condition: "${viewer server_tps_15} >= 15.0"
  138. true: "&e${viewer server_tps_15}"
  139. false: "&c${viewer server_tps_15}"
  140.  
  141.  
  142. full_tps: "${viewer server_tps_1} ${viewer server_tps_5} ${viewer server_tps_15} a"
  143.  
  144. switch_player_message:
  145. !switch
  146. expression: "${viewer luckpermsbungee_primary_group}"
  147. replacements:
  148. "default": "&fПриветствуем тебя на &2OMHMS&f, ${viewer luckperms_meta_groupcolor}${viewer name}&f!\n\n Сейчас ты у нас &7гость&f и это значит, что ты пока можешь только созидать. \nЧто бы играть на нашем сервере - нужно пройти отбор.\nИзучи процесс регистрации на сайте: &bomhms.com\n"
  149. "newbie": "&fПриветствуем тебя на &2OMHMS&f, ${viewer luckperms_meta_groupcolor}${viewer name}&f!\n\n Сейчас ты &bnewbie&f и это значит, что ты пока можешь находиться \n только в Центральнои регионе. Веди себя хорошо, солюдай правила, \nи в скором времени ты сможешь стать полноценным &3игроком&f!\n"
  150. defaultReplacement: "&fРады снова тебя видеть, ${viewer luckpermsbungee_primary_groups_meta_groupcolor}*&f &7[${viewer luckperms_meta_groupcolor}${viewer luckpermsbungee_primary_group}&7] &f${viewer name} &f(&7${viewer luckperms_meta_realname}&f)!"
  151.  
  152. animated_line_main:
  153. !animated
  154. interval: 0.2
  155. elements:
  156. - "&a&2-----------------"
  157. - "&2&a-&2----------------"
  158. - "&2-&a-&2---------------"
  159. - "&2--&a-&2--------------"
  160. - "&2---&a-&2-------------"
  161. - "&2----&a-&2------------"
  162. - "&2-----&a-&2-----------"
  163. - "&2------&a-&2----------"
  164. - "&2-------&a-&2---------"
  165. - "&2--------&a-&2--------"
  166. - "&2---------&a-&2-------"
  167. - "&2----------&a-&2------"
  168. - "&2-----------&a-&2-----"
  169. - "&2------------&a-&2----"
  170. - "&2-------------&a-&2---"
  171. - "&2--------------&a-&2--"
  172. - "&2---------------&a-&2-"
  173. - "&2----------------&a-&2"
  174. - "&2-----------------&a&2"
  175. animated_line_factory:
  176. !animated
  177. interval: 0.2
  178. elements:
  179. - "&1&9-----------------"
  180. - "&9&1-&9----------------"
  181. - "&9-&1-&9---------------"
  182. - "&9--&1-&9--------------"
  183. - "&9---&1-&9-------------"
  184. - "&9----&1-&9------------"
  185. - "&9-----&1-&9-----------"
  186. - "&9------&1-&9----------"
  187. - "&9-------&1-&9---------"
  188. - "&9--------&1-&9--------"
  189. - "&9---------&1-&9-------"
  190. - "&9----------&1-&9------"
  191. - "&9-----------&1-&9-----"
  192. - "&9------------&1-&9----"
  193. - "&9-------------&1-&9---"
  194. - "&9--------------&1-&9--"
  195. - "&9---------------&1-&9-"
  196. - "&9----------------&1-&9"
  197. - "&9-----------------&1&9"
  198. animated_line_creative:
  199. !animated
  200. interval: 0.2
  201. elements:
  202. - "&d&5-----------------"
  203. - "&5&d-&5----------------"
  204. - "&5-&d-&5---------------"
  205. - "&5--&d-&5--------------"
  206. - "&5---&d-&5-------------"
  207. - "&5----&d-&5------------"
  208. - "&5-----&d-&5-----------"
  209. - "&5------&d-&5----------"
  210. - "&5-------&d-&5---------"
  211. - "&5--------&d-&5--------"
  212. - "&5---------&d-&5-------"
  213. - "&5----------&d-&5------"
  214. - "&5-----------&d-&5-----"
  215. - "&5------------&d-&5----"
  216. - "&5-------------&d-&5---"
  217. - "&5--------------&d-&5--"
  218. - "&5---------------&d-&5-"
  219. - "&5----------------&d-&5"
  220. - "&5-----------------&d&5"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement