Advertisement
Guest User

Untitled

a guest
Mar 12th, 2020
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 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. title:
  31. text:
  32. - '&8&m--[&r &cBerryMC &8&m]--'
  33. interval: 30
  34. random: false
  35. title-1:
  36. text:
  37. - ''
  38. interval: 30
  39. random: false
  40. balance:
  41. text:
  42. - '&cLobby:'
  43. interval: 30
  44. random: false
  45. balance-1:
  46. text:
  47. - ' &8» &f{redisbungeecount} &fonline'
  48. interval: 30
  49. random: false
  50. spacer-1:
  51. text:
  52. - ''
  53. interval: 30
  54. random: false
  55. level:
  56. text:
  57. - '&aSkyblock:'
  58. interval: 100
  59. random: false
  60. level-1:
  61. text:
  62. - ' &8» &f{redisbungeecount@skyblock} &fonline'
  63. interval: 100
  64. random: false
  65. spacer-2:
  66. text:
  67. - ''
  68. interval: 30
  69. random: false
  70. mcmmo:
  71. text:
  72. - '&eSurvival:'
  73. interval: 100
  74. random: false
  75. mcmmo-1:
  76. text:
  77. - ' &8» &f{redisbungeecount@survival} &fonline'
  78. interval: 100
  79. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement