Advertisement
Guest User

Untitled

a guest
Oct 10th, 2021
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.19 KB | None | 0 0
  1. # ------------------------------------ #
  2. #
  3. # FeatherBoard 5
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. #
  7. # ------------------------------------ #
  8.  
  9. # Plugin requirements:
  10. # (Required) MVdWPlaceholderAPI 3 or higher
  11.  
  12. # Permissions: To use the action groups give them the permission
  13. # featherboard.group.<group>
  14. # Make sure to remove them from the other groups
  15. # when giving a new permission.
  16.  
  17. # Variables: These variables can be used in the TEXT section
  18. # of both the header as the footer.
  19. # PlaceholderAPI is used for placeholders.
  20. #
  21. # %player_name% - Player name
  22.  
  23. # Formatting: These are formatting tags allowing you to format the animations
  24. # or placeholders.
  25. #
  26. # Substring: This allows you to split a word (even a placeholder) in lines
  27. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  28. # usage: This can be used to split placeholders when creating a typewriter
  29. # or to split the colors in a placeholder.
  30. #
  31. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  32. # two arguments (the length and space between scrolls).
  33. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  34. #
  35. # PLENTY MORE! See spigot page
  36.  
  37. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  38. # GENERAL PLUGIN SETTINGS
  39. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  40.  
  41. ## Config version (DO NOT EDIT)
  42. config: 7
  43.  
  44. ## Language file
  45. lang: 'en'
  46.  
  47. ## Debug mode
  48. debug: false
  49.  
  50. ## Log to file
  51. log:
  52. enabled: false
  53. # Reset log on startup
  54. reset: true
  55.  
  56. ## Update checking
  57. update:
  58. # RECOMMENDED YOU LEAVE THIS TRUE
  59. # Support for older versions is not provided
  60. check: true
  61.  
  62. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  63. # PLUGIN SPECIFIC SETTINGS
  64. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  65.  
  66. # Toggling allows you to disable the scoreboard
  67. database:
  68. # If you want the toggle to stay even when your users
  69. # log off you can enable this. Keep in mind that this requires a
  70. # MySQL or SQLite database.
  71. # If you are configuring the plugin for the first time it is advised
  72. # to stay away from these settings until you managed the scoreboard
  73. # set up.
  74. persistent: false
  75. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  76. # with isolation, url, driver, ...
  77. # Database name
  78. database: "featherboard"
  79. # Database username
  80. username: bukkit
  81. # Database password
  82. password: walrus
  83. # Database driver URL
  84. # {DIR} will be replaced with the plugin directory
  85. # {NAME} will be replaced wit the plugin name
  86. url: jdbc:sqlite:{DIR}{NAME}.db
  87. # Save interval in ticks
  88. save-interval: 6000
  89.  
  90. # Disabled worlds. Add your world name in this list to disable it.
  91. disabled-worlds: []
  92.  
  93. # Scoreboard assigning. The boards can be assigned by various ways.
  94. # default the scoreboards will be assigned by permissions.
  95. # You can have multiple ways of assigning a scoreboard, but
  96. # keep in mind that it uses a "first come first served" principal
  97. # Multiple assign methods is only recommended when using things like
  98. # TIME or WORLD in combination with something else.
  99. #
  100. # PERMISSION - Assign scoreboards based on permissions
  101. # This is the default setting (since 2014)
  102. # featherboard.group.<scoreboard>
  103. #
  104. # PERMISSION_CACHED - Assign scoreboards based on permissions
  105. # Unlike "PERMISSION" this method is cached.
  106. # It will require a toggle or relog to update.
  107. # Use this for permission plugins that do not cache
  108. # permissions and contact a database every time.
  109. #
  110. # GROUP - Assign scoreboards based on Vault groups
  111. # this means the scoreboard name has to
  112. # have the name of your Vault group.
  113. #
  114. # WORLD - Assign scoreboards based on the world
  115. # the player is in.
  116. #
  117. # TIME - Assign the scoreboard based on the day.
  118. # "day" for Day and "night" for night.
  119. #
  120. # NONE - Do no assign scoreboards and just rely on
  121. # manual assigning (triggers, etc...)
  122. #
  123. # LANGUAGE - Client language (en,nl,fr) Two letter language code
  124. # name your scoreboard "en.yml", "nl.yml" , ...
  125. #
  126. # PLACEHOLDER:* - Assign the scoreboard based on a placeholder
  127. # this method can be very intensive for certain non cached
  128. # placeholders.
  129. # It will look for scoreboardname.yml files matching the result
  130. # of the placeholder.
  131. # Replace "*" with an actual placeholder (ex. "PLACEHOLDER:%player_is_flying%" )
  132. # KEEP IN MIND: Fast switching scoreboards is not a good thing.
  133. #
  134. # SPAWN_DISTANCE - Assign the scoreboard based on the distance to the world's spawn
  135. # Name your scoreboard: "spawn_distance_*" where * is a number
  136. # representing the distance. (ex. "spawn_distance_10")
  137. # The example would math the scoreboard if you are within 10 blocks
  138. # to the spawn.
  139. assigning:
  140. - 'PERMISSION'
  141.  
  142. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  143. # The GUI will show all scoreboards you have permission to. It is not very
  144. # configurable in the way you can't control the location or order of the scoreboards
  145. # For a more configurable GUI I recommend DeluxeMenus
  146. gui:
  147. # This is the title of the GUI
  148. title: "Scoreboards"
  149. # Size of the GUI (leave to -1 to make it dynamic)
  150. # Sizes: 9,27,54
  151. size: -1
  152.  
  153. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  154. # ADVANCED SETTINGS
  155. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  156.  
  157. # Placeholder settings
  158. placeholder:
  159. # Automatically attempt to download eCloud placeholders when used
  160. auto-download: false
  161.  
  162. # Tweaks to increase or tune performance
  163. tweaks:
  164. # Hide the scoreboard by default
  165. # This requires players to manually toggle the scoreboard
  166. default-hidden: false
  167. # Reset all scoreboard on startup
  168. # this is similar to manually deleting the scoreboard.dat
  169. reset-scoreboard-data: false
  170. # This option does not send scoreboard remove packets
  171. # to the client on join.
  172. keep-scoreboard-join: false
  173. # This option does not send scoreboard remove packets
  174. # to the client on quit. This can increase performance on servers
  175. # where players quit a lot (hubs, ...)
  176. #
  177. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  178. # /data folder
  179. #
  180. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  181. keep-scoreboard-quit: false
  182. # Trust or do not trust scoreboard scripts.
  183. # Normally you leave this to true
  184. # When disabled scoreboard scripts will be disabled
  185. trust-scoreboard-scripts: true
  186. # Some placeholders have a slow process behind them. Meaning they might contact a database
  187. # and take a while to 'resolve'. This will never cause lag since the placeholders are loaded
  188. # separate from the sending. But can slow down the animation because it has to wait
  189. # for the placeholder to be loaded. When having multiple lines like a text that shows
  190. # the information about the placeholders you put below it, this can cause problems.
  191. # Enabling this will output a message in the console and ingame to operators
  192. # saying when a placeholder is causing delays.
  193. detect-animation-lag: false
  194. # Putting this to true will SPAM your console with timings report per placeholder/animation
  195. # refresh. Used for debugging purposes.
  196. # This requires detect-placeholderdelay to true
  197. verbose-animation-timings: false
  198. # Show delay on join. Useful if you wish to let the user
  199. # enjoy a Title MOTD without having the scoreboard obstructing
  200. # the view.
  201. # Please note that there is a static show-delay build in of 5 ticks that you can
  202. # not change. This is because a lot of data is send in the first moment a player
  203. # joins.
  204. show-delay: 0
  205. # The update speed multiplier can increase the update speed of the scoreboard
  206. # A normal scoreboard would have a max refresh rate of 20 ticks per second
  207. # When changing this multiplier you can make this slower or faster.
  208. # Support for faster multipliers is not provided as it depends on your server
  209. # hardware if it can handle it.
  210. # This feature is mostly meant for advanced users that want to create something unique
  211. # or when stress testing.
  212. speed-multiplier: 1.0
  213. scoreboard-update:
  214. # Scoreboard update method
  215. # This is the method used to send the scoreboard.
  216. # NOTE: Are you using ViaRewind and you have cut lines?
  217. # try 'ANTI_FLICKER_V3_LEGACY' instead of 'RECOMMENDED'
  218. method: 'RECOMMENDED'
  219. animation-update:
  220. # Animation update method
  221. # This is the method used to update the line animations
  222. # (Updating the frames, placeholders ,...)
  223. # EFFICIENT - Will update the scoreboards using X workers.
  224. # The advantage is that it makes optimal use of the
  225. # processor to update the animations.
  226. # The downside is that some placeholders
  227. # may delay the scoreboard.
  228. # Use this if you have many different scoreboards
  229. # OPTIMAL - This default option will assign a dedicated worker
  230. # per scoreboard config. Lines are therefor synchronized.
  231. # If you have no idea what the other strategies do, use this
  232. # SYNCHRONOUS - This option will update all scoreboard lines of all
  233. # scoreboards in a single worker. Meaning that for many
  234. # boards this can cause delays.
  235. # Use this if you have no more than 2 different scoreboards
  236. # ASYNCHRONOUS - This option will create a task for each scoreboard line
  237. # it was default for FeatherBoard 3 and previous versions.
  238. # However it is not really optimized.
  239. method: 'OPTIMAL'
  240. # Directory where you want to store/load scoreboards
  241. scoreboard-directory: "scoreboards"
  242.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement