Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Jan 27th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # FeatherBoard 3
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. #
  7. # ------------------------------ #
  8.  
  9. # Permissions: To use the action groups give them the permission
  10. # featherboard.group.<group>
  11. # Make sure to remove them from the other groups
  12. # when giving a new permission.
  13.  
  14. # Variables: These variables can be used in the TEXT section
  15. # of both the header as the footer.
  16. #
  17. # {PLAYER} - Player name
  18. # {PLAYERNICK} - Player nickname
  19. # {SERVER} - Server name
  20. # {PLAYERCOUNT} - Server player count
  21. # {BUNGEECOUNT} - Bungee network player count
  22. # 4000+ more ... see spigot page
  23.  
  24. # Formatting: These are formatting tags allowing you to format the animations
  25. # or placeholders.
  26. #
  27. # Substring: This allows you to split a word (even a placeholder) in parts
  28. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  29. # usage: This can be used to split placeholders when creating a typewriter
  30. # or to split the colors in a placeholder.
  31. #
  32. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  33. # two arguments (the length and space between scrolls).
  34. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  35. #
  36. # PLENTY MORE! See spigot page
  37.  
  38. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  39. # GENERAL PLUGIN SETTINGS
  40. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  41.  
  42. config: 3
  43. lang: 'en'
  44. debug: false
  45. log:
  46. enabled: false
  47. reset: false
  48. update:
  49. check: false
  50.  
  51. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  52. # PLUGIN SPECIFIC SETTINGS
  53. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  54.  
  55. placeholder:
  56. log-memory: false
  57. clear-unused: true
  58. config-cache: false
  59.  
  60. tweaks:
  61. keepScoreboardOnQuit: false
  62. detect-placeholderdelay: false
  63. verbose-placeholder-timings: false
  64. ignore-placeholder-problems: false
  65.  
  66. database:
  67. persistent: false
  68. database: "featherboard"
  69. username: bukkit
  70. isolation: SERIALIZABLE
  71. driver: org.sqlite.JDBC
  72. password: walrus
  73. url: jdbc:sqlite:{DIR}{NAME}.db
  74. save-interval: 6000
  75.  
  76. disabled-worlds:
  77. - 'example_world'
  78.  
  79. show-delay: 5
  80.  
  81. antiflicker: true
  82.  
  83. scoreboard-assigning: "PERMISSION"
  84.  
  85. gui:
  86. title: "Scoreboards"
  87. size: -1
  88.  
  89. boards:
  90. default:
  91. title:
  92. text:
  93. - ' &aBecto.net'
  94. interval: 10
  95. random: false
  96. player-label:
  97. text:
  98. - '&e{player}:'
  99. interval: 1
  100. random: false
  101. player:
  102. text:
  103. - ' &7Level &f{level}'
  104. interval: 10
  105. random: false
  106. player1:
  107. text:
  108. - ' &7Points &f{playerpoints_balance}'
  109. interval: 100
  110. random: false
  111. player2:
  112. text:
  113. - ' &7McMMO &f{mcmmo_powerlevel}'
  114. interval: 10
  115. random: false
  116. player3:
  117. text:
  118. - ' &7Money &f${money_formatted}'
  119. interval: 10
  120. random: false
  121. player4:
  122. text:
  123. - ' &7Rank &7{suffix}'
  124. interval: 100
  125. random: false
  126. server-placeholder:
  127. text:
  128. - ' '
  129. interval: 100
  130. random: false
  131. server:
  132. text:
  133. - '&bServer &7({lilypad:global-count})'
  134. interval: 20
  135. random: false
  136. server1:
  137. text:
  138. - ' &7Name &fSurvival'
  139. interval: 100
  140. random: false
  141. server2:
  142. text:
  143. - ' &7Online &f{lilypad:survival-count}'
  144. interval: 20
  145. random: false
  146. server33:
  147. text:
  148. - ' &7Dailies &f{placeholderapi_customcmd_cooldown}/{placeholderapi_customcmd_cooldown_max}'
  149. interval: 20
  150. random: false
  151. server3:
  152. text:
  153. - ' &7VoteParty &f{voteparty_votesremaining}/{voteparty_votesneeded}'
  154. interval: 20
  155. random: false
  156. mobarena:
  157. title:
  158. text:
  159. - ' &aBecto.net'
  160. interval: 10
  161. random: false
  162. header:
  163. text:
  164. - '&m--------------&r'
  165. interval: 10
  166. random: false
  167. ma-label:
  168. text:
  169. - '&eMob Arena'
  170. interval: 100
  171. random: false
  172. ma:
  173. text:
  174. - ' &7Wave &f{mobarena_arena_wave}'
  175. interval: 10
  176. random: false
  177. ma1:
  178. text:
  179. - ' &7Alive &f{mobarena_livingplayers}'
  180. interval: 2
  181. random: false
  182. server:
  183. text:
  184. - '&bServer &7({lilypad:global-count})'
  185. interval: 20
  186. random: false
  187. server1:
  188. text:
  189. - ' &7Name &fSurvival'
  190. interval: 100
  191. random: false
  192. server2:
  193. text:
  194. - ' &7Online &f{lilypad:survival-count}'
  195. interval: 20
  196. random: false
  197. server33:
  198. text:
  199. - ' &7Dailies &f{placeholderapi_customcmd_cooldown}/{placeholderapi_customcmd_cooldown_max}'
  200. interval: 20
  201. random: false
  202. server3:
  203. text:
  204. - ' &7VoteParty &f{voteparty_votesremaining}/{voteparty_votesneeded}'
  205. interval: 20
  206. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement