Advertisement
Guest User

FB

a guest
Dec 9th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 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 repeatfirstframe="10" startglowcolor="&b&l" glowcolor="&b&l" endglowcolor="&b&l" normalcolor="&3&l">AsteriaMC</glow>' # This is the basic glow effect without custom colors
  47. # Interval is the animation interval in TICKS (20 ticks is one second).
  48. # Every X ticks the animation goes to the next frame (see above)
  49. # Once all frames are finished it will start over from the first one
  50. interval: 2
  51. # If you don't want a static order of the frames and want to show each frame at random
  52. # you can enable this option.
  53. random: false
  54. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  55. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  56. # These lines (usually a header or footer) are also good for decoration.
  57. header:
  58. frames: []
  59. interval: 10
  60. random: true
  61. player-line1:
  62. frames:
  63. - '&3&lHello &6&l{player}&3&l!'
  64. interval: 2
  65. random: false
  66. player-line2:
  67. frames: []
  68. interval: 2
  69. random: false
  70. # For empty lines just add another 'section' but just don't put any text
  71. # in it so it acts like an empty line.
  72. spacer1:
  73. frames:
  74. - '&3&lRank: &6&l{group}'
  75. interval: 100
  76. random: false
  77. news-info:
  78. frames: []
  79. interval: 100
  80. random: false
  81. news:
  82. # Lets create some animated news
  83. # News is something you need to write quick
  84. # and usually you don't want to spend ages on creating
  85. # some cool effect. That is why FeatherBoard features
  86. # several presets you can use.
  87. frames:
  88. - '&3&lBal: &6&l${money_formatted}'
  89. interval: 2 # When using preset effects. The interval will apply to that effect
  90. # Do you want to randomize the animation frames?
  91. random: false
  92. # For empty lines just add another 'section' but just don't put any text
  93. # in it so it acts like an empty line.
  94. spacer2:
  95. frames: []
  96. interval: 100
  97. random: false
  98. timesplayed: #Switch between site, times played and health
  99. frames: []
  100. interval: 100
  101. random: false
  102. # For empty lines just add another 'section' but just don't put any text
  103. # in it so it acts like an empty line.
  104. spacer3:
  105. frames:
  106. - '&3&lTown: &6&l{towny_town_name}'
  107. interval: 100
  108. random: false
  109. server-label:
  110. frames: []
  111. interval: 100
  112. random: false
  113. server-line1:
  114. frames:
  115. - '&3&lTown Treasury: &6&l${towny_town_balance_formatted}'
  116. interval: 1
  117. random: false
  118. server-line2:
  119. frames: []
  120. interval: 10
  121. random: false
  122. # This is the same as the header. It is not needed since you already use the header as the longest line
  123. # but it looks cleaner having a footer.
  124. footer:
  125. frames:
  126. - '&7&oUse "/fb toggle" to toggle'
  127. interval: 10
  128. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement