Advertisement
Guest User

Untitled

a guest
Oct 20th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 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. # 5000+ 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 version (DO NOT EDIT)
  43. config: 3
  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: true # RECOMMENDED YOU LEAVE THIS TRUE
  60.  
  61. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  62. # PLUGIN SPECIFIC SETTINGS
  63. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  64.  
  65. placeholder:
  66. clear-unused: true
  67. config-cache: false
  68.  
  69. tweaks:
  70. keepScoreboardOnQuit: false
  71. detect-placeholderdelay: false
  72. verbose-placeholder-timings: false
  73. ignore-placeholder-problems: false
  74.  
  75. database:
  76. persistent: false
  77. database: "featherboard"
  78. username: bukkit
  79. isolation: SERIALIZABLE
  80. driver: org.sqlite.JDBC
  81. password: walrus
  82. url: jdbc:sqlite:{DIR}{NAME}.db
  83. save-interval: 6000
  84.  
  85. disabled-worlds:
  86. - 'example_world'
  87.  
  88. show-delay: 0
  89.  
  90. antiflicker: true
  91.  
  92. scoreboard-assigning: "PERMISSION"
  93.  
  94. gui:
  95. title: "Scoreboards"
  96. size: -1
  97.  
  98. boards:
  99. default:
  100. title:
  101. text:
  102. - '&2&lTT:Lobby1'
  103. interval: 2
  104. random: false
  105. header:
  106. text:
  107. - ''
  108. interval: 10
  109. random: true
  110. player-label:
  111. text:
  112. - '&eNick: &f{player}'
  113. interval: 100
  114. random: false
  115. player-label2:
  116. text:
  117. - '&ePing: &f{ping} ms'
  118. interval: 100
  119. random: false
  120. spacer1:
  121. text: []
  122. interval: 100
  123. random: false
  124. news-info:
  125. text:
  126. - '&b» &eNovinky: &7<scroll width="22">&7TEXT TVYCH NOVINEK</scroll>'
  127. interval: 100
  128. random: false
  129. spacer2:
  130. text: []
  131. interval: 100
  132. random: false
  133. timesplayed-label:
  134. text:
  135. - '&eHraci: &b{onlineplayers}'
  136. interval: 100
  137. random: false
  138. timesplayed:
  139. text:
  140. - '&3{onlineplayers}&7 z &380'
  141. interval: 100
  142. random: false
  143. server-line1:
  144. interval: 10
  145. text:
  146. - '&7&m----------'
  147. server-line2:
  148. interval: 10
  149. text:
  150. - '&7www.pv.cz'
  151. footer:
  152. text:
  153. - '&7ts3.pv.cz'
  154. interval: 10
  155. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement