Advertisement
Smaxy

FeatherBoard

Jan 25th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.94 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. - ' <delay times="15">&6&lTREASURE &b&lISLANDS</delay>' # <delay> will repeat the line X times
  47. #- ' <delay times="5">&b&lSKY&d&lHEROES</delay>' # <delay> will repeat the line X times
  48. #- '<glow glowsize="5">SKYHEROES</glow>' # This is the basic glow effect without custom colors
  49. #- '<glow glowsize="5" startglowcolor="&f&l" glowcolor="&f&l" endglowcolor="&b&l" normalcolor="&f&l">&b&lSKY&d&lHEROES</glow>'
  50. # Interval is the animation interval in TICKS (20 ticks is one second).
  51. # Every X ticks the animation goes to the next frame (see above)
  52. # Once all frames are finished it will start over from the first one
  53. interval: 2
  54. # If you don't want a static order of the frames and want to show each frame at random
  55. # you can enable this option.
  56. random: false
  57. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  58. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  59. # These lines (usually a header or footer) are also good for decoration.
  60. header2:
  61. frames:
  62. - '&r'
  63. interval: 5
  64. random: true
  65. header:
  66. frames:
  67. - '&6&lStats'
  68. interval: 5
  69. random: false
  70. rank:
  71. frames:
  72. - '&6&l☐ &7User&8: &e{player}'
  73. interval: 100
  74. random: false
  75. level: #Switch between site, times played and health
  76. text:
  77. - '&6&l☐ &7Balance&8: &2$&a{money_formatted}'
  78. interval: 1
  79. random: false
  80. member: #Switch between site, times played and health
  81. text:
  82. - '&6&l☐ &7Votes&8: &b{voteroulette_voter_lifetimevotes}'
  83. interval: 1
  84. random: false
  85. money:
  86. text:
  87. - '&6&l☐ &7Kills&8: &c{stat_pkills} ⚔'
  88. interval: 1
  89. random: false
  90. help:
  91. frames:
  92. - '&6&l☐ &7Online Players&8: &d{onlineplayers}'
  93. interval: 10
  94. random: false
  95. # For empty lines just add another 'section' but just don't put any text
  96. # in it so it acts like an empty line.
  97. spacer2:
  98. frames: []
  99. interval: 100
  100. random: false
  101. kills: #Switch between site, times played and health
  102. header3:
  103. frames:
  104. - '&b&lIsland'
  105. interval: 10
  106. random: true
  107. text:
  108. - '&b&l☐ &7Owner&8: &f{askyblock_island_owner}'
  109. interval: 100
  110. random: false
  111. deaths: #Switch between site, times played and health
  112. text:
  113. - '&b&l☐ &7Owner&8: &f{askyblock_island_owner}'
  114. interval: 1
  115. random: false
  116. # For empty lines just add another 'section' but just don't put any text
  117. # in it so it acts like an empty line.
  118. voteparty:
  119. frames:
  120. - '&b&l☐ &7Members&8: &f{askyblock_team_members}'
  121. interval: 10
  122. random: false
  123. playercount:
  124. frames:
  125. - '&b&l☐ &7Island Level&8: &f{askyblock_island_level}'
  126. interval: 5
  127. random: false
  128. spacer3:
  129. frames: []
  130. interval: 100
  131. random: false
  132. ip:
  133. frames:
  134. - '&7play.treasureislands-mc.net'
  135. interval: 5
  136. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement