Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.01 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # Tab 6
  4. # (c) Maxim Van de Wynckel
  5. #
  6. # ------------------------------ #
  7.  
  8. # About: Minecraft 1.8 and higher features a tab header and footer
  9. # This plugin will allow you to create a customizable tab
  10. # header and footer.
  11. #
  12. # This plugin supports variables.
  13.  
  14. # Permissions: To use the tab groups give them the permission
  15. # tab.group.<group> (ex. tab.group.default)
  16. # Make sure to remove them from the other groups
  17. # when giving a new permission.
  18.  
  19. # Commands: List of all commands
  20. # /tab reload - Reload the configuration
  21. # /tab help - See all commands
  22.  
  23. # Variables: These variables can be used in the TEXT section
  24. # of both the header as the footer.
  25. #
  26. # {PLAYER} - Player name
  27. # {PLAYERNICK} - Player nickname
  28. # {SERVER} - Server name
  29. # {PLAYERCOUNT} - Server player count
  30. # {BUNGEECOUNT} - Bungee network player count
  31. # And lots lots more (see Spigot Page) (5000+)
  32.  
  33. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  34. # GENERAL PLUGIN SETTINGS
  35. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  36.  
  37. ## Config version (DO NOT EDIT)
  38. config: 5
  39.  
  40. ## Language file
  41. lang: 'en'
  42.  
  43. ## Debug mode
  44. debug: false
  45.  
  46. ## Log to file
  47. log:
  48. enabled: true
  49. # Reset log on startup
  50. reset: true
  51.  
  52. ## Update checking
  53. update:
  54. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  55.  
  56. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  57. # PLUGIN SPECIFIC SETTINGS
  58. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  59.  
  60. # Placeholder settings
  61. placeholder:
  62. # Force install all placeholders (NOT RECOMMENDED)
  63. force-all: false
  64. # logs the memory usage of placeholders on startup
  65. log-memory: false
  66. # Clear unused placeholders that are not enabled.
  67. clear-unused: true
  68. # Config cache only
  69. # This will only use placeholders in the config
  70. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  71. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  72. config-cache: false
  73.  
  74. # Tab Header and footer
  75. tab:
  76. # You can create multiple groups to send
  77. # different tablists to different players
  78. default:
  79. # The tab header is situated on the top of the tablist
  80. header:
  81. # The header supports color codes
  82. frames: # Use \n to split lines
  83. - '&9&l{175} <glow normalcolor="&c&l" glowcolor="&8&l" startglowcolor="&c&l" endglowcolor="&8&l"&b&m-----&7[&8&lCyber &c&lExtreme&7]&b&m-----/glow> &9&l{174} \n &e&l~ &6&l<fullwidth>&9&l >Welcome &97l</fullwidth> &e&l~'
  84. # The interval in ticks to switch text (20 ticks = 1 sec)
  85. interval: 2
  86. # Define if the text should be randomized. Animation formatting tags
  87. # won't be affected.
  88. random: false
  89. # The tab footer is situated on the bottom of the tablist (below all the names)
  90. footer:
  91. # The footer supports color codes
  92. frames:
  93. - '&8&lONLINE PLAYERS &c&l> &7{onlineplayers}&c&l< \n &a&lFaction Name &c&l> {factions_faction_name} &c&l<'
  94. # The interval in ticks to switch text (20 ticks = 1 sec)
  95. interval: 2
  96. # Define if the text should be randomized. Animation formatting tags
  97. # won't be affected.
  98. random: false
  99.  
  100. # An example of a group would be vip (tab.group.vip)
  101. # For example you could remove the footer that says Vote now! or
  102. # in this example the site url.
  103.  
  104. # Tab colors. If you want colors tab names in the tablist give permissions
  105. # to groups to match that color. Keep note: make sure to give negative permissions
  106. # when you have inheritance between groups.
  107. #
  108. # If you have a wildcard permission, give youself negative permissions
  109. #
  110. # Permissions:
  111. # tab.color.<colorname>
  112. # Dark colors:
  113. # tab.color.dark<colorname>
  114. # See the spigot page for more details
  115. tabcolors: true
  116.  
  117. # Nicknames in tab with tabcolors true
  118. tabcolors-nicknames: true
  119.  
  120. # Live checking for tab color changes
  121. # When disabled your color is only set upon login
  122. tabcolor-livecheck: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement