Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Jul 6th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.75 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 &5test</scroll>
  35. #
  36. # PLENTY MORE! See spigot page
  37.  
  38. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  39. # GENERAL PLUGIN SETTINGS
  40. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  41.  
  42. ## Config version (DO NOT EDIT)
  43. config: 2
  44.  
  45. ## Language file
  46. lang: 'en'
  47.  
  48. ## Debug mode
  49. debug: false
  50.  
  51. ## Log to file
  52. log:
  53. enabled: true
  54. # Reset log on startup
  55. reset: false
  56.  
  57. ## Update checking
  58. update:
  59. check: false # RECOMMENDED YOU LEAVE THIS TRUE
  60.  
  61. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  62. # PLUGIN SPECIFIC SETTINGS
  63. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  64.  
  65. # Placeholder settings
  66. placeholder:
  67. # logs the memory usage of placeholders on startup
  68. log-memory: false
  69. # Clear unused placeholders that are not enabled.
  70. clear-unused: true
  71. # Tweaks to increase performance (Use at own risk)
  72. tweaks:
  73. # This option does not send scoreboard remove packets
  74. # to the client on quit. This can increase performance on servers
  75. # where players quit a lot (hubs, ...)
  76. #
  77. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  78. # /data folder
  79. #
  80. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  81. keepScoreboardOnQuit: false
  82. # Toggling allows you to disable the scoreboard
  83. database:
  84. # If you want the toggle to stay even when your users
  85. # log off you can enable this. Keep in mind that this requires a
  86. # MySQL or SQLite database.
  87. # If you are configuring the plugin for the first time it is advised
  88. # to stay away from these settings until you managed the scoreboard
  89. # set up.
  90. persistent: false
  91. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  92. # with isolation, url, driver, ...
  93. # Database name
  94. database: "featherboard"
  95. # Database username
  96. username: bukkit
  97. # Database isolation type
  98. isolation: SERIALIZABLE
  99. # Database driver
  100. driver: org.sqlite.JDBC
  101. # Database password
  102. password: walrus
  103. # Database driver URL
  104. # {DIR} will be replaced with the plugin directory
  105. # {NAME} will be replaced wit the plugin name
  106. url: jdbc:sqlite:{DIR}{NAME}.db
  107. # Save interval in ticks
  108. save-interval: 6000
  109.  
  110. # Disabled worlds. Add your world name in this list to
  111. # disable it.
  112. disabled-worlds:
  113. show-delay: 0
  114. antiflicker: true
  115. boards:
  116. default:
  117. title:
  118. text:
  119. - '&5&lXenith &7&lNetwork'
  120. interval: 2
  121. random: false
  122. line:
  123. text:
  124. - '&7&m-------------------------'
  125. interval: 10
  126. random: true
  127. Current:
  128. text:
  129. - '&f&lCurrent Players'
  130. interval: 100
  131. random: false
  132. Online:
  133. text:
  134. - '&8&l» &d{bungeecount}'
  135. interval: 5
  136. random: false
  137. line1:
  138. text:
  139. - ' '
  140. interval: 10
  141. random: true
  142. Rank:
  143. text:
  144. - '&f&lRank '
  145. interval: 100
  146. random: false
  147. Rank1:
  148. text:
  149. - '&8&l» &d{group}'
  150. interval: 100
  151. random: false
  152. 2:
  153. text:
  154. - ' '
  155. interval: 100
  156. random: false
  157. 3:
  158. text:
  159. - '&f&lSite'
  160. interval: 100
  161. random: false
  162. Site:
  163. text:
  164. - '&8&l» &dxenithnetwork.net'
  165. interval: 100
  166. random: false
  167. Line3:
  168. text:
  169. - '&7&m-------------------------'
  170. interval: 100
  171. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement