Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. # ------------------------------ #
  2.  
  3. #
  4. # FeatherBoard 1.9.0
  5. # Runs like a feather on your server
  6. # © Maxim Van de Wynckel
  7. #
  8. # ------------------------------ #
  9.  
  10. # Permissions: To use the action groups give them the permission
  11. # featherboard.group.<group>
  12. # Make sure to remove them from the other groups
  13. # when giving a new permission.
  14.  
  15. # Variables: These variables can be used in the TEXT section
  16. # of both the header as the footer.
  17. #
  18. # {PLAYER} - Player name
  19. # {PLAYERNICK} - Player nickname
  20. # {SERVER} - Server name
  21. # {PLAYERCOUNT} - Server player count
  22. # {BUNGEECOUNT} - Bungee network player count
  23. # 850+ more ... see spigot page
  24.  
  25. # Formatting: These are formatting tags allowing you to format the animations
  26. # or placeholders.
  27. #
  28. # Substring: This allows you to split a word (even a placeholder) in parts
  29. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  30. # usage: This can be used to split placeholders when creating a typewriter
  31. # or to split the colors in a placeholder.
  32. #
  33. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  34. # two arguments (the length and space between scrolls).
  35. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  36. #
  37. # PLENTY MORE! See spigot page
  38.  
  39. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  40. # GENERAL PLUGIN SETTINGS
  41. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  42.  
  43. ## Config version (DO NOT EDIT)
  44. config: 1
  45.  
  46. ## Language file
  47. lang: 'en'
  48.  
  49. ## Debug mode
  50. debug: false
  51.  
  52. ## Log to file
  53. log: true
  54.  
  55. ## Update checking
  56. update:
  57. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  58.  
  59. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  60. # PLUGIN SPECIFIC SETTINGS
  61. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  62.  
  63. # Tweaks to increase performance (Use at own risk)
  64. tweaks:
  65. # This option does not send scoreboard remove packets
  66. # to the client on quit. This can increase performance on servers
  67. # where players quit a lot (hubs, ...)
  68. #
  69. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  70. # /data folder
  71. #
  72. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  73. keepScoreboardOnQuit: false
  74.  
  75.  
  76. # A list of different scoreboards
  77. boards:
  78. # Default FeatherBoard comes with a board called "default". All players have the permission
  79. # featherboard.group.default (by default) meaning all players should see the scoreboard unless
  80. # the permission is negated.
  81. #
  82. # You can create as many boards as you want as long as the name is unique. It is advised to give logical
  83. # names such as "vip-board", "mcmmo-levelup", ...
  84. default:
  85. title:
  86. text:
  87. - '&6&lFULL PVP'
  88. interval: 500
  89. random: false
  90. spacer1:
  91. text: []
  92. interval: 500
  93. random: false
  94. player-label1:
  95. text:
  96. - ' &7Clan: {simpleclans_clan_tag#*} '
  97. interval: 5
  98. random: false
  99. spacer2:
  100. text:
  101. - '&7Money:&a {money} '
  102. interval: 500
  103. random: false
  104. player-line1:
  105. text:
  106. - ' &7Rank: &e{group} '
  107. interval: 30
  108. random: true
  109. spacer4:
  110. text: []
  111. interval: 500
  112. random: false
  113. player-line2:
  114. text:
  115. - ' &7Jogadores: &a(online}/240 '
  116. interval: 500
  117. random: false
  118. player-line5:
  119. text:
  120. - ' &7Ping: {ping} '
  121. interval: 500
  122. random: false
  123. player-line34:
  124. text:
  125. - ' &7Horario: &6{time} '
  126. interval: 500
  127. random: false
  128. spacer5:
  129. text: []
  130. interval: 500
  131. random: false
  132. player-line347:
  133. text:
  134. - ' &egamersboard.com.br '
  135. interval: 500
  136. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement