Guest User

FeatherBoard

a guest
Jan 14th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 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: false # 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. - 'MagicCore'
  103. interval: 2
  104. random: false
  105. header:
  106. text:
  107. - ''
  108. interval: 10
  109. random: true
  110. player-label:
  111. text:
  112. - '&1Nick » &1&l{player}'
  113. interval: 100
  114. random: false
  115. player-label2:
  116. text:
  117. - ''
  118. interval: 100
  119. random: false
  120. spacer1:
  121. text:
  122. - '&1Rank » &1&l{group}'
  123. interval: 100
  124. random: false
  125. news-info:
  126. text:
  127. - ''
  128. interval: 100
  129. random: false
  130. spacer3:
  131. text:
  132. - '&1IP TS » &1&lts3.hicoria.com:17691'
  133. interval: 100
  134. random: false
  135. news-info1:
  136. text:
  137. - ''
  138. interval: 100
  139. random: false
  140. news-info2:
  141. text:
  142. - '&1Web » &1&lZatim neni'
  143. interval: 100
  144. random: false
  145. news-info3:
  146. text:
  147. - ''
  148. interval: 100
  149. random: false
Add Comment
Please, Sign In to add comment