Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Nov 19th, 2017
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 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. lang: 'it'
  46.  
  47. debug: false
  48.  
  49. log:
  50. enabled: true
  51. reset: false
  52.  
  53. update:
  54. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  55.  
  56. placeholder:
  57. log-memory: false
  58. clear-unused: true
  59. config-cache: false
  60.  
  61. tweaks:
  62. keepScoreboardOnQuit: false
  63. detect-placeholderdelay: false
  64. verbose-placeholder-timings: false
  65. ignore-placeholder-problems: false
  66.  
  67. database:
  68. persistent: false
  69. database: "featherboard"
  70. username: bukkit
  71. isolation: SERIALIZABLE
  72. driver: org.sqlite.JDBC
  73. password: walrus
  74. url: jdbc:sqlite:{DIR}{NAME}.db
  75. save-interval: 6000
  76.  
  77. disabled-worlds:
  78. - 'example_world'
  79.  
  80. show-delay: 0
  81.  
  82. antiflicker: true
  83.  
  84. scoreboard-assigning: "PERMISSION"
  85.  
  86. gui:
  87. title: "Scoreboards"
  88. size: -1
  89.  
  90. boards:
  91. default:
  92. title:
  93. text:
  94. - '&4&lBattle&c&lMine'
  95. - '&c&lBattle&4&lMine'
  96. interval: 10
  97. random: false
  98. header:
  99. text:
  100. - '<rainbow>&m+---------------------+</rainbow>'
  101. interval: 10
  102. random: true
  103. info-label:
  104. text:
  105. - '&6&l> &e&lInfo:'
  106. interval: 0
  107. random: false
  108. info-line1:
  109. text:
  110. - '&b&lRank: &f{ezrankspro_rank}'
  111. interval: 0
  112. random: false
  113. info-line2:
  114. text:
  115. - '&b&lRank Successivo: &f{ezrankspro_nextrank}'
  116. interval: 0
  117. random: false
  118. info-line3:
  119. text:
  120. - '&b&lCosto: &f{ezrankspro_rankup_cost}'
  121. spacer:
  122. text:
  123. - ' '
  124. interval: 0
  125. random: false
  126. player-label:
  127. text:
  128. - '&6&l> &e&lPlayer:'
  129. interval: 0
  130. random: false
  131. player-line1:
  132. text:
  133. - '&b&lSoldi: &f{money}'
  134. interval: 0
  135. random: false
  136. player-line2:
  137. text:
  138. - '&b&lPing: &f{ping}'
  139. interval: 0
  140. random: false
  141. player-line3:
  142. text:
  143. - '&b&lOnline: &f{playercount}'
  144. interval: 0
  145. random: false
  146. footer:
  147. text:
  148. - '<rainbow>&m+---------------------+</rainbow>'
  149. interval: 10
  150. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement