szumielxd

OldOneSB

Aug 3rd, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.27 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: false
  15. # The priority of the scoreboard. The higher the number -> higher priority
  16. # Used when having more than one scoreboard assigned
  17. priority: 9
  18.  
  19. # Example of pre processing script
  20. # This section is optional
  21. # This section is required. Those are your scoreboard lines
  22. lines:
  23. # Every section here are different lines. The first section will be used as the title
  24. # the following sections will be used as the lines on the scoreboard (max 15)
  25. # Just as the scoreboard names you can name these 'lines' whatever you want. But to make
  26. # things simple I will use logical names such as "title", "spacer", "header", ...
  27. title:
  28. # Every line has its own frames. The animation will loop through these frames on intervals
  29. # that you configure below.
  30. # Put all your frames under 'text:'. You can make as many lines as you want and use
  31. # placeholders and preset effects.
  32. # Keep in mind that there is a limit in line width!
  33. frames:
  34. # To create cool looking animations you create yourself
  35. # you can use the graphical tool AnimationCreator
  36. # https://www.spigotmc.org/resources/animationcreator.6001/
  37. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  38. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  39. #- '<glow glowsize="5">FeatherBoard</glow>' # This is the basic glow effect without custom colors
  40. - '&6&lWitaj {player}!'
  41. # Interval is the animation interval in TICKS (20 ticks is one second).
  42. # Every X ticks the animation goes to the next frame (see above)
  43. # Once all frames are finished it will start over from the first one
  44. interval: 1000
  45. # If you don't want a static order of the frames and want to show each frame at random
  46. # you can enable this option.
  47. random: false
  48. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  49. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  50. # These lines (usually a header or footer) are also good for decoration.
  51. header:
  52. player-label:
  53. frames: []
  54. interval: 1000
  55. random: false
  56. player-line1:
  57. frames:
  58. - ' &eKonto: &f<numberformat type="CURRENCY">{money}</numberformat>'
  59. interval: 20
  60. random: false
  61. player-line2:
  62. frames:
  63. - ' &eOnline: &f{placeholderapi_javascript_can_see_count}'
  64. interval: 20
  65. random: false
  66. # For empty lines just add another 'section' but just don't put any text
  67. # in it so it acts like an empty line.
  68. spacer1:
  69. frames:
  70. - ' &ePunkty: &f{placeholderapi_isworld_points}'
  71. interval: 20
  72. random: false
  73. news:
  74. # Lets create some animated news
  75. # News is something you need to write quick
  76. # and usually you don't want to spend ages on creating
  77. # some cool effect. That is why FeatherBoard features
  78. # several presets you can use.
  79. frames:
  80. - ' &eCzas online: &f{placeholderapi_javascript_time_played}'
  81. interval: 20 # When using preset effects. The interval will apply to that effect
  82. # Do you want to randomize the animation frames?
  83. random: false
  84. # For empty lines just add another 'section' but just don't put any text
  85. # in it so it acts like an empty line.
  86. spacer2:
  87. frames: []
  88. interval: 1000
  89. random: false
  90. timesplayed-label: #Switch between site, times played and health
  91. text:
  92. - ' &6Island Top'
  93. interval: 1000
  94. random: false
  95. top1: #Switch between site, times played and health
  96. frames:
  97. - ' <repeat times="60">1&7.</repeat>{placeholderapi_isworld_rank_owner_1} {placeholderapi_isworld_rank_points_1}'
  98. - ' <repeat times="60">6&7.</repeat>{placeholderapi_isworld_rank_owner_6} {placeholderapi_isworld_rank_points_6}'
  99. interval: 3
  100. random: false
  101. # For empty lines just add another 'section' but just don't put any text
  102. # in it so it acts like an empty line.
  103. top2:
  104. frames:
  105. - '<single> </single>'
  106. - ' <repeat times="60">2&7.</repeat>{placeholderapi_isworld_rank_owner_2} {placeholderapi_isworld_rank_points_2}'
  107. - ' <repeat times="60">7&7.</repeat>{placeholderapi_isworld_rank_owner_7} {placeholderapi_isworld_rank_points_7}'
  108. interval: 3
  109. random: false
  110. top3:
  111. frames:
  112. - '<single> </single>'
  113. - '<single> </single>'
  114. - ' <repeat times="60">3&7.</repeat>{placeholderapi_isworld_rank_owner_3} {placeholderapi_isworld_rank_points_3}'
  115. - ' <repeat times="60">8&7.</repeat>{placeholderapi_isworld_rank_owner_8} {placeholderapi_isworld_rank_points_8}'
  116. interval: 3
  117. random: false
  118. top4:
  119. frames:
  120. - '<single> </single>'
  121. - '<single> </single>'
  122. - '<single> </single>'
  123. - ' <repeat times="60">4&7.</repeat>{placeholderapi_isworld_rank_owner_4} {placeholderapi_isworld_rank_points_4}'
  124. - ' <repeat times="60">9&7.</repeat>{placeholderapi_isworld_rank_owner_9} {placeholderapi_isworld_rank_points_9}'
  125. interval: 3
  126. random: false
  127. top5:
  128. frames:
  129. - '<single> </single>'
  130. - '<single> </single>'
  131. - '<single> </single>'
  132. - '<single> </single>'
  133. - ' <repeat times="60">5&7.</repeat>{placeholderapi_isworld_rank_owner_5} {placeholderapi_isworld_rank_points_5}'
  134. - ' <repeat times="60">10&7.</repeat>{placeholderapi_isworld_rank_owner_10} {placeholderapi_isworld_rank_points_10}'
  135. interval: 3
  136. random: false
  137. # This is the same as the header. It is not needed since you already use the header as the longest line
  138. # but it looks cleaner having a footer.
  139. news-info:
  140. frames: []
  141. interval: 1000
  142. random: false
  143. footer1:
  144. frames:
  145. - '&2&lSkyBlock 2.0.1-release'
  146. interval: 1000
  147. random: true
  148. footer2:
  149. frames:
  150. - '&2&lMcSurvi premium edition'
  151. interval: 1000
  152. random: true
Advertisement
Add Comment
Please, Sign In to add comment