Advertisement
Guest User

Untitled

a guest
Jun 28th, 2018
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.65 KB | None | 0 0
  1. # ------------------------------------ #
  2. #
  3. # FeatherBoard 4
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. #
  7. # ------------------------------------ #
  8.  
  9. # Plugin requirements:
  10. # (Required) MVdWPlaceholderAPI 2 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. #
  20. # {PLAYER} - Player name
  21. # {PLAYERNICK} - Player nickname
  22. # {SERVER} - Server name
  23. # {PLAYERCOUNT} - Server player count
  24. # {BUNGEECOUNT} - Bungee network player count
  25. # 5000+ more ... see spigot page
  26.  
  27. # Formatting: These are formatting tags allowing you to format the animations
  28. # or placeholders.
  29. #
  30. # Substring: This allows you to split a word (even a placeholder) in lines
  31. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  32. # usage: This can be used to split placeholders when creating a typewriter
  33. # or to split the colors in a placeholder.
  34. #
  35. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  36. # two arguments (the length and space between scrolls).
  37. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  38. #
  39. # PLENTY MORE! See spigot page
  40.  
  41. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  42. # GENERAL PLUGIN SETTINGS
  43. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  44.  
  45. ## Config version (DO NOT EDIT)
  46. config: 4
  47.  
  48. ## Language file
  49. lang: 'en'
  50.  
  51. ## Debug mode
  52. debug: false
  53.  
  54. ## Log to file
  55. log:
  56. enabled: true
  57. # Reset log on startup
  58. reset: true
  59.  
  60. ## Update checking
  61. update:
  62. # RECOMMENDED YOU LEAVE THIS TRUE
  63. # Support for older versions is not provided
  64. check: true
  65.  
  66. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  67. # PLUGIN SPECIFIC SETTINGS
  68. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  69.  
  70. # Toggling allows you to disable the scoreboard
  71. database:
  72. # If you want the toggle to stay even when your users
  73. # log off you can enable this. Keep in mind that this requires a
  74. # MySQL or SQLite database.
  75. # If you are configuring the plugin for the first time it is advised
  76. # to stay away from these settings until you managed the scoreboard
  77. # set up.
  78. persistent: false
  79. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  80. # with isolation, url, driver, ...
  81. # Database name
  82. database: "featherboard"
  83. # Database username
  84. username: thecosmosmcadmin
  85. # Database password
  86. password: thecosmosmcpassword
  87. # Database driver URL
  88. # {DIR} will be replaced with the plugin directory
  89. # {NAME} will be replaced wit the plugin name
  90. url: jdbc:sqlite:{DIR}{NAME}.db
  91. # Save interval in ticks
  92. save-interval: 6000
  93.  
  94. # Disabled worlds. Add your world name in this list to disable it.
  95. disabled-worlds:
  96. - 'example_world'
  97.  
  98. # Scoreboard assigning. The boards can be assigned by various ways.
  99. # default the scoreboards will be assigned by permissions.
  100. # You can have multiple ways of assigning a scoreboard, but
  101. # keep in mind that it uses a "first come first served" principal
  102. # Multiple assign methods is only recommended when using things like
  103. # TIME or WORLD in combination with something else.
  104. #
  105. # PERMISSION - Assign scoreboards based on permissions
  106. # This is the default setting (since 2014)
  107. # featherboard.group.<scoreboard>
  108. #
  109. # GROUP - Assign scoreboards based on Vault groups
  110. # this means the scoreboard name has to
  111. # have the name of your Vault group.
  112. #
  113. # WORLD - Assign scoreboards based on the world
  114. # the player is in.
  115. #
  116. # TIME - Assign the scoreboard based on the day.
  117. # "day" for Day and "night" for night.
  118. #
  119. # NONE - Do no assign scoreboards and just rely on
  120. # manual assigning (triggers, etc...)
  121. #
  122. # LANGUAGE - Client language (en,nl,fr) Two letter language code
  123. #
  124. # PLACEHOLDER:* - Assign the scoreboard based on a placeholder
  125. # this method can be very intensive for certain non cached
  126. # placeholders.
  127. # It will look for scoreboardname.yml files matching the result
  128. # of the placeholder.
  129. # Replace "*" with an actual placeholder (ex. "PLACEHOLDER:{isflying}" )
  130. # KEEP IN MIND: Fast switching scoreboards is not a good thing.
  131. #
  132. # SPAWN_DISTANCE - Assign the scoreboard based on the distance to the world's spawn
  133. # Name your scoreboard: "spawn_distance_*" where * is a number
  134. # representing the distance. (ex. "spawn_distance_10")
  135. # The example would math the scoreboard if you are within 10 blocks
  136. # to the spawn.
  137. scoreboard-assigning:
  138. - 'PERMISSION'
  139.  
  140. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  141. # The GUI will show all scoreboards you have permission to. It is not very
  142. # configurable in the way you can't control the location or order of the scoreboards
  143. # For a more configurable GUI I recommend DeluxeMenus
  144. gui:
  145. # This is the title of the GUI
  146. title: "Scoreboards"
  147. # Size of the GUI (leave to -1 to make it dynamic)
  148. # Sizes: 9,27,54
  149. size: -1
  150.  
  151. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  152. # ADVANCED SETTINGS
  153. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  154. boards:
  155. default:
  156. title:
  157. text:
  158. - '&b&lThe CosmosMC'
  159. interval: 1000
  160. random: false
  161. '1':
  162. text:
  163. - '&7&m--------------------'
  164. interval: 1000
  165. random: false
  166. '2':
  167. text:
  168. - '&b&lPlayer'
  169. interval: 1000
  170. random: false
  171. '3':
  172. text:
  173. - '&7{16} &3Rank: &a{group}'
  174. interval: 10
  175. random: false
  176. '4':
  177. text:
  178. - '&7{16} &3Balance: &a${money_formatted}'
  179. interval: 10
  180. random: false
  181. '5':
  182. text:
  183. - '&7{16} &3Votes Until VoteParty: &a{voteparty_currentvotes} / 30'
  184. interval: 10
  185. random: false
  186. '6':
  187. text:
  188. - '&7{16} &3World: &a{mv_worldalias}'
  189. interval: 10
  190. random: false
  191. '7':
  192. text:
  193. - '&7&m---------------------'
  194. interval: 1000
  195. random: false
  196. '8':
  197. text:
  198. - '&b&lTowny'
  199. interval: 1000
  200. random: false
  201. '9':
  202. text:
  203. - '&7{16} &3Town: &a{towny_town_name}'
  204. - '<whenempty value="{towny_town_name}">You are not in a town</whenempty>' #Refresh the ram 200 times
  205. interval: 50
  206. random: false
  207. '10':
  208. text:
  209. - '&7&m---------------------'
  210. interval: 1000
  211. random: false
  212. '11':
  213. text:
  214. - '&7{16} &3Online: &a{onlineplayers}'
  215. interval: 10
  216. random: false
  217. # Placeholder settings
  218. placeholder:
  219. # Placeholder update method
  220. # COMPATIBLE - Only downloads compatible placeholders.
  221. # UPDATE_ONLY - Only update existing downloaded placeholders.
  222. update-method: "COMPATIBLE"
  223. # Clear unused placeholders that are not enabled.
  224. clear-unused: true
  225. # Config cache only
  226. # This will only keep placeholders you use in the config
  227. # This breaks:
  228. # 1) MVdWPlaceholderAPI hooked plugins that make you use placeholders
  229. # in their plugins.
  230. # 2) Plugins that add custom placeholders to MVdWPlaceholderAPI
  231. config-cache: false
  232. # Log 'perfect' loading in the console
  233. # Any warnings, errors or downloading will still be shown
  234. console-log: true
  235.  
  236. # Tweaks to increase or tune performance
  237. tweaks:
  238. # Hide the scoreboard by default
  239. # This requires players to manually toggle the scoreboard
  240. default-hidden: false
  241. # Reset all scoreboard on startup
  242. # this is similar to manually deleting the scoreboard.dat
  243. reset-scoreboard-data: false
  244. # This option does not send scoreboard remove packets
  245. # to the client on join.
  246. keep-scoreboard-join: false
  247. # This option does not send scoreboard remove packets
  248. # to the client on quit. This can increase performance on servers
  249. # where players quit a lot (hubs, ...)
  250. #
  251. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  252. # /data folder
  253. #
  254. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  255. keep-scoreboard-quit: false
  256. # Trust or do not trust scoreboard scripts.
  257. # Normally you leave this to true
  258. # When disabled scoreboard scripts will be disabled
  259. trust-scoreboard-scripts: true
  260. # Some placeholders have a slow process behind them. Meaning they might contact a database
  261. # and take a while to 'resolve'. This will never cause lag since the placeholders are loaded
  262. # separate from the sending. But can slow down the animation because it has to wait
  263. # for the placeholder to be loaded. When having multiple lines like a text that shows
  264. # the information about the placeholders you put below it, this can cause problems.
  265. # Enabling this will output a message in the console and ingame to operators
  266. # saying when a placeholder is causing delays.
  267. detect-animation-lag: false
  268. # Putting this to true will SPAM your console with timings report per placeholder/animation
  269. # refresh. Used for debugging purposes.
  270. # This requires detect-placeholderdelay to true
  271. verbose-animation-timings: false
  272. # Show delay on join. Useful if you wish to let the user
  273. # enjoy a Title MOTD without having the scoreboard obstructing
  274. # the view.
  275. # Please note that there is a static show-delay build in of 5 ticks that you can
  276. # not change. This is because a lot of data is send in the first moment a player
  277. # joins.
  278. show-delay: 0
  279. # The update speed multiplier can increase the update speed of the scoreboard
  280. # A normal scoreboard would have a max refresh rate of 20 ticks per second
  281. # When changing this multiplier you can make this slower or faster.
  282. # Support for faster multipliers is not provided as it depends on your server
  283. # hardware if it can handle it.
  284. # This feature is mostly meant for advanced users that want to create something unique
  285. # or when stress testing.
  286. speed-multiplier: 1.0
  287. # Scoreboard script engine to use
  288. scoreboard-script-engine: "JavaScript"
  289. scoreboard-update:
  290. # Scoreboard update method
  291. # This is the method used to send the scoreboard.
  292. # RECOMMENDED - This method will use the recommended setting based
  293. # on your Minecraft version
  294. # ANTI_FLICKER_V1 - This method works for 1.7-1.13. It will prevent the
  295. # scoreboard lines from jumping.
  296. # This is the only supported method for Cauldron servers.
  297. # Pros:
  298. # - No flickering or jumping lines
  299. # - Fast animations
  300. # - Less packets after the scoreboard is loaded
  301. # - Static line support with ~72 characters
  302. # Cons:
  303. # - This method sends more packets when the scoreboard first loads
  304. # - Maximum of 28 characters with colors
  305. # ANTI_FLICKER_V2 - This method works for 1.8-1.13. It will prevent the
  306. # scoreboard lines from jumping.
  307. # This method is in BETA
  308. # Pros:
  309. # - No flickering or jumping lines
  310. # - Fast animations
  311. # - Full 68-70 character animations on 1.8-1.12
  312. # - Full 38 character animations on 1.13
  313. # Cons:
  314. # - More CPU/RAM usage than V1 due to frame buffer
  315. # - Scoreboards will have a delay of 3 ticks (not really noticeable)
  316. # - Does not work with Team plugins, 'especially' those that use packets
  317. # ANTI_FLICKER_V3 - This method works for 1.12. It is based on anti flicker v1
  318. # but with raw packets.
  319. # This method is in BETA
  320. # Pros:
  321. # - No flickering or jumping lines
  322. # - Fast animations
  323. # - Less packets after the scoreboard is loaded
  324. # - Static line support with ~72 characters
  325. # - No saving to scoreboard.dat (better performance)
  326. # - Compatible with all team plugins or under_name scoreboards
  327. # - Compatible with sidebar scoreboard plugins
  328. # - Less memory usage
  329. #
  330. # SWITCH_LINES - This method works for 1.7-1.13. It will reset individual
  331. # scoreboard lines that need updating. Causing jumping lines.
  332. # DISCONTINUED - NO LONGER OFFICIALLY SUPPORTED
  333. # SWITCH_OBJECTIVE - This method works for 1.9-1.13. It will swap out
  334. # the scoreboard objective. Causing flicker.
  335. # DISCONTINUED - NO LONGER OFFICIALLY SUPPORTED
  336. method: 'RECOMMENDED'
  337. animation-update:
  338. # Animation update method
  339. # This is the method used to update the line animations
  340. # (Updating the frames, placeholders ,...)
  341. # EFFICIENT - Will update the scoreboards using X workers.
  342. # The advantage is that it makes optimal use of the
  343. # processor to update the animations.
  344. # The downside is that some placeholders
  345. # may delay the scoreboard.
  346. # Use this if you have many scoreboards
  347. # OPTIMAL - This default option will assign a dedicated worker
  348. # per scoreboard config. Lines are therefor synchronized.
  349. # If you have no idea what the other strategies do, use this
  350. # SYNCHRONOUS - This option will update all scoreboard lines of all
  351. # scoreboards in a single worker. Meaning that for many
  352. # boards this can cause delays.
  353. # Use this if you have no more than 2 different scoreboards
  354. # ASYNCHRONOUS - This option will create a task for each scoreboard line
  355. # it was default for FeatherBoard 3 and previous versions.
  356. # However it is not really optimized.
  357. method: 'OPTIMAL'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement