Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.78 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. - 'SMP'
  273.  
  274.  
  275.  
  276. # Show delay on join. Usefull if you wish to let the user
  277.  
  278. # enjoy a Title MOTD without having the scoreboard obstructing
  279.  
  280. # the view.
  281.  
  282. show-delay: 0
  283.  
  284.  
  285.  
  286. # Anti Flicker will use a new engine that will allow you to use fast animations
  287.  
  288. # without any flicker.
  289.  
  290. # You can disable this feature if you do not have fast refresh rates.
  291.  
  292. antiflicker: true
  293.  
  294.  
  295.  
  296. # Scoreboard assigning. The boards can be assigned by various ways.
  297.  
  298. # default the scoreboards will be assigned by permissions.
  299.  
  300. # You can only have one way of assigning the scoreboards
  301.  
  302. #
  303.  
  304. # PERMISSION - Assign scoreboards based on permissions
  305.  
  306. # This is the default setting (since 2014)
  307.  
  308. # featherboard.group.<scoreboard>
  309.  
  310. #
  311.  
  312. # GROUP - Assign scoreboards based on Vault groups
  313.  
  314. # this means the scoreboard name has to
  315.  
  316. # have the name of your Vault group.
  317.  
  318. #
  319.  
  320. # WORLD - Assign scoreboards based on the world
  321.  
  322. # the player is in.
  323.  
  324. #
  325.  
  326. # NONE - Do no assign scoreboards and just rely on
  327.  
  328. # manual assigning (triggers, etc...)
  329.  
  330. scoreboard-assigning: "PERMISSION"
  331.  
  332.  
  333.  
  334. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  335.  
  336. # The GUI will show all scoreboards you have permission to. It is not very
  337.  
  338. # configurable in the way you can't control the location or order of the scoreboards
  339.  
  340. # For a more configurable GUI I recommend DeluxeMenus
  341.  
  342. gui:
  343.  
  344. # This is the title of the GUI
  345.  
  346. title: "Scoreboards"
  347.  
  348. # Size of the GUI (leave to -1 to make it dynamic)
  349.  
  350. # Sizes: 9,27,54
  351.  
  352. size: -1
  353.  
  354.  
  355.  
  356. # A list of different scoreboards
  357.  
  358. boards:
  359.  
  360. # Default FeatherBoard comes with a board called "default". All players have the permission
  361.  
  362. # featherboard.group.default (by default) meaning all players should see the scoreboard unless
  363.  
  364. # the permission is negated.
  365.  
  366. #
  367.  
  368. # You can create as many boards as you want as long as the name is unique. It is advised to give logical
  369.  
  370. # names such as "vip-board", "mcmmo-levelup", ...
  371.  
  372. default:
  373.  
  374. # Every section here are different lines. The first section will be used as the title
  375.  
  376. # the following sections will be used as the lines on the scoreboard (max 15)
  377.  
  378. # Just as the scoreboard names you can name these 'lines' whatever you want. But to make
  379.  
  380. # things simple I will use logical names such as "title", "spacer", "header", ...
  381.  
  382. title:
  383.  
  384. # Every line has its own frames. The animation will loop through these frames on intervals
  385.  
  386. # that you configure below.
  387.  
  388. # Put all your frames under 'text:'. You can make as many lines as you want and use
  389.  
  390. # placeholders and preset effects.
  391.  
  392. # Keep in mind that there is a limit in line width!
  393.  
  394. text:
  395.  
  396. # To create cool looking animations you create yourself
  397.  
  398. # you can use the graphical tool AnimationCreator
  399.  
  400. # https://www.spigotmc.org/resources/animationcreator.6001/
  401.  
  402. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  403.  
  404. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  405.  
  406. - '<single><delay times="10">&l><</delay></single>'
  407.  
  408. - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  409.  
  410. - '<single>&f&lherB</single>'
  411.  
  412. - '<single>&f&lherBo</single>'
  413.  
  414. - '<single>&f&latherBoa</single>'
  415.  
  416. - '<single>&f&leatherBoar</single>'
  417.  
  418. - ' <delay times="10">&4&lTest Server</delay>' # <delay> will repeat the line X times
  419.  
  420. # Interval is the animation interval in TICKS (20 ticks is one second).
  421.  
  422. # Every X ticks the animation goes to the next frame (see above)
  423.  
  424. # Once all frames are finished it will start over from the first one
  425.  
  426. interval: 2
  427.  
  428. # If you don't want a static order of the frames and want to show each frame at random
  429.  
  430. # you can enable this option.
  431.  
  432. random: false
  433.  
  434. # A scoreboard is dynamic. The lines can change length due to smaller placeholders or scrolling text.
  435.  
  436. # that is why it is advised to have something on your scoreboard that is bigger then all other lines.
  437.  
  438. # These lines (usually a header or footer) are also good for decoration.
  439.  
  440. header:
  441.  
  442. text:
  443.  
  444. - '&4&l+&7-----------------&4&l+'
  445.  
  446. interval: 0
  447.  
  448. random: true
  449.  
  450. player-line2:
  451.  
  452. text:
  453.  
  454. - '{ping}&cms'
  455.  
  456. interval: 2
  457.  
  458. random: false
  459.  
  460. spacer2:
  461.  
  462. text:
  463.  
  464. - '&4&l{group}'
  465.  
  466. interval: 10000
  467.  
  468. random: false
  469.  
  470. timesplayed-label: #Switch between site, times played and health
  471.  
  472. text:
  473.  
  474. - '&b&l> &c&lRAM:'
  475.  
  476. interval: 0
  477.  
  478. random: false
  479.  
  480. timesplayed: #Switch between site, times played and health
  481.  
  482. text:
  483.  
  484. - '&c&l{usedram} &7MB &8&l/ &f{totalram}'
  485.  
  486. interval: 10
  487.  
  488. random: false
  489.  
  490. # For empty lines just add another 'section' but just don't put any text
  491.  
  492. # in it so it acts like an empty line.
  493.  
  494. server-label:
  495.  
  496. text:
  497.  
  498. - '&b&l> &c&lServer TPS:'
  499.  
  500. interval: 0
  501.  
  502. random: false
  503.  
  504. server-line1:
  505.  
  506. text:
  507.  
  508. - '<&c&l25% off of the store for the rest of April 2017!>' #Refresh the ram 200 times
  509.  
  510. interval: 1
  511.  
  512. random: false
  513.  
  514. server-line2:
  515.  
  516. text:
  517.  
  518. - '{tps_rounded}'
  519.  
  520. interval: 1
  521.  
  522. random: false
  523.  
  524. # This is the same as the header. It is not needed since you already use the header as the longest line
  525.  
  526. # but it looks cleaner having a footer.
  527.  
  528. footer:
  529.  
  530. text:
  531.  
  532. - '&4&l+&7-----------------&4&l+'
  533.  
  534. interval: 10
  535.  
  536. random: true
  537.  
  538. # This is a combat scoreboard example showing
  539.  
  540. # combat related information.
  541.  
  542. # DO NOT GIVE THE PERMISSION FOR THIS SCOREBOARD
  543.  
  544. # (Unless you want it to show all the time)
  545.  
  546. # You still need to 'trigger' this scoreboard in the vanilla_combat
  547.  
  548. combat-scoreboard-example:
  549.  
  550. # Lets just use the title,header and footer from the example above
  551.  
  552. # for in depth configuration look above.
  553.  
  554. #
  555.  
  556. # When designing a board that is used when triggered on an event. You have
  557.  
  558. # to think (before looking at the placeholders) what is relevant.
  559.  
  560. # For example: When I think of combat my first thoughts are:
  561.  
  562. # - Health: To see how much you have left
  563.  
  564. # - Possible cooldown timers
  565.  
  566. # - With who am I in combat?
  567.  
  568. # - Target health
  569.  
  570. # - mcMMO attacking level?
  571.  
  572. #
  573.  
  574. # Next you have to think what is important during that event:
  575.  
  576. # - Combat: not too much distraction (no animations, smaller scoreboard)
  577.  
  578. #
  579.  
  580. # Once you know those things start looking for placeholders. A lot of events such
  581.  
  582. # as mcmmo have placeholders that can only be used in such events.
  583.  
  584. title:
  585.  
  586. text:
  587.  
  588. # To create cool looking animations you create yourself
  589.  
  590. # you can use the graphical tool AnimationCreator
  591.  
  592. # https://www.spigotmc.org/resources/animationcreator.6001/
  593.  
  594. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  595.  
  596. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  597.  
  598. - '<single><delay times="10">&l><</delay></single>'
  599.  
  600. - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  601.  
  602. - '<single>&f&lherB</single>'
  603.  
  604. - '<single>&f&lherBo</single>'
  605.  
  606. - '<single>&f&latherBoa</single>'
  607.  
  608. - '<single>&f&leatherBoar</single>'
  609.  
  610. - ' <delay times="100">&f&lFeatherBoard&1&l3</delay>' # <delay> will repeat the line X times
  611.  
  612. interval: 2
  613.  
  614. random: false
  615.  
  616. header:
  617.  
  618. text:
  619.  
  620. - '&a&m+-----------------+'
  621.  
  622. interval: 10
  623.  
  624. random: true
  625.  
  626. combat-label:
  627.  
  628. text:
  629.  
  630. - '&8&l> &7&lCombat target:'
  631.  
  632. interval: 100
  633.  
  634. random: false
  635.  
  636. combat-data:
  637.  
  638. text:
  639.  
  640. - '{vanilla-combat_opponent_name}'
  641.  
  642. interval: 2
  643.  
  644. random: false
  645.  
  646. spacer1:
  647.  
  648. text: []
  649.  
  650. interval: 100
  651.  
  652. health-label:
  653.  
  654. text:
  655.  
  656. - '&8&l> &7&lHealth stats:'
  657.  
  658. interval: 100
  659.  
  660. random: false
  661.  
  662. health-data-1:
  663.  
  664. text:
  665.  
  666. - '&aYou: {healthbar}'
  667.  
  668. interval: 1
  669.  
  670. random: false
  671.  
  672. health-data-2:
  673.  
  674. text:
  675.  
  676. - '&cTarget: {vanilla-combat_opponent_healthbar}'
  677.  
  678. interval: 1
  679.  
  680. random: false
  681.  
  682. footer:
  683.  
  684. text:
  685.  
  686. - '&4&l+&7-----------------&4&l+'
  687.  
  688. interval: 10
  689.  
  690. random: true
  691.  
  692. # This is an example for mcMMO when you level up
  693.  
  694. # DO NOT GIVE THE PERMISSION FOR THIS SCOREBOARD
  695.  
  696. # (Unless you want it to show all the time)
  697.  
  698. # You still need to 'trigger' this scoreboard in the 'mcmmo-levelup'
  699.  
  700. mcmmo-levelup:
  701.  
  702. title:
  703.  
  704. text:
  705.  
  706. # To create cool looking animations you create yourself
  707.  
  708. # you can use the graphical tool AnimationCreator
  709.  
  710. # https://www.spigotmc.org/resources/animationcreator.6001/
  711.  
  712. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  713.  
  714. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  715.  
  716. - '<single><delay times="10">&l><</delay></single>'
  717.  
  718. - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  719.  
  720. - '<single>&f&lherB</single>'
  721.  
  722. - '<single>&f&lherBo</single>'
  723.  
  724. - '<single>&f&latherBoa</single>'
  725.  
  726. - '<single>&f&leatherBoar</single>'
  727.  
  728. - ' <delay times="100">&f&lFeatherBoard&1&l3</delay>' # <delay> will repeat the line X times
  729.  
  730. interval: 2
  731.  
  732. random: false
  733.  
  734. header:
  735.  
  736. text:
  737.  
  738. - '&a&m+-----------------+'
  739.  
  740. interval: 10
  741.  
  742. random: true
  743.  
  744. info-label:
  745.  
  746. text:
  747.  
  748. # mcMMO-levelup comes with several event specific placeholders
  749.  
  750. - '&bCongrats! Level up: {mcmmo-levelup_levelsgained}'
  751.  
  752. interval: 10
  753.  
  754. spacer1: # This is a spacer an empty line
  755.  
  756. text:
  757.  
  758. - ''
  759.  
  760. interval: 10
  761.  
  762. # Do you want to randomize the animation frames?
  763.  
  764. random: false
  765.  
  766. skill-label: # You can add elements to the group and name them like you want
  767.  
  768. # Lets make a static label
  769.  
  770. text:
  771.  
  772. - '&9&l> &e&lSkill:'
  773.  
  774. interval: 10 # The interval is not important since its just 1 static text.
  775.  
  776. # Do you want to randomize the animation frames?
  777.  
  778. random: false
  779.  
  780. skill:
  781.  
  782. # Lets make a static label
  783.  
  784. text:
  785.  
  786. - '{mcmmo-levelup_skill_name}'
  787.  
  788. interval: 10 # The interval is not important since its just 1 static text.
  789.  
  790. # Do you want to randomize the animation frames?
  791.  
  792. random: false
  793.  
  794. spacer2: # This is a spacer an empty line
  795.  
  796. text:
  797.  
  798. - ''
  799.  
  800. interval: 100
  801.  
  802. # Do you want to randomize the animation frames?
  803.  
  804. random: false
  805.  
  806. skilllevel-label: # You can add elements to the group and name them like you want
  807.  
  808. # Lets make a static label
  809.  
  810. text:
  811.  
  812. - '&b&l> &e&lCurrent level:'
  813.  
  814. interval: 10 # The interval is not important since its just 1 static text.
  815.  
  816. # Do you want to randomize the animation frames?
  817.  
  818. random: false
  819.  
  820. skilllevel:
  821.  
  822. # Lets make a static label
  823.  
  824. text:
  825.  
  826. - '{mcmmo-levelup_skilllevel}'
  827.  
  828. interval: 10 # The interval is not important since its just 1 static text.
  829.  
  830. # Do you want to randomize the animation frames?
  831.  
  832. random: false
  833.  
  834. footer:
  835.  
  836. text:
  837.  
  838. - '&a&m+-----------------+'
  839.  
  840. interval: 10
  841.  
  842. random: true
  843.  
  844. # This is an example for Towny when you enter a town
  845.  
  846. # DO NOT GIVE THE PERMISSION FOR THIS SCOREBOARD
  847.  
  848. # (Unless you want it to show all the time)
  849.  
  850. # You still need to 'trigger' this scoreboard in the 'towny-town'
  851.  
  852. towny-town-example:
  853.  
  854. # Lets just use the title,header and footer from the example above
  855.  
  856. # for in depth configuration look above.
  857.  
  858. title:
  859.  
  860. text:
  861.  
  862. # To create cool looking animations you create yourself
  863.  
  864. # you can use the graphical tool AnimationCreator
  865.  
  866. # https://www.spigotmc.org/resources/animationcreator.6001/
  867.  
  868. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  869.  
  870. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  871.  
  872. - '<single><delay times="10">&l><</delay></single>'
  873.  
  874. - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  875.  
  876. - '<single>&f&lherB</single>'
  877.  
  878. - '<single>&f&lherBo</single>'
  879.  
  880. - '<single>&f&latherBoa</single>'
  881.  
  882. - '<single>&f&leatherBoar</single>'
  883.  
  884. - ' <delay times="100">&f&lFeatherBoard&1&l3</delay>' # <delay> will repeat the line X times
  885.  
  886. interval: 2
  887.  
  888. random: false
  889.  
  890. header:
  891.  
  892. text:
  893.  
  894. - '&a&m+-------------------+'
  895.  
  896. interval: 10
  897.  
  898. random: true
  899.  
  900. town-label:
  901.  
  902. text:
  903.  
  904. - '&bYou are in town:'
  905.  
  906. interval: 100
  907.  
  908. town-data:
  909.  
  910. text:
  911.  
  912. - '{towny_currenttown_name}'
  913.  
  914. interval: 100
  915.  
  916. spacer1:
  917.  
  918. text: []
  919.  
  920. interval: 100
  921.  
  922. townboard-label:
  923.  
  924. text:
  925.  
  926. - '&bTown board:'
  927.  
  928. interval: 100
  929.  
  930. townboard:
  931.  
  932. text:
  933.  
  934. - '&a<scroll minwidth="28" width="30">{towny_currenttown_townboard}</scroll>'
  935.  
  936. interval: 3
  937.  
  938. spacer2:
  939.  
  940. text: []
  941.  
  942. interval: 100
  943.  
  944. population-label:
  945.  
  946. text:
  947.  
  948. - '&bPopulation:'
  949.  
  950. interval: 100
  951.  
  952. poplulation-data:
  953.  
  954. text:
  955.  
  956. - '{towny_currenttown_residents}'
  957.  
  958. interval: 100
  959.  
  960. footer:
  961.  
  962. text:
  963.  
  964. - '&a&m+-------------------+'
  965.  
  966. interval: 10
  967.  
  968. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement