Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Jan 6th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. ## Config version (DO NOT EDIT)
  2. config: 3
  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: false
  19.  
  20. # Placeholder settings
  21. placeholder:
  22. # logs the memory usage of placeholders on startup
  23. log-memory: false
  24. # Clear unused placeholders that are not enabled.
  25. clear-unused: true
  26. # Config cache only
  27. # This will only use placeholders in the config
  28. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  29. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  30. config-cache: false
  31.  
  32. # Tweaks to increase performance (Use at own risk)
  33. tweaks:
  34. keepScoreboardOnQuit: false
  35. detect-placeholderdelay: false
  36. verbose-placeholder-timings: false
  37. ignore-placeholder-problems: false
  38.  
  39. database:
  40. persistent: false
  41. database: "featherboard"
  42. username: bukkit
  43. isolation: SERIALIZABLE
  44. driver: org.sqlite.JDBC
  45. password: walrus
  46. url: jdbc:sqlite:{DIR}{NAME}.db
  47. save-interval: 6000
  48.  
  49. disabled-worlds:
  50. - 'example_world'
  51.  
  52. show-delay: 30
  53.  
  54. # Anti Flicker will use a new engine that will allow you to use fast animations
  55. # without any flicker.
  56. # You can disable this feature if you do not have fast refresh rates.
  57. antiflicker: true
  58.  
  59. # Scoreboard assigning. The boards can be assigned by various ways.
  60. # default the scoreboards will be assigned by permissions.
  61. # You can only have one way of assigning the scoreboards
  62. #
  63. # PERMISSION - Assign scoreboards based on permissions
  64. # This is the default setting (since 2014)
  65. # featherboard.group.<scoreboard>
  66. scoreboard-assigning: "PERMISSION"
  67.  
  68. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  69. # The GUI will show all scoreboards you have permission to. It is not very
  70. # configurable in the way you can't control the location or order of the scoreboards
  71. # For a more configurable GUI I recommend DeluxeMenus
  72. gui:
  73. title: "Scoreboards"
  74. # Size of the GUI (leave to -1 to make it dynamic)
  75. # Sizes: 9,27,54
  76. size: -1
  77.  
  78. boards:
  79. ####################################
  80. ######## Player Featherboard #######
  81. ####################################
  82. ##### featherboard.group.normal ####
  83. ####################################
  84. normal:
  85. Title:
  86. text:
  87. - '&c&lIratus&f&lPvP'
  88. interval: 10
  89. random: false
  90. Online-Line:
  91. text:
  92. - '&cOnline &7»&f {onlineplayers}'
  93. interval: 100
  94. random: false
  95. Sale-Line:
  96. text:
  97. - '&cSale &7»&f 60%'
  98. interval: 100
  99. random: false
  100. spacer2:
  101. text:
  102. - '&7&l&m-----------------'
  103. interval: 100
  104. random: true
  105. Faction-Line:
  106. text:
  107. - '&cFaction &7»&f {faction}'
  108. interval: 100
  109. random: false
  110. Power-Line:
  111. text:
  112. - '&cPower &7»&f {power}&7/&f50'
  113. interval: 100
  114. random: false
  115. spacer3:
  116. text:
  117. - '&7&l&m-----------------'
  118. interval: 100
  119. random: true
  120. Rank-Line:
  121. text:
  122. - '&cRank &7»&f {group}'
  123. interval: 100
  124. random: false
  125. Balance-Line:
  126. text:
  127. - '&cBalance &7» &f ${money_formatted}'
  128. interval: 100
  129. random: false
  130. spacer4:
  131. text:
  132. - '&7&l&m------------------'
  133. interval: 100
  134. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement