Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 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. # Example of the use of settings
  5. # This section is optional
  6. settings:
  7. # If you quickly want to change the
  8. # the label color change it here.
  9. # It replaces $setting_label-color$ throughout the entire config
  10. label-color: "&e"
  11. # Show or hide the health
  12. # This is an example of the script
  13. show-health: true
  14. # The priority of the scoreboard. The higher the number -> higher priority
  15. # Used when having more than one scoreboard assigned
  16. priority: 1
  17. # Example of pre processing script
  18. # This section is optional
  19. script-pre: |
  20. if (settings['show-health'] == "true"){
  21. board.getMeta().setSetting("enable-health","");
  22. }else{
  23. board.getMeta().setSetting("enable-health","|disabled|");
  24. }
  25. # This section is required. Those are your scoreboard lines
  26. lines:
  27. # Every section here are different lines. The first section will be used as the title
  28. # the following sections will be used as the lines on the scoreboard (max 15)
  29. # Just as the scoreboard names you can name these 'lines' whatever you want. But to make
  30. # things simple I will use logical names such as "title", "spacer", "header", ...
  31. title:
  32. # Every line has its own frames. The animation will loop through these frames on intervals
  33. # that you configure below.
  34. # Put all your frames under 'text:'. You can make as many lines as you want and use
  35. # placeholders and preset effects.
  36. # Keep in mind that there is a limit in line width!
  37. frames:
  38. # To create cool looking animations you create yourself
  39. # you can use the graphical tool AnimationCreator
  40. # https://www.spigotmc.org/resources/animationcreator.6001/
  41. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  42. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  43. - '<single>&5The Purge</single>'
  44. # Interval is the animation interval in TICKS (20 ticks is one second).
  45. # Every X ticks the animation goes to the next frame (see above)
  46. # Once all frames are finished it will start over from the first one
  47. interval: 2
  48. # If you don't want a static order of the frames and want to show each frame at random
  49. # you can enable this option.
  50. random: false
  51. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  52. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  53. # These lines (usually a header or footer) are also good for decoration.
  54. header:
  55. frames:
  56. - ''
  57. interval: 10
  58. random: true
  59. rank:
  60. frames:
  61. - '&7Rank: {prefixcolor}{group}'
  62. interval: 10
  63. random: false
  64. coins:
  65. frames:
  66. - '&7Balance: &5{money}'
  67. interval: 10
  68. random: false
  69. spacer1:
  70. frames:
  71. - ''
  72. interval: 10
  73. random: false
  74. realm:
  75. frames:
  76. - '&7Realm: &5world1'
  77. interval: 10
  78. random: false
  79. players:
  80. frames:
  81. - '&7Players: &5{onlineplayers}'
  82. interval: 10
  83. random: false
  84. spacer2:
  85. frames:
  86. - ''
  87. interval: 10
  88. random: false
  89. # This is the same as the header. It is not needed since you already use the header as the longest line
  90. # but it looks cleaner having a footer.
  91. footer:
  92. frames:
  93. - '&5play.thepurgemc.us'
  94. interval: 10
  95. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement