Advertisement
Guest User

Untitled

a guest
Feb 6th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 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 and is a custom option
  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: 100
  18. assigning: 'PERMISSION'
  19.  
  20. # Example of pre processing script
  21. # This section is optional
  22. script-pre: |
  23. if (settings['show-health'] == true) {
  24. board.getMeta().setSetting("enable-health","");
  25. } else {
  26. board.getMeta().setSetting("enable-health","|disabled|");
  27. }
  28.  
  29. # This section is required. Those are your scoreboard lines
  30. lines:
  31. # Every section here are different lines. The first section will be used as the title
  32. # the following sections will be used as the lines on the scoreboard (max 15)
  33. # Just as the scoreboard names you can name these 'lines' whatever you want. But to make
  34. # things simple I will use logical names such as "title", "spacer", "header", ...
  35. title:
  36. # Every line has its own frames. The animation will loop through these frames on intervals
  37. # that you configure below.
  38. # Put all your frames under 'text:'. You can make as many lines as you want and use
  39. # placeholders and preset effects.
  40. # Keep in mind that there is a limit in line width!
  41. frames:
  42. # To create cool looking animations you create yourself
  43. # you can use the graphical tool AnimationCreator
  44. # https://www.spigotmc.org/resources/animationcreator.6001/
  45. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  46. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  47. - '&e&lPlaySMP'
  48. # Interval is the animation interval in TICKS (20 ticks is one second).
  49. # Every X ticks the animation goes to the next frame (see above)
  50. # Once all frames are finished it will start over from the first one
  51. interval: 2
  52. # If you don't want a static order of the frames and want to show each frame at random
  53. # you can enable this option.
  54. random: false
  55. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  56. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  57. # These lines (usually a header or footer) are also good for decoration.
  58. line2:
  59. frames:
  60. - ' &7%server_time_MMM% %server_time_d%, %server_time_y%'
  61. interval: 2
  62. random: false
  63. space2:
  64. frames:
  65. - ''
  66. interval: 100
  67. random: false
  68. player-name:
  69. frames:
  70. - '&e%player_displayname%'
  71. interval: 2
  72. random: false
  73. # For empty lines just add another 'section' but just don't put any text
  74. # in it so it acts like an empty line.
  75. rank:
  76. frames:
  77. - '&7Rank: &a%luckperms_primary_group_name%'
  78. interval: 2
  79. random: false
  80. team:
  81. frames:
  82. - '&7Team: &a%betterTeams_name%'
  83. interval: 2
  84. random: false
  85. money:
  86. frames:
  87. - '&7Money: &a%vault_eco_balance_formatted%'
  88. interval: 2
  89. random: false
  90. flight:
  91. frames:
  92. - '&7Flight: &a%cmi_user_flightcharge%S'
  93. interval: 2
  94. random: false
  95. claim-blocks:
  96. frames:
  97. - '&7Claim Blocks: &a%griefprevention_remainingclaims%'
  98. interval: 2
  99. random: false
  100. current-claim:
  101. frames:
  102. - '&7Current Claim: &a%griefprevention_currentclaim_ownername%'
  103. interval: 2
  104. random: false
  105. space3:
  106. frames:
  107. - ''
  108. interval: 100
  109. random: false
  110. online:
  111. frames:
  112. - '&7Online: &a%server_online%'
  113. interval: 2
  114. random: false
  115. pinata-party:
  116. frames:
  117. - '&7Piñata Party: &a%pinataparty_current_votes%/%pinataparty_votes_needed%'
  118. interval: 2
  119. random: false
  120. space44:
  121. frames:
  122. - ''
  123. interval: 100
  124. random: false
  125.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement