Advertisement
Guest User

Featherboard config

a guest
Apr 26th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. ## Config version (DO NOT EDIT)
  2. config: 2
  3.  
  4. ## Language file
  5. lang: 'en'
  6.  
  7. ## Debug mode
  8. debug: false
  9.  
  10. ## Log to file
  11. log:
  12. enabled: true
  13. # Reset log on startup
  14. reset: false
  15.  
  16. ## Update checking
  17. update:
  18. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  19.  
  20. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  21. # PLUGIN SPECIFIC SETTINGS
  22. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  23.  
  24. # Placeholder settings
  25. placeholder:
  26. # logs the memory usage of placeholders on startup
  27. log-memory: false
  28. # Clear unused placeholders that are not enabled.
  29. clear-unused: true
  30. # Config cache only
  31. # This will only use placeholders in the config
  32. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  33. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  34. config-cache: false
  35.  
  36. # Tweaks to increase performance (Use at own risk)
  37. tweaks:
  38. keepScoreboardOnQuit: false
  39. detect-placeholderdelay: false
  40. verbose-placeholder-timings: false
  41. ignore-placeholder-problems: false
  42.  
  43. # Toggling allows you to disable the scoreboard
  44. database:
  45. persistent: false
  46. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  47. # with isolation, url, driver, ...
  48. # Database name
  49. database: "featherboard"
  50. # Database username
  51. username: bukkit
  52. # Database isolation type
  53. isolation: SERIALIZABLE
  54. # Database driver
  55. driver: org.sqlite.JDBC
  56. # Database password
  57. password: walrus
  58. # Database driver URL
  59. # {DIR} will be replaced with the plugin directory
  60. # {NAME} will be replaced wit the plugin name
  61. url: jdbc:sqlite:{DIR}{NAME}.db
  62. # Save interval in ticks
  63. save-interval: 6000
  64.  
  65. # Disabled worlds. Add your world name in this list to
  66. # disable it.
  67. disabled-worlds:
  68. - 'example_world'
  69.  
  70. show-delay: 0
  71.  
  72. antiflicker: true
  73.  
  74. # A list of different scoreboards
  75. boards:
  76. default:
  77. title:
  78. text:
  79. - '&d&lSERVERNAME'
  80. header:
  81. text:
  82. - '&8&m--&7&m-<&d&m-=&5&m[&r+&5&m]&d&m=-&7&m>-&8&m--'
  83. spacer-un:
  84. text:
  85. - '&b'
  86. moneh-txt:
  87. text:
  88. - '&5&lCASH&8:'
  89. interval: 100
  90. moneh-data:
  91. text:
  92. - '&8&l- &d$&7{money_formatted}'
  93. spacer-deux:
  94. text:
  95. - '&b'
  96. current-level:
  97. text:
  98. - '&5&lLEVEL&8:'
  99. level-data:
  100. text:
  101. - '&8&l- &7{askyblock_island_level}'
  102. spacer-trois:
  103. text:
  104. - '&b'
  105. team-progress:
  106. text:
  107. - '&5&lTEAM ONLINE&8:'
  108. team-data:
  109. text:
  110. - '&8&l- &7{askyblock_team_members}'
  111. spacer-quatre:
  112. text:
  113. - '&b'
  114. wehbsite:
  115. text:
  116. - '&5&lWEBSITE&8:'
  117. wehbsite-link:
  118. text:
  119. - '&8&l- &7SOMETING.COM'
  120. spacer-cinq:
  121. text:
  122. - '&b'
  123. footer:
  124. text:
  125. - '&8&m--&7&m-<&d&m-=&5&m[&r+&5&m]&d&m=-&7&m>-&8&m--'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement