Advertisement
Guest User

Tab_CONFIG

a guest
Aug 26th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # Tab 5
  4. # (c) Maxim Van de Wynckel
  5. #
  6. # ------------------------------ #
  7.  
  8. # About: Minecraft 1.8 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) (1800+)
  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: false
  49. # Reset log on startup
  50. reset: true
  51.  
  52. ## Update checking
  53. update:
  54. check: false # RECOMMENDED YOU LEAVE THIS TRUE
  55.  
  56. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  57. # PLUGIN SPECIFIC SETTINGS
  58. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  59.  
  60. # Placeholder settings
  61. placeholder:
  62. # logs the memory usage of placeholders on startup
  63. log-memory: false
  64. # Clear unused placeholders that are not enabled.
  65. clear-unused: true
  66.  
  67. # Tab Header and footer
  68. tab:
  69. # You can create multiple groups to send
  70. # different tablists to different players
  71. default:
  72. header:
  73. # The header supports color codes
  74. # Add: 'DELAY #' To set a delay (example: DELAY 500
  75. text:
  76. - ' <delay times=15>&f&lOPFACTIONS</delay> '
  77. - ' &b&lO&f&lPFACTIONS '
  78. - ' &9&lO&b&lP&f&lFACTIONS '
  79. - ' &b&lO&9&lP&b&lF&f&lACTIONS '
  80. - ' &f&lO&b&lP&9&lF&b&lA&f&lCTIONS '
  81. - ' &f&lOP&b&lF&9&lA&b&lC&f&lTIONS '
  82. - ' &f&lOPF&b&lA&9&lC&b&lT&f&lIONS '
  83. - ' &f&lOPFA&b&lC&9&lT&b&lI&f&lONS '
  84. - ' &f&lOPFAC&b&lT&9&lI&b&lO&f&lNS '
  85. - ' &f&lOPFACT&b&lI&9&lO&b&lN&f&lS '
  86. - ' &f&lOPFACTI&b&lO&9&lN&b&lS '
  87. - ' &f&lOPFACTIO&b&lN&9&lS '
  88. - ' &f&lOPFACTION&b&lS '
  89. # Interval the animation loops in ticks (20 ticks = 1 sec)
  90. # If you need waiting intervals look at the DELAY placeholder
  91. interval: 3
  92. # Do you want to randomize the animation frames?
  93. random: false
  94. footer:
  95. # The footer supports color codes
  96. # Add: 'DELAY #' To set a delay (example: DELAY 500
  97. text:
  98. - '&f● &b&lWWW &8. &9&lMINE&b&lSUPERIOR &8. &b&lCOM &f●'
  99.  
  100. # The interval in ticks to switch text (20 ticks = 1 sec)
  101. interval: 2
  102. # Define if the text should be randomized. Animation formatting tags
  103. # won't be affected.
  104. random: false
  105.  
  106.  
  107. # An example of a group would be vip (tab.group.vip)
  108. # For example you could remove the footer that says Vote now! or
  109. # in this example the site url.
  110.  
  111. # Tab colors. If you want colors tab names in the tablist give permissions
  112. # to groups to match that color. Keep note: make sure to give negative permissions
  113. # when you have inheritance between groups.
  114. #
  115. # If you have a wildcard permission, give youself negative permissions
  116. #
  117. # Permissions:
  118. # tab.color.<colorname>
  119. # Dark colors:
  120. # tab.color.dark<colorname>
  121. # See the spigot page for more details
  122. tabcolors: false
  123.  
  124. # Nicknames in tab with tabcolors true
  125. tabcolors-nicknames: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement