Advertisement
ElTioCode

Untitled

Sep 22nd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 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. #'&o<cmd repeatmiddle="20">{player}</cmd>
  30. lines:
  31. title:
  32. frames:
  33. - '&6&lSnake Network &7[Hub]'
  34. interval: 2
  35. # If you don't want a static order of the frames and want to show each frame at random
  36. # you can enable this option.
  37. random: false
  38. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  39. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  40. # These lines (usually a header or footer) are also good for decoration.
  41. header:
  42. frames:
  43. - '&7&m----------------------'
  44. interval: 10
  45. random: true
  46. infouser:
  47. frames:
  48. - '&e&lOnline Players:'
  49. interval: 2
  50. random: false
  51. infouser2:
  52. frames:
  53. - '{BUNGEECOUNT}'
  54. interval: 2
  55. random: false
  56. pd21482dsd323:
  57. frames:
  58. - ''
  59. interval: 2
  60. random: false
  61. plad61267ddyer-line2:
  62. frames:
  63. - '&e&lRank:'
  64. interval: 2
  65. random: false
  66. pd2148:
  67. frames:
  68. - '{GROUP}'
  69. interval: 2
  70. random: false
  71. pd21482323:
  72. frames:
  73. - ''
  74. interval: 2
  75. random: false
  76. ddp3:
  77. frames:
  78. - '&6store.snakenetwork.xyz'
  79. interval: 2
  80. random: false
  81. pxd3:
  82. frames:
  83. - '&7&m----------------------'
  84. interval: 2
  85. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement