Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Feb 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # FeatherBoard 1.9.0
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. #
  7. # ------------------------------ #
  8.  
  9. # Permissions: To use the action groups give them the permission
  10. # featherboard.group.<group>
  11. # Make sure to remove them from the other groups
  12. # when giving a new permission.
  13.  
  14. # Variables: These variables can be used in the TEXT section
  15. # of both the header as the footer.
  16. #
  17. # {PLAYER} - Player name
  18. # {PLAYERNICK} - Player nickname
  19. # {SERVER} - Server name
  20. # {PLAYERCOUNT} - Server player count
  21. # {BUNGEECOUNT} - Bungee network player count
  22. # 850+ more ... see spigot page
  23.  
  24. # Formatting: These are formatting tags allowing you to format the animations
  25. # or placeholders.
  26. #
  27. # Substring: This allows you to split a word (even a placeholder) in parts
  28. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  29. # usage: This can be used to split placeholders when creating a typewriter
  30. # or to split the colors in a placeholder.
  31. #
  32. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  33. # two arguments (the length and space between scrolls).
  34. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  35. #
  36. # PLENTY MORE! See spigot page
  37.  
  38. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  39. # GENERAL PLUGIN SETTINGS
  40. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  41.  
  42. ## Config version (DO NOT EDIT)
  43. config: 1
  44.  
  45. ## Language file
  46. lang: 'hu'
  47.  
  48. ## Debug mode
  49. debug: false
  50.  
  51. ## Log to file
  52. log: true
  53.  
  54. ## Update checking
  55. update:
  56. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  57.  
  58. disabled-worlds:
  59. - I4mExotiq
  60.  
  61. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  62. # PLUGIN SPECIFIC SETTINGS
  63. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  64.  
  65. # Tweaks to increase performance (Use at own risk)
  66. tweaks:
  67. # This option does not send scoreboard remove packets
  68. # to the client on quit. This can increase performance on servers
  69. # where players quit a lot (hubs, ...)
  70. #
  71. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  72. # /data folder
  73. #
  74. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  75. keepScoreboardOnQuit: true
  76. # Disabled worlds. Add your world name in this list to disable it.
  77. disabled-worlds:
  78. - 'Auth'
  79.  
  80.  
  81. # Anti Flicker will use a new engine that will allow you to use fast animations
  82. # without any flicker. This is an EXPERIMENTAL feature and it asked to post bugs
  83. # and problems that only occur with this option enabled in a Spigot private message.
  84. # Using this option shortens the maximum length for 1.8 servers to around 26~28 chars
  85. # but this is an increase for 1.7 clients (that default only have 16 characters)
  86. # IF YOU ARE HAVING PROBLEMS. TRY TO TURN THIS OFF FIRST
  87. antiflicker: true
  88.  
  89. # A list of different scoreboards
  90. boards:
  91. default:
  92. title:
  93. text:
  94. - '&8--= &6&lMaster&f&lGuild &8=--'
  95. interval: 10
  96. random: false
  97. üres1:
  98. text:
  99. - '&8&m-------------------'
  100. Auth:
  101. text:
  102. - '&8� &3&l{playername}:'
  103. interval: 1
  104. �res2:
  105. text:
  106. - '&8� &7Pinged: &b{ping}'
  107. interval: 1
  108. Elosztó:
  109. text:
  110. - '&8� &7P�nzed: &b{money}'
  111. interval: 1
  112. SkyPvP:
  113. text:
  114. - '&8� &7Id�: &b{time}'
  115. interval: 1
  116. SkyMini:
  117. text:
  118. - '&8� &7�l�sek: &b{stat_kills}'
  119. interval: 1
  120. �res3:
  121. text:
  122. - '&8� &7Hal�lok: &b{stat_deaths}'
  123. interval: 1
  124. üres3:
  125. text:
  126. - '&8� &7Rangod: &b{group}'
  127. interval: 10
  128. �res4:
  129. text:
  130. - '&8'
  131. interval: 1
  132. FulPvP:
  133. text:
  134. - '&8� &3&lSzerver:'
  135. interval: 1
  136. servers:
  137. text:
  138. - '&8� &7SkyPvP'
  139. servers2:
  140. text:
  141. - '&8� &7El�rhet�: &b{onlineplayers}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement