Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.16 KB | None | 0 0
  1. # Default FeatherBoard comes with a board called "default". All players have the permission
  2. # featherboard.group.default (by default) meaning all players should see the scoreboard unless
  3. # the permission is negated.
  4.  
  5. # Example of the use of settings
  6. # This section is optional
  7. settings:
  8. # If you quickly want to change the
  9. # the label color change it here.
  10. # It replaces $setting_label-color$ throughout the entire config
  11. label-color: "&d"
  12. # Show or hide the health
  13. # This is an example of the script
  14. show-health: true
  15. # The priority of the scoreboard. The higher the number -> higher priority
  16. # Used when having more than one scoreboard assigned
  17. priority: 10
  18.  
  19. # Example of pre processing script
  20. # This section is optional
  21. script-pre: |
  22. if (settings['show-health'] == true){
  23. board.getMeta().setSetting("enable-health","");
  24. }else{
  25. board.getMeta().setSetting("enable-health","|disabled|");
  26. }
  27.  
  28. # This section is required. Those are your scoreboard lines
  29. lines:
  30. # Every section here are different lines. The first section will be used as the title
  31. # the following sections will be used as the lines on the scoreboard (max 15)
  32. # Just as the scoreboard names you can name these 'lines' whatever you want. But to make
  33. # things simple I will use logical names such as "title", "spacer", "header", ...
  34. title:
  35. # Every line has its own frames. The animation will loop through these frames on intervals
  36. # that you configure below.
  37. # Put all your frames under 'text:'. You can make as many lines as you want and use
  38. # placeholders and preset effects.
  39. # Keep in mind that there is a limit in line width!
  40. frames:
  41. # To create cool looking animations you create yourself
  42. # you can use the graphical tool AnimationCreator
  43. # https://www.spigotmc.org/resources/animationcreator.6001/
  44. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  45. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  46. - '<single><delay times="10">&l><</delay></single>'
  47. - '<single>&5&lG</single>' # <single> will allow the frame to only run ONCE
  48. - '<single>&5&lG&fa</single>'
  49. - '<single>&5&lGa&fl</single>'
  50. - '<single>&5&lGala&fx</single>'
  51. - '<single>&5&lGalax&fy</single>'
  52. - '<single>&5&lGalaxy&fM</single>'
  53. - '<single>&5&lGalaxyM&fC</single>'
  54. - ' <delay times="15">&5&lGalaxyMC</delay>' # <delay> will repeat the line X times
  55. #- '<glow glowsize="5">FeatherBoard</glow>' # This is the basic glow effect without custom colors
  56. - '<glow glowsize="5" startglowcolor="&c&l" glowcolor="&4&l" endglowcolor="&c&l" normalcolor="&f&l">GalaxyMC</glow>'
  57. # Interval is the animation interval in TICKS (20 ticks is one second).
  58. # Every X ticks the animation goes to the next frame (see above)
  59. # Once all frames are finished it will start over from the first one
  60. interval: 2
  61. # If you don't want a static order of the frames and want to show each frame at random
  62. # you can enable this option.
  63. random: false
  64. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  65. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  66. # These lines (usually a header or footer) are also good for decoration.
  67. header:
  68. frames:
  69. interval: 10
  70. random: true
  71. player-label:
  72. frames:
  73. - '&b&l> $setting_label-color$&lPlayer Info:'
  74. interval: 100
  75. random: false
  76. player-line1:
  77. frames:
  78. - '&o<cmd repeatmiddle="20">{player}</cmd>'
  79. - '&o<cmd repeatmiddle="20">{locale}</cmd>'
  80. interval: 2
  81. random: false
  82. player-line2:
  83. frames:
  84. - '{ping} &7ms latency'
  85. interval: 2
  86. random: false
  87. # For empty lines just add another 'section' but just don't put any text
  88. # in it so it acts like an empty line.
  89. spacer1:
  90. frames: []
  91. interval: 100
  92. random: false
  93. news-info:
  94. frames:
  95. - '&b&l> $setting_label-color$&lNews:'
  96. interval: 100
  97. random: false
  98. news:
  99. # Lets create some animated news
  100. # News is something you need to write quick
  101. # and usually you don't want to spend ages on creating
  102. # some cool effect. That is why FeatherBoard features
  103. # several presets you can use.
  104. frames:
  105. - '<scroll width="29">&cAttention! &7Please do not forget to give this plugin a &e{star_galaxy}{star_galaxy}{star_galaxy}{star_galaxy}{star_galaxy}&7 rating!</scroll>'
  106. interval: 2 # When using preset effects. The interval will apply to that effect
  107. # Do you want to randomize the animation frames?
  108. random: false
  109. # For empty lines just add another 'section' but just don't put any text
  110. # in it so it acts like an empty line.
  111. spacer2:
  112. frames: []
  113. interval: 100
  114. random: false
  115. timesplayed-label: #Switch between site, times played and health
  116. text:
  117. - '&b&l> $setting_label-color$&lSite:'
  118. - '&b&l> $setting_label-color$&lPlayed:'
  119. - '$setting_enable-health$&b&l> $setting_label-color$&lHealth:'
  120. interval: 100
  121. random: false
  122. timesplayed: #Switch between site, times played and health
  123. frames:
  124. - 'www.mvdw-software.com'
  125. - '{stat_timesplayed}'
  126. - '$setting_enable-health${healthbar}'
  127. interval: 100
  128. random: false
  129. # For empty lines just add another 'section' but just don't put any text
  130. # in it so it acts like an empty line.
  131. spacer3:
  132. frames: []
  133. interval: 100
  134. random: false
  135. server-label:
  136. frames:
  137. - '&b&l> $setting_label-color$&lServer Info:'
  138. interval: 100
  139. random: false
  140. server-line1:
  141. frames:
  142. - '<repeat times=200>{usedram} &7MB &8&l/ &f{totalram} &7MB</repeat>' #Refresh the ram 200 times
  143. - '<repeat times=100>{tps_rounded} &7TPS &7&o(Avg {avgtps_rounded})</repeat>' #Refresh the tps 100 times
  144. interval: 1
  145. random: false
  146. server-line2:
  147. frames:
  148. - '{onlineplayers} &aonline players'
  149. interval: 10
  150. random: false
  151. # This is the same as the header. It is not needed since you already use the header as the longest line
  152. # but it looks cleaner having a footer.
  153. footer:
  154. frames:
  155. interval: 10
  156. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement