Advertisement
Guest User

Tab_CONFIG

a guest
Jul 31st, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # Tab 3.0.0
  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) (200+)
  32.  
  33. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  34. # GENERAL PLUGIN SETTINGS
  35. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  36.  
  37. ## Config version (DO NOT EDIT)
  38. config: 4
  39.  
  40. ## Language file
  41. lang: 'en'
  42.  
  43. ## Debug mode
  44. debug: false
  45.  
  46. ## Log to file
  47. log: true
  48.  
  49. ## Update checking
  50. update:
  51. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  52.  
  53. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  54. # PLUGIN SPECIFIC SETTINGS
  55. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  56.  
  57. # Tab Header and footer
  58. tab:
  59. # You can create multiple groups to send
  60. # different tablists to different players
  61. default:
  62. header:
  63. # The header supports color codes
  64. # Add: 'DELAY #' To set a delay (example: DELAY 500
  65. text:
  66. - '&7&lMine&c&lDroid'
  67. - '&c&lMine&7&lDroid'
  68. # The interval in ticks to switch text (20 ticks = 1 sec)
  69. interval: 15
  70. # Define if the text should be randomized. Animation formatting tags
  71. # won't be affected.
  72. random: false
  73. footer:
  74. # The footer supports color codes
  75. # Add: 'DELAY #' To set a delay (example: DELAY 500
  76. text:
  77. - '&c&lwww.minedroid.biz'
  78. - '&7&lwww.minedroid.biz'
  79. # The interval in ticks to switch text (20 ticks = 1 sec)
  80. interval: 15
  81. # Define if the text should be randomized. Animation formatting tags
  82. # won't be affected.
  83. random: false
  84.  
  85. # An example of a group would be vip (tab.group.vip)
  86. # For example you could remove the footer that says Vote now! or
  87. # in this example the site url.
  88.  
  89. # Tab colors. If you want colors tab names in the tablist give permissions
  90. # to groups to match that color. Keep note: make sure to give negative permissions
  91. # when you have inheritance between groups.
  92. #
  93. # If you have a wildcard permission, give youself negative permissions
  94. #
  95. # Permissions:
  96. # tab.color.<colorname>
  97. # Dark colors:
  98. # tab.color.dark<colorname>
  99. # See the spigot page for more details
  100. tabcolors: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement