Advertisement
Guest User

Featherboard config

a guest
Jan 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.92 KB | None | 0 0
  1. # ------------------------------ #
  2.  
  3. #
  4.  
  5. # FeatherBoard 3
  6.  
  7. # Runs like a feather on your server
  8.  
  9. # (c) Maxim Van de Wynckel
  10.  
  11. #
  12.  
  13. # ------------------------------ #
  14.  
  15.  
  16.  
  17. # Permissions: To use the action groups give them the permission
  18.  
  19. # featherboard.group.<group>
  20.  
  21. # Make sure to remove them from the other groups
  22.  
  23. # when giving a new permission.
  24.  
  25.  
  26.  
  27. # Variables: These variables can be used in the TEXT section
  28.  
  29. # of both the header as the footer.
  30.  
  31. #
  32.  
  33. # {PLAYER} - Player name
  34.  
  35. # {PLAYERNICK} - Player nickname
  36.  
  37. # {SERVER} - Server name
  38.  
  39. # {PLAYERCOUNT} - Server player count
  40.  
  41. # {BUNGEECOUNT} - Bungee network player count
  42.  
  43. # 5000+ more ... see spigot page
  44.  
  45.  
  46.  
  47. # Formatting: These are formatting tags allowing you to format the animations
  48.  
  49. # or placeholders.
  50.  
  51. #
  52.  
  53. # Substring: This allows you to split a word (even a placeholder) in parts
  54.  
  55. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  56.  
  57. # usage: This can be used to split placeholders when creating a typewriter
  58.  
  59. # or to split the colors in a placeholder.
  60.  
  61. #
  62.  
  63. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  64.  
  65. # two arguments (the length and space between scrolls).
  66.  
  67. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  68.  
  69. #
  70.  
  71. # PLENTY MORE! See spigot page
  72.  
  73.  
  74.  
  75. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  76.  
  77. # GENERAL PLUGIN SETTINGS
  78.  
  79. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  80.  
  81.  
  82.  
  83. ## Config version (DO NOT EDIT)
  84.  
  85. config: 3
  86.  
  87.  
  88.  
  89. ## Language file
  90.  
  91. lang: 'en'
  92.  
  93.  
  94.  
  95. ## Debug mode
  96.  
  97. debug: false
  98.  
  99.  
  100.  
  101. ## Log to file
  102.  
  103. log:
  104.  
  105. enabled: true
  106.  
  107. # Reset log on startup
  108.  
  109. reset: false
  110.  
  111.  
  112.  
  113. ## Update checking
  114.  
  115. update:
  116.  
  117. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  118.  
  119.  
  120.  
  121. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  122.  
  123. # PLUGIN SPECIFIC SETTINGS
  124.  
  125. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  126.  
  127.  
  128.  
  129. # Placeholder settings
  130.  
  131. placeholder:
  132.  
  133. # logs the memory usage of placeholders on startup
  134.  
  135. log-memory: false
  136.  
  137. # Clear unused placeholders that are not enabled.
  138.  
  139. clear-unused: true
  140.  
  141. # Config cache only
  142.  
  143. # This will only use placeholders in the config
  144.  
  145. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  146.  
  147. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  148.  
  149. config-cache: false
  150.  
  151.  
  152.  
  153. # Tweaks to increase performance (Use at own risk)
  154.  
  155. tweaks:
  156.  
  157. # This option does not send scoreboard remove packets
  158.  
  159. # to the client on quit. This can increase performance on servers
  160.  
  161. # where players quit a lot (hubs, ...)
  162.  
  163. #
  164.  
  165. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  166.  
  167. # /data folder
  168.  
  169. #
  170.  
  171. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  172.  
  173. keepScoreboardOnQuit: false
  174.  
  175. # Some placeholders have a slow process behind them. Meaning they might contact a database
  176.  
  177. # and take a while to 'resolve'. This will never cause lagg since the placeholders are loaded
  178.  
  179. # separate from the sending. But can slow down the animation because it has to wait
  180.  
  181. # for the placeholder to be loaded. When having multiple lines like a text that shows
  182.  
  183. # the information about the placeholders you put below it, this can cause problems.
  184.  
  185. # Enabling this will output a message in the console and ingame to operators
  186.  
  187. # saying when a placeholder is causing delays.
  188.  
  189. detect-placeholderdelay: false
  190.  
  191. # Putting this to true will SPAM your console with timings report per placeholder/animation
  192.  
  193. # refresh. Used for debugging purposes.
  194.  
  195. # This requires detect-placeholderdelay to true
  196.  
  197. verbose-placeholder-timings: false
  198.  
  199. # Ignore placeholder problems
  200.  
  201. # When set to true, the placeholder will not be disabled
  202.  
  203. # this also means that no ERRORS will be logged -> no troubleshooting
  204.  
  205. ignore-placeholder-problems: false
  206.  
  207.  
  208.  
  209. # Toggling allows you to disable the scoreboard
  210.  
  211. database:
  212.  
  213. # If you want the toggle to stay even when your users
  214.  
  215. # log off you can enable this. Keep in mind that this requires a
  216.  
  217. # MySQL or SQLite database.
  218.  
  219. # If you are configuring the plugin for the first time it is advised
  220.  
  221. # to stay away from these settings until you managed the scoreboard
  222.  
  223. # set up.
  224.  
  225. persistent: false
  226.  
  227. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  228.  
  229. # with isolation, url, driver, ...
  230.  
  231. # Database name
  232.  
  233. database: "featherboard"
  234.  
  235. # Database username
  236.  
  237. username: bukkit
  238.  
  239. # Database isolation type
  240.  
  241. isolation: SERIALIZABLE
  242.  
  243. # Database driver
  244.  
  245. driver: org.sqlite.JDBC
  246.  
  247. # Database password
  248.  
  249. password: walrus
  250.  
  251. # Database driver URL
  252.  
  253. # {DIR} will be replaced with the plugin directory
  254.  
  255. # {NAME} will be replaced wit the plugin name
  256.  
  257. url: jdbc:sqlite:{DIR}{NAME}.db
  258.  
  259. # Save interval in ticks
  260.  
  261. save-interval: 6000
  262.  
  263.  
  264.  
  265. # Disabled worlds. Add your world name in this list to
  266.  
  267. # disable it.
  268.  
  269. disabled-worlds:
  270.  
  271. - 'example_world'
  272.  
  273.  
  274.  
  275. # Show delay on join. Usefull if you wish to let the user
  276.  
  277. # enjoy a Title MOTD without having the scoreboard obstructing
  278.  
  279. # the view.
  280.  
  281. show-delay: 0
  282.  
  283.  
  284.  
  285. # Anti Flicker will use a new engine that will allow you to use fast animations
  286.  
  287. # without any flicker.
  288.  
  289. # You can disable this feature if you do not have fast refresh rates.
  290.  
  291. antiflicker: true
  292.  
  293.  
  294.  
  295. # Scoreboard assigning. The boards can be assigned by various ways.
  296.  
  297. # default the scoreboards will be assigned by permissions.
  298.  
  299. # You can only have one way of assigning the scoreboards
  300.  
  301. #
  302.  
  303. # PERMISSION - Assign scoreboards based on permissions
  304.  
  305. # This is the default setting (since 2014)
  306.  
  307. # featherboard.group.<scoreboard>
  308.  
  309. #
  310.  
  311. # GROUP - Assign scoreboards based on Vault groups
  312.  
  313. # this means the scoreboard name has to
  314.  
  315. # have the name of your Vault group.
  316.  
  317. #
  318.  
  319. # WORLD - Assign scoreboards based on the world
  320.  
  321. # the player is in.
  322.  
  323. #
  324.  
  325. # NONE - Do no assign scoreboards and just rely on
  326.  
  327. # manual assigning (triggers, etc...)
  328.  
  329. scoreboard-assigning: "PERMISSION"
  330.  
  331.  
  332.  
  333. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  334.  
  335. # The GUI will show all scoreboards you have permission to. It is not very
  336.  
  337. # configurable in the way you can't control the location or order of the scoreboards
  338.  
  339. # For a more configurable GUI I recommend DeluxeMenus
  340.  
  341. gui:
  342.  
  343. # This is the title of the GUI
  344.  
  345. title: "Scoreboards"
  346.  
  347. # Size of the GUI (leave to -1 to make it dynamic)
  348.  
  349. # Sizes: 9,27,54
  350.  
  351. size: -1
  352.  
  353.  
  354.  
  355. # A list of different scoreboards
  356.  
  357. boards:
  358.  
  359. # Default FeatherBoard comes with a board called "default". All players have the permission
  360.  
  361. # featherboard.group.default (by default) meaning all players should see the scoreboard unless
  362.  
  363. # the permission is negated.
  364.  
  365. #
  366.  
  367. # You can create as many boards as you want as long as the name is unique. It is advised to give logical
  368.  
  369. # names such as "vip-board", "mcmmo-levelup", ...
  370.  
  371. default:
  372.  
  373. # Every section here are different lines. The first section will be used as the title
  374.  
  375. # the following sections will be used as the lines on the scoreboard (max 15)
  376.  
  377. # Just as the scoreboard names you can name these 'lines' whatever you want. But to make
  378.  
  379. # things simple I will use logical names such as "title", "spacer", "header", ...
  380.  
  381. title:
  382.  
  383. # Every line has its own frames. The animation will loop through these frames on intervals
  384.  
  385. # that you configure below.
  386.  
  387. # Put all your frames under 'text:'. You can make as many lines as you want and use
  388.  
  389. # placeholders and preset effects.
  390.  
  391. # Keep in mind that there is a limit in line width!
  392.  
  393. text:
  394.  
  395. # To create cool looking animations you create yourself
  396.  
  397. # you can use the graphical tool AnimationCreator
  398.  
  399. # https://www.spigotmc.org/resources/animationcreator.6001/
  400.  
  401. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  402.  
  403. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  404.  
  405. - '<delay times="15">&b&lATLANTICMC</delay>'
  406.  
  407. - '&b&lATLANTICMC'
  408.  
  409. - '&3&lA&b&lTLANTICMC'
  410.  
  411. - '&f&lA&3&lT&b&lLANTICMC'
  412.  
  413. - '&f&lAT&3&lL&b&lANTICMC'
  414.  
  415. - '&f&lATL&3&lA&b&lNTICMC'
  416.  
  417. - '&f&lATLA&3&lN&b&lTICMC'
  418.  
  419. - '&f&lATLAN&3&lT&b&lICMC'
  420.  
  421. - '&f&lATLANT&3&lI&b&lCMC'
  422.  
  423. - '&f&lATLANTI&3&lC&b&lMC'
  424.  
  425. - '&f&lATLANTIC&3&lM&b&lC'
  426.  
  427. - '&f&lATLANTICM&3&lC'
  428.  
  429. - '&f&lATLANTICMC'
  430.  
  431. - '&b&lATLANTICMC'
  432.  
  433. - '&f&lATLANTICMC'
  434.  
  435. # Interval is the animation interval in TICKS (20 ticks is one second).
  436.  
  437. # Every X ticks the animation goes to the next frame (see above)
  438.  
  439. # Once all frames are finished it will start over from the first one
  440.  
  441. interval: 5
  442.  
  443. # If you don't want a static order of the frames and want to show each frame at random
  444.  
  445. # you can enable this option.
  446.  
  447. random: false
  448.  
  449. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  450.  
  451. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  452.  
  453. # These lines (usually a header or footer) are also good for decoration.
  454.  
  455. header:
  456.  
  457. text: []
  458.  
  459. interval: 10
  460.  
  461. random: true
  462.  
  463. texto21:
  464.  
  465. text:
  466.  
  467. - '&fRank: &a&l{ezrankspro_rank}'
  468.  
  469. interval: 100
  470.  
  471. random: false
  472.  
  473. text234o21:
  474.  
  475. text:
  476.  
  477. - '&fNext: &c&l{ezrankspro_nextrankup_rank}'
  478.  
  479. interval: 100
  480.  
  481. random: false
  482.  
  483. texto42:
  484.  
  485. text:
  486.  
  487. - '&fProgress: &a&l{ezrankspro_progress}%'
  488.  
  489. interval: 100
  490.  
  491. random: false
  492.  
  493. spac34er1:
  494.  
  495. text: []
  496.  
  497. interval: 100
  498.  
  499. random: false
  500.  
  501. texto2:
  502.  
  503. text:
  504.  
  505. - '&fMoney: &a{ezrankspro_balance_formatted} ⛁'
  506.  
  507. interval: 100
  508.  
  509. random: false
  510.  
  511. spacer1:
  512.  
  513. text: []
  514.  
  515. interval: 100
  516.  
  517. random: false
  518.  
  519. texto11:
  520.  
  521. text:
  522.  
  523. - '&fKills: &a{stat_pkills}'
  524.  
  525. interval: 2
  526.  
  527. random: false
  528.  
  529. texto12:
  530.  
  531. text:
  532.  
  533. - '&fDeaths: &a{stat_deaths}'
  534.  
  535. interval: 2
  536.  
  537. random: false
  538.  
  539. texto16:
  540.  
  541. text: []
  542.  
  543. interval: 2
  544.  
  545. random: false
  546.  
  547. texto1342:
  548.  
  549. text:
  550.  
  551. - '&fVote party: &a{voteparty_votes}/{voteparty_votesneeded}'
  552.  
  553. interval: 2
  554.  
  555. text23o16:
  556.  
  557. text: []
  558.  
  559. interval: 2
  560.  
  561. random: false
  562.  
  563. texto10:
  564.  
  565. text:
  566.  
  567. - '&aplay.archernetwork.net'
  568.  
  569. interval: 2
  570.  
  571. random: false
  572.  
  573. mcmmo-subirnivel:
  574.  
  575. title:
  576.  
  577. # Every line has its own frames. The animation will loop through these frames on intervals
  578.  
  579. # that you configure below.
  580.  
  581. # Put all your frames under 'text:'. You can make as many lines as you want and use
  582.  
  583. # placeholders and preset effects.
  584.  
  585. # Keep in mind that there is a limit in line width!
  586.  
  587. text:
  588.  
  589. # To create cool looking animations you create yourself
  590.  
  591. # you can use the graphical tool AnimationCreator
  592.  
  593. # https://www.spigotmc.org/resources/animationcreator.6001/
  594.  
  595. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  596.  
  597. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  598.  
  599. - '<delay times="15">&b&lATLANTICMC</delay>'
  600.  
  601. - '&b&lATLANTICMC'
  602.  
  603. - '&3&lA&b&lTLANTICMC'
  604.  
  605. - '&f&lA&3&lT&b&lLANTICMC'
  606.  
  607. - '&f&lAT&3&lL&b&lANTICMC'
  608.  
  609. - '&f&lATL&3&lA&b&lNTICMC'
  610.  
  611. - '&f&lATLA&3&lN&b&lTICMC'
  612.  
  613. - '&f&lATLAN&3&lT&b&lICMC'
  614.  
  615. - '&f&lATLANT&3&lI&b&lCMC'
  616.  
  617. - '&f&lATLANTI&3&lC&b&lMC'
  618.  
  619. - '&f&lATLANTIC&3&lM&b&lC'
  620.  
  621. - '&f&lATLANTICM&3&lC'
  622.  
  623. - '&f&lATLANTICMC'
  624.  
  625. - '&b&lATLANTICMC'
  626.  
  627. - '&f&lATLANTICMC'
  628.  
  629. # Interval is the animation interval in TICKS (20 ticks is one second).
  630.  
  631. # Every X ticks the animation goes to the next frame (see above)
  632.  
  633. # Once all frames are finished it will start over from the first one
  634.  
  635. interval: 5
  636.  
  637. # If you don't want a static order of the frames and want to show each frame at random
  638.  
  639. # you can enable this option.
  640.  
  641. random: false
  642.  
  643. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  644.  
  645. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  646.  
  647. # These lines (usually a header or footer) are also good for decoration.
  648.  
  649. header:
  650.  
  651. text: []
  652.  
  653. interval: 10
  654.  
  655. random: true
  656.  
  657. texto1:
  658.  
  659. text:
  660.  
  661. - '&3Congratulations, you'
  662.  
  663. interval: 2
  664.  
  665. random: false
  666.  
  667. texto14324:
  668.  
  669. text:
  670.  
  671. - '&3leveled up!'
  672.  
  673. interval: 2
  674.  
  675. random: false
  676.  
  677. spacer1344:
  678.  
  679. text: []
  680.  
  681. interval: 2
  682.  
  683. random: false
  684.  
  685. texto2:
  686.  
  687. text:
  688.  
  689. - '&8· &3Information'
  690.  
  691. interval: 2
  692.  
  693. random: false
  694.  
  695. texto2:
  696.  
  697. text:
  698.  
  699. - '&fAbilitie: &a{mcmmo-levelup_skill_name}'
  700.  
  701. interval: 2
  702.  
  703. random: false
  704.  
  705. texto45:
  706.  
  707. text:
  708.  
  709. - '&fLevel: &a{mcmmo-levelup_skill_level}'
  710.  
  711. interval: 2
  712.  
  713. random: false
  714.  
  715. texto134:
  716.  
  717. text:
  718.  
  719. - '&fExperience: &a{mcmmo-levelup_skill_xplevel}'
  720.  
  721. interval: 2
  722.  
  723. random: false
  724.  
  725. texto16234:
  726.  
  727. text: []
  728.  
  729. interval: 2
  730.  
  731. random: false
  732.  
  733. texto112fs:
  734.  
  735. text:
  736.  
  737. - '&fGained: &a{mcmmo-levelup_levelsgained}'
  738.  
  739. interval: 2
  740.  
  741. random: false
  742.  
  743. texto11:
  744.  
  745. text:
  746.  
  747. - '&fNeeded: &a{mcmmo-levelup_skill_xptolevel}'
  748.  
  749. interval: 2
  750.  
  751. random: false
  752.  
  753. texto16:
  754.  
  755. text: []
  756.  
  757. interval: 2
  758.  
  759. random: false
  760.  
  761. texto10:
  762.  
  763. text:
  764.  
  765. - '&aplay.example.net'
  766.  
  767. interval: 2
  768.  
  769. random: false
  770.  
  771. entrar:
  772.  
  773. title:
  774.  
  775. # Every line has its own frames. The animation will loop through these frames on intervals
  776.  
  777. # that you configure below.
  778.  
  779. # Put all your frames under 'text:'. You can make as many lines as you want and use
  780.  
  781. # placeholders and preset effects.
  782.  
  783. # Keep in mind that there is a limit in line width!
  784.  
  785. text:
  786.  
  787. # To create cool looking animations you create yourself
  788.  
  789. # you can use the graphical tool AnimationCreator
  790.  
  791. # https://www.spigotmc.org/resources/animationcreator.6001/
  792.  
  793. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  794.  
  795. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  796.  
  797. - '<delay times="15">&b&lATLANTICMC</delay>'
  798.  
  799. - '&b&lATLANTICMC'
  800.  
  801. - '&3&lA&b&lTLANTICMC'
  802.  
  803. - '&f&lA&3&lT&b&lLANTICMC'
  804.  
  805. - '&f&lAT&3&lL&b&lANTICMC'
  806.  
  807. - '&f&lATL&3&lA&b&lNTICMC'
  808.  
  809. - '&f&lATLA&3&lN&b&lTICMC'
  810.  
  811. - '&f&lATLAN&3&lT&b&lICMC'
  812.  
  813. - '&f&lATLANT&3&lI&b&lCMC'
  814.  
  815. - '&f&lATLANTI&3&lC&b&lMC'
  816.  
  817. - '&f&lATLANTIC&3&lM&b&lC'
  818.  
  819. - '&f&lATLANTICM&3&lC'
  820.  
  821. - '&f&lATLANTICMC'
  822.  
  823. - '&b&lATLANTICMC'
  824.  
  825. - '&f&lATLANTICMC'
  826.  
  827. # Interval is the animation interval in TICKS (20 ticks is one second).
  828.  
  829. # Every X ticks the animation goes to the next frame (see above)
  830.  
  831. # Once all frames are finished it will start over from the first one
  832.  
  833. interval: 5
  834.  
  835. # If you don't want a static order of the frames and want to show each frame at random
  836.  
  837. # you can enable this option.
  838.  
  839. random: false
  840.  
  841. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  842.  
  843. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  844.  
  845. # These lines (usually a header or footer) are also good for decoration.
  846.  
  847. header:
  848.  
  849. text: []
  850.  
  851. interval: 10
  852.  
  853. random: true
  854.  
  855. texto1:
  856.  
  857. text:
  858.  
  859. - '&3Welcome again'
  860.  
  861. interval: 100
  862.  
  863. random: false
  864.  
  865. spacer1344:
  866.  
  867. text: []
  868.  
  869. interval: 100
  870.  
  871. random: false
  872.  
  873. texto2:
  874.  
  875. text:
  876.  
  877. - '&8· &3Stats'
  878.  
  879. interval: 100
  880.  
  881. random: false
  882.  
  883. texto2:
  884.  
  885. text:
  886.  
  887. - '&fPlayed: &a{stat_time_played}'
  888.  
  889. interval: 100
  890.  
  891. random: false
  892.  
  893. texto45:
  894.  
  895. text:
  896.  
  897. - '&fLast Time: &a{lastplayed}'
  898.  
  899. interval: 100
  900.  
  901. random: false
  902.  
  903. texto134:
  904.  
  905. text:
  906.  
  907. - '&fJoined: &a{firstplayed}'
  908.  
  909. interval: 100
  910.  
  911. random: false
  912.  
  913. texto16234:
  914.  
  915. text: []
  916.  
  917. interval: 2
  918.  
  919. random: false
  920.  
  921. texto10:
  922.  
  923. text:
  924.  
  925. - '&aplay.example.net'
  926.  
  927. interval: 2
  928.  
  929. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement