Advertisement
amitay12123

Featherboard backup(1)

Dec 14th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 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.  
  47. - '&5&lGalaxy&f&lMC &f({onlineplayers})'
  48. #- '<glow glowsize="5">FeatherBoard</glow>' # This is the basic glow effect without custom colors
  49. # Interval is the animation interval in TICKS (20 ticks is one second).
  50. # Every X ticks the animation goes to the next frame (see above)
  51. # Once all frames are finished it will start over from the first one
  52. interval: 2
  53. # If you don't want a static order of the frames and want to show each frame at random
  54. # you can enable this option.
  55. random: false
  56. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  57. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  58. # These lines (usually a header or footer) are also good for decoration.
  59. header:
  60. frames:
  61. - '&8&m+-----------------+'
  62. interval: 10
  63. random: true
  64. player-line1:
  65. frames:
  66. - ' &bName: &f{player}'
  67. interval: 0
  68. random: false
  69. player-line2:
  70. frames:
  71. - ' &bTokens: &f{} '
  72. interval: 0
  73. random: false
  74. player-line3:
  75. frames:
  76. - ' &bBalance: &f{money}'
  77. interval: 0
  78. random: false
  79. player-line4:
  80. frames:
  81. - ' &bBroken blocks: &f{}'
  82. interval: 0
  83. random: false
  84. player-line5:
  85. frames:
  86. - ' &bMulti: &f{}'
  87. interval: 0
  88. random: false
  89. # For empty lines just add another 'section' but just don't put any text
  90. # in it so it acts like an empty line.
  91. spacer1:
  92. frames:
  93. - '&8&m+-----------------+'
  94. interval: 0
  95. random: true
  96. Cell2:
  97. frames:
  98. - ' &eCell: &f{}'
  99. interval: 0
  100. random: false
  101. Cell3:
  102. frames:
  103. - ' &eCell level: &f{}'
  104. interval: 0
  105. random: false
  106. Cell4:
  107. frames:
  108. - ' &eCell value: &f{}'
  109. interval: 0
  110. random: false
  111. spacer2:
  112. frames:
  113. - '&8&m+-----------------+'
  114. interval: 0
  115. random: true
  116. votes-and-info:
  117. frames:
  118. - ' &aVotes: &f{}'
  119. interval: 0
  120. random: true
  121. votes-and-info1:
  122. frames:
  123. - ' &aVote party: &f{}'
  124. votes-and-info3:
  125. frames:
  126. - ' &aIP: &fgalaxy-mc.com'
  127. spacer3:
  128. frames:
  129. - '&8&m+-----------------+'
  130. interval: 0
  131. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement