Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.79 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. # 2000+ 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. # Anti Flicker will use a new engine that will allow you to use fast animations
  75. # without any flicker. This is an EXPERIMENTAL feature and it asked to post bugs
  76. # and problems that only occur with this option enabled in a Spigot private message.
  77. # Using this option shortens the maximum length for 1.8 servers to around 26~28 chars
  78. # but this is an increase for 1.7 clients (that default only have 16 characters)
  79. # IF YOU ARE HAVING PROBLEMS. TRY TO TURN THIS OFF FIRST
  80. antiflicker: true
  81.  
  82. # A list of different scoreboards
  83. boards:
  84. default:
  85. title: # The first element in the group will be title.
  86. # We will show the server name animated, with a glow effect every 20 sec
  87. text:
  88. - ' <delay times=20>&f&lMINESECURE</delay> '
  89. - ' &e&lM&f&lINESECURE '
  90. - ' &6&lM&e&lI&f&lNESECURE '
  91. - ' &e&lM&6&lI&e&lN&f&lESECURE '
  92. - ' &f&lM&e&lI&6&lN&e&lE&f&lSECURE '
  93. - ' &f&lMI&e&lN&6&lE&e&lS&f&lECURE '
  94. - ' &f&lMIN&e&lE&6&lS&e&lE&f&lCURE '
  95. - ' &f&lMINE&e&lS&6&lE&e&lC&f&lURE '
  96. - ' &f&lMINES&e&lE&6&lC&e&lU&f&lRE '
  97. - ' &f&lMINESE&e&lC&6&lU&e&lR&f&lE '
  98. - ' &f&lMINESEC&e&lU&6&lR&e&lE '
  99. - ' &f&lMINESECU&e&lR&6&lE '
  100. - ' &f&lMINESECUR&e&lE '
  101. - ' &f&lMINESECURE '
  102. # Interval the animation loops in ticks (20 ticks = 1 sec)
  103. # If you need waiting intervals look at the DELAY placeholder
  104. interval: 3
  105. # Do you want to randomize the animation frames?
  106. random: false
  107. header: # A header is recommended to make sure the scoreboard remains the same size
  108. text:
  109. - '&6~~~~~~~~~~~~~~~~~~~~~'
  110. interval: 100
  111. random: false
  112. player-label: # You can add elements to the group and name them like you want
  113. # Lets make a static label
  114. text:
  115. - '&b&l> &e&lPlayer:'
  116. interval: 100 # The interval is not important since its just 1 static text.
  117. # Do you want to randomize the animation frames?
  118. random: false
  119. player: # Under the label we will show the actual player name
  120. text:
  121. - '<delay times=4>&f&o{PLAYER}</delay>'
  122. - '<delay times=1>&7x:&f{x} &7y:&f{y} &7z:&f{z}</delay>'
  123. interval: 100
  124. # Do you want to randomize the animation frames?
  125. random: false
  126. spacer-player: # This is a spacer an empty line
  127. text:
  128. - ''
  129. interval: 100
  130. # Do you want to randomize the animation frames?
  131. random: false
  132. news-label:
  133. text:
  134. - '&b&l> &e&lNews:'
  135. interval: 100
  136. # Do you want to randomize the animation frames?
  137. random: false
  138. news:
  139. # Lets create some animated news
  140. # News is something you need to write quick
  141. # and usually you don't want to spend ages on creating
  142. # some cool effect. That is why FeatherBoard features
  143. # several presets you can use.
  144. text:
  145. - '<scroll width=28>&cBreaking news! &7This server is now using one of the coolest plugins ever!</scroll>'
  146. interval: 1 # When using preset effects. The interval will apply to that effect
  147. # Do you want to randomize the animation frames?
  148. random: false
  149. spacer-news: # Another spacer (empty line)
  150. text:
  151. - ''
  152. interval: 100
  153. random: false
  154. moneytimesplayed-label: #Switch between site, times played and health
  155. text:
  156. - '&b&l> &e&lSite:'
  157. - '&b&l> &e&lPlayed:'
  158. - '&b&l> &e&lHealth:'
  159. interval: 100
  160. random: false
  161. moneytimesplayed: #Switch between site, times played and health
  162. text:
  163. - 'www.mvdw-sofware.com'
  164. - '{stat_timesplayed}'
  165. - '{healthbar}'
  166. interval: 100
  167. random: false
  168. spacer-money: # Another spacer (empty line) again you don't need to call this 'spacer'
  169. text:
  170. - ''
  171. interval: 100
  172. random: false
  173. server-label: # Server status label
  174. text:
  175. - '&b&l> &e&lServer Status:'
  176. interval: 100
  177. random: false
  178. server: # Server status (ram and tps)
  179. text:
  180. - '<repeat times=200>{usedram} &7MB &8&l/ &f{totalram} &7MB</repeat>' #Refresh the ram 200 times
  181. - '<repeat times=100>{tps_rounded} &7TPS &7&o(Avg {avgtps_rounded})</repeat>' #Refresh the tps 100 times
  182. interval: 1
  183. random: false
  184. footer: # A footer is recommended to make sure the scoreboard remains the same size
  185. text:
  186. - '&6~~~~~~~~~~~~~~~~~~~~~'
  187. interval: 100
  188. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement