Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Jul 12th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.04 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: 'en'
  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. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  59. # PLUGIN SPECIFIC SETTINGS
  60. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  61.  
  62. # Tweaks to increase performance (Use at own risk)
  63. tweaks:
  64. # This option does not send scoreboard remove packets
  65. # to the client on quit. This can increase performance on servers
  66. # where players quit a lot (hubs, ...)
  67. #
  68. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  69. # /data folder
  70. #
  71. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  72. keepScoreboardOnQuit: false
  73.  
  74.  
  75. # Anti Flicker will use a new engine that will allow you to use fast animations
  76. # without any flicker. This is an EXPERIMENTAL feature and it asked to post bugs
  77. # and problems that only occur with this option enabled in a Spigot private message.
  78. # Using this option shortens the maximum length for 1.8 servers to around 26~28 chars
  79. # but this is an increase for 1.7 clients (that default only have 16 characters)
  80. # IF YOU ARE HAVING PROBLEMS. TRY TO TURN THIS OFF FIRST
  81. antiflicker: true
  82.  
  83. # A list of different scoreboards
  84. boards:
  85. default:
  86. title: # The first element in the group will be title.
  87. # We will show the server name animated, with a glow effect every 20 sec
  88. text:
  89. text:
  90. - '&8« »'
  91. - '&8« &b&lR&8 »'
  92. - '&8« &b&lRe&8 »'
  93. - '&8« &b&lRec&8 »'
  94. - '&8« &b&lRect&8 »'
  95. - '&8« &b&lRecto&8 »'
  96. - '&8« &b&lRectox&8 »'
  97. - '&8« &b&lRectoxM&8 »'
  98. - '&8« &b&lRectoxMC&8 »'
  99. - '&8« &b&lRectoxMC&8 »'
  100. - '&8« &b&lRectoxMC&8 »'
  101. - '&8« &b&lRectoxMC&8 »'
  102. - '&8« &b&lRectoxMC&8 »'
  103. - '&8« &b&lRectoxMC&8 »'
  104. - '&8« &b&lRectoxMC&8 »'
  105. - '&8« &b&lRectoxMC&8 »'
  106. - '&8« &b&lRectoxMC&8 »'
  107. - '&8« &b&lRectoxMC&8 »'
  108. - '&8« &b&lRectoxMC&8 »'
  109. - '&8» &8&lRectoxMC&8 «'
  110. - '&8» &b&lRectoxM&8 «'
  111. - '&8» &b&lRectox&8 «'
  112. - '&8» &b&lRecto&8 «'
  113. - '&8» &b&lRect&8 «'
  114. - '&8» &b&lRec&8 «'
  115. - '&8» &b&lRe&8 «'
  116. - '&8» &b&lR&8 «'
  117. - '&8» «'
  118. interval: 2
  119. random: false
  120. # Interval the animation loops in ticks (20 ticks = 1 sec)
  121. # If you need waiting intervals look at the DELAY placeholder
  122. interval: 5
  123. # Do you want to randomize the animation frames?
  124. random: false
  125. header: # A header is recommended to make sure the scoreboard remains the same size
  126. text:
  127. - '&8&m------------------------'
  128. interval: 100
  129. random: false
  130. player-label:
  131. text:
  132. - '&3&lWelcome:'
  133. random: false
  134. rank-player: # This is a spacer an empty line
  135. text:
  136. - '&8» &b{player}'
  137. interval: 100
  138. random: false
  139. spac32: # Another spacer (empty line)
  140. text:
  141. - ''
  142. interval: 100
  143. random: false
  144. online-label:
  145. text:
  146. - '&3Ping'
  147. interval: 100
  148. # Do you want to randomize the animation frames?
  149. random: false
  150. PinginMs: # Another spacer (empty line)
  151. text:
  152. - '&8» &b{ping}ms'
  153. interval: 10
  154. random: false
  155.  
  156. spacer-news: # Another spacer (empty line)
  157. text:
  158. - ''
  159. interval: 100
  160. random: false
  161. player: # Under the label we will show the actual player name
  162. text:
  163. - '&3&lNetwork Statistics:'
  164. interval: 100
  165. random: false
  166. spacer-money: # Another spacer (empty line) again you don't need to call this 'spacer'
  167. text:
  168. - '&8● &3Factions: &8【&b{bungeecount@factions}&8】'
  169. interval: 100
  170. random: false
  171. poplulation-data:
  172. text:
  173. - '&8● &3SkyPvP: &8【&b{bungeecount@skypvp}&8】'
  174. interval: 100
  175. random: false
  176. skywars-data:
  177. text:
  178. - '&8● &3Practice: &8【&b{bungeecount@practice}&8】'
  179. interval: 100
  180. random: false
  181. skyblock-data:
  182. text:
  183. - '&8● &3SkyBlock: &8【&b{bungeecount@skyblock}&8】'
  184. interval: 100
  185. random: false
  186. nothing-data-spacer:
  187. text:
  188. - ''
  189. interval: 100
  190. random: false
  191. townboard-label:
  192. text:
  193. - '&3Facebook&8: <scroll width=20 spaces=20>&ffacebook.com/RectoxMC</scroll>'
  194. interval: 7
  195. random: false
  196. zadnja:
  197. text:
  198. - '&8&m------------------------'
  199. interval: 100
  200. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement