Guest User

Untitled

a guest
Jul 5th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.48 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: "&e"
  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. - '<glow glowsize="6" startglowcolor="&3&l" glowcolor="&b&l" endglowcolor="&3&l" normalcolor="&7&l">Life in Sky</glow>'
  47. #- '<single><delay times="10">&l><</delay></single>'
  48. #- '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  49. #- '<single>&f&lherB</single>'
  50. #- '<single>&f&lherBo</single>'
  51. #- '<single>&f&latherBoa</single>'
  52. #- '<single>&f&leatherBoar</single>'
  53. #- ' <delay times="15">&f&lFe&4&l4&f&ltherBoard</delay>' # <delay> will repeat the line X times
  54. #- '<glow glowsize="5">FeatherBoard</glow>' # This is the basic glow effect without custom colors
  55. #- '<glow glowsize="5" startglowcolor="&c&l" glowcolor="&4&l" endglowcolor="&c&l" normalcolor="&f&l">FeatherBoard</glow>'
  56. # Interval is the animation interval in TICKS (20 ticks is one second).
  57. # Every X ticks the animation goes to the next frame (see above)
  58. # Once all frames are finished it will start over from the first one
  59. interval: 2
  60. # If you don't want a static order of the frames and want to show each frame at random
  61. # you can enable this option.
  62. random: false
  63. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  64. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  65. # These lines (usually a header or footer) are also good for decoration.
  66. header:
  67. frames:
  68. - ''
  69. interval: 100
  70. random: false
  71. player-label:
  72. frames:
  73. - '&b&l> &f&l[l]globalRank.Player[/l]: {placeholderapi_powerfulperms_prefix_SBNickColor}{player}'
  74. interval: 100
  75. random: false
  76. player-line1:
  77. frames:
  78. - ' &f[l]title[/l]: {placeholderapi_powerfulperms_prefix_SBTitleColor}[l]title.{placeholderapi_powerfulperms_groupname_SBTitles}[/l]'
  79. interval: 2
  80. random: false
  81. player-line2:
  82. frames:
  83. - ' &f[l]silver[/l]: &e{tm_tokens_formatted}'
  84. interval: 2
  85. random: false
  86. player-line3:
  87. frames:
  88. - ' &f[l]gold[/l]: &6{placeholderapi_stats_gold}'
  89. interval: 2
  90. random: false
  91. # For empty lines just add another 'section' but just don't put any text
  92. # in it so it acts like an empty line.
  93. #spacer1:
  94. #frames: []
  95. #interval: 100
  96. #random: false
  97. #news-info:
  98. #frames:
  99. #- '&b&l> $setting_label-color$&lNews:'
  100. #interval: 100
  101. #random: false
  102. #news:
  103. # Lets create some animated news
  104. # News is something you need to write quick
  105. # and usually you don't want to spend ages on creating
  106. # some cool effect. That is why FeatherBoard features
  107. # several presets you can use.
  108. #frames:
  109. #- '<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>'
  110. #interval: 2 # When using preset effects. The interval will apply to that effect
  111. # Do you want to randomize the animation frames?
  112. #random: false
  113. # For empty lines just add another 'section' but just don't put any text
  114. # in it so it acts like an empty line.
  115. #spacer2:
  116. #frames: []
  117. #interval: 100
  118. #random: false
  119. #timesplayed-label: #Switch between site, times played and health
  120. #text:
  121. #- '&b&l> $setting_label-color$&lWeb:'
  122. #- '&b&l> $setting_label-color$&lPlayed:'
  123. #interval: 100
  124. #random: false
  125. #timesplayed: #Switch between site, times played and health
  126. #frames:
  127. #- ' Work in progress'
  128. #- '{stat_timesplayed}'
  129. #interval: 100
  130. #random: false
  131. # For empty lines just add another 'section' but just don't put any text
  132. # in it so it acts like an empty line.
  133. #spacer3:
  134. #frames: []
  135. #interval: 100
  136. #random: false
  137. #server-label:
  138. #frames:
  139. #- '&b&l> $setting_label-color$&lServer Info:'
  140. #interval: 100
  141. #random: false
  142. #server-line1:
  143. #frames:
  144. #- '<repeat times=200>{usedram} &7MB &8&l/ &f{totalram} &7MB</repeat>' #Refresh the ram 200 times
  145. #- '<repeat times=100>{tps_rounded} &7TPS &7&o(Avg {avgtps_rounded})</repeat>' #Refresh the tps 100 times
  146. #interval: 1
  147. #random: false
  148. #server-line2:
  149. #frames:
  150. #- '{onlineplayers} &aonline players'
  151. #interval: 10
  152. #random: false
  153. # This is the same as the header. It is not needed since you already use the header as the longest line
  154. # but it looks cleaner having a footer.
  155. footer:
  156. frames:
  157. - ''
  158. #- '<rainbow>&m+---------------------+</rainbow>'
  159. interval: 100
  160. random: false
Add Comment
Please, Sign In to add comment