Advertisement
Guest User

Untitled

a guest
Apr 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.74 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # FeatherBoard 3
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. #
  7. # ------------------------------ #
  8.  
  9. # Permissions: To use the action groups give them the permission
  10. # featherboard.group.<group>
  11. # Make sure to remove them from the other groups
  12. # when giving a new permission.
  13.  
  14. # Variables: These variables can be used in the TEXT section
  15. # of both the header as the footer.
  16. #
  17. # {PLAYER} - Player name
  18. # {PLAYERNICK} - Player nickname
  19. # {SERVER} - Server name
  20. # {PLAYERCOUNT} - Server player count
  21. # {BUNGEECOUNT} - Bungee network player count
  22. # 5000+ more ... see spigot page
  23.  
  24. # Formatting: These are formatting tags allowing you to format the animations
  25. # or placeholders.
  26. #
  27. # Substring: This allows you to split a word (even a placeholder) in parts
  28. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  29. # usage: This can be used to split placeholders when creating a typewriter
  30. # or to split the colors in a placeholder.
  31. #
  32. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  33. # two arguments (the length and space between scrolls).
  34. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  35. #
  36. # PLENTY MORE! See spigot page
  37.  
  38. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  39. # GENERAL PLUGIN SETTINGS
  40. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  41.  
  42. ## Config version (DO NOT EDIT)
  43. config: 3
  44.  
  45. ## Language file
  46. lang: 'en'
  47.  
  48. ## Debug mode
  49. debug: false
  50.  
  51. ## Log to file
  52. log:
  53. enabled: true
  54. # Reset log on startup
  55. reset: false
  56.  
  57. ## Update checking
  58. update:
  59. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  60.  
  61. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  62. # PLUGIN SPECIFIC SETTINGS
  63. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  64.  
  65. # Placeholder settings
  66. placeholder:
  67. # logs the memory usage of placeholders on startup
  68. log-memory: false
  69. # Clear unused placeholders that are not enabled.
  70. clear-unused: true
  71. # Config cache only
  72. # This will only use placeholders in the config
  73. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  74. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  75. config-cache: false
  76.  
  77. # Tweaks to increase performance (Use at own risk)
  78. tweaks:
  79. # This option does not send scoreboard remove packets
  80. # to the client on quit. This can increase performance on servers
  81. # where players quit a lot (hubs, ...)
  82. #
  83. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  84. # /data folder
  85. #
  86. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  87. keepScoreboardOnQuit: false
  88. # Some placeholders have a slow process behind them. Meaning they might contact a database
  89. # and take a while to 'resolve'. This will never cause lagg since the placeholders are loaded
  90. # separate from the sending. But can slow down the animation because it has to wait
  91. # for the placeholder to be loaded. When having multiple lines like a text that shows
  92. # the information about the placeholders you put below it, this can cause problems.
  93. # Enabling this will output a message in the console and ingame to operators
  94. # saying when a placeholder is causing delays.
  95. detect-placeholderdelay: false
  96. # Putting this to true will SPAM your console with timings report per placeholder/animation
  97. # refresh. Used for debugging purposes.
  98. # This requires detect-placeholderdelay to true
  99. verbose-placeholder-timings: false
  100. # Ignore placeholder problems
  101. # When set to true, the placeholder will not be disabled
  102. # this also means that no ERRORS will be logged -> no troubleshooting
  103. ignore-placeholder-problems: false
  104.  
  105. # Toggling allows you to disable the scoreboard
  106. database:
  107. # If you want the toggle to stay even when your users
  108. # log off you can enable this. Keep in mind that this requires a
  109. # MySQL or SQLite database.
  110. # If you are configuring the plugin for the first time it is advised
  111. # to stay away from these settings until you managed the scoreboard
  112. # set up.
  113. persistent: false
  114. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  115. # with isolation, url, driver, ...
  116. # Database name
  117. database: "featherboard"
  118. # Database username
  119. username: bukkit
  120. # Database isolation type
  121. isolation: SERIALIZABLE
  122. # Database driver
  123. driver: org.sqlite.JDBC
  124. # Database password
  125. password: walrus
  126. # Database driver URL
  127. # {DIR} will be replaced with the plugin directory
  128. # {NAME} will be replaced wit the plugin name
  129. url: jdbc:sqlite:{DIR}{NAME}.db
  130. # Save interval in ticks
  131. save-interval: 6000
  132.  
  133. # Disabled worlds. Add your world name in this list to
  134. # disable it.
  135. disabled-worlds:
  136. - 'ColorTowers'
  137. - 'lobbyes'
  138.  
  139. # Show delay on join. Usefull if you wish to let the user
  140. # enjoy a Title MOTD without having the scoreboard obstructing
  141. # the view.
  142. show-delay: 0
  143.  
  144. # Anti Flicker will use a new engine that will allow you to use fast animations
  145. # without any flicker.
  146. # You can disable this feature if you do not have fast refresh rates.
  147. antiflicker: true
  148.  
  149. # Scoreboard assigning. The boards can be assigned by various ways.
  150. # default the scoreboards will be assigned by permissions.
  151. # You can only have one way of assigning the scoreboards
  152. #
  153. # PERMISSION - Assign scoreboards based on permissions
  154. # This is the default setting (since 2014)
  155. # featherboard.group.<scoreboard>
  156. #
  157. # GROUP - Assign scoreboards based on Vault groups
  158. # this means the scoreboard name has to
  159. # have the name of your Vault group.
  160. #
  161. # WORLD - Assign scoreboards based on the world
  162. # the player is in.
  163. #
  164. # NONE - Do no assign scoreboards and just rely on
  165. # manual assigning (triggers, etc...)
  166. scoreboard-assigning: "PERMISSION"
  167.  
  168. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  169. # The GUI will show all scoreboards you have permission to. It is not very
  170. # configurable in the way you can't control the location or order of the scoreboards
  171. # For a more configurable GUI I recommend DeluxeMenus
  172. gui:
  173. # This is the title of the GUI
  174. title: "Scoreboards"
  175. # Size of the GUI (leave to -1 to make it dynamic)
  176. # Sizes: 9,27,54
  177. size: -1
  178.  
  179. # A list of different scoreboards
  180. boards:
  181. # Default FeatherBoard comes with a board called "default". All players have the permission
  182. # featherboard.group.default (by default) meaning all players should see the scoreboard unless
  183. # the permission is negated.
  184. #
  185. # You can create as many boards as you want as long as the name is unique. It is advised to give logical
  186. # names such as "vip-board", "mcmmo-levelup", ...
  187. default:
  188. title:
  189. text:
  190. - '&e&lAwesome-&6&lCommunity.eu'
  191. interval: 2
  192. random: false
  193. header:
  194. text:
  195. - ''
  196. interval: 10
  197. random: true
  198. player-label:
  199. text:
  200. - '&a&lNickname:'
  201. interval: 100
  202. random: false
  203. player-line1:
  204. text:
  205. - '&7{PLAYER}'
  206. interval: 2
  207. random: false
  208. player-line2:
  209. text:
  210. - ''
  211. interval: 10
  212. random: true
  213. news-info:
  214. text:
  215. - '&c&lRank:'
  216. interval: 100
  217. random: false
  218. news:
  219. text:
  220. - '&7Hráč'
  221. interval: 2
  222. random: false
  223. spacer2:
  224. text:
  225. - ''
  226. interval: 100
  227. random: false
  228. timesplayed-label:
  229. text:
  230. - '&b&lPeniaze'
  231. interval: 100
  232. random: false
  233. timesplayed: #Switch between site, times played and health
  234. text:
  235. - '&7{MONEY}'
  236. interval: 100
  237. random: false
  238. spacer3:
  239. text: []
  240. interval: 100
  241. random: false
  242. server-label:
  243. text:
  244. - '&d&lOnline:'
  245. interval: 100
  246. random: false
  247. server-line2:
  248. text:
  249. - '&7{onlineplayers} | {maxplayers}'
  250. interval: 10
  251. random: false
  252. # This is the same as the header. It is not needed since you already use the header as the longest line
  253. # but it looks cleaner having a footer.
  254. footer:
  255. text:
  256. - ''
  257. interval: 10
  258. random: true
  259. koste:
  260. title:
  261. text:
  262. - '&e&lAwesome-&6&lCommunity.eu'
  263. interval: 2
  264. random: false
  265. header:
  266. text:
  267. - ''
  268. interval: 10
  269. random: true
  270. player-label:
  271. text:
  272. - '&a&lNickname:'
  273. interval: 100
  274. random: false
  275. player-line1:
  276. text:
  277. - '&7{PLAYER}'
  278. interval: 2
  279. random: false
  280. player-line2:
  281. text:
  282. - ''
  283. interval: 10
  284. random: true
  285. news-info:
  286. text:
  287. - '&c&lRank:'
  288. interval: 100
  289. random: false
  290. news:
  291. text:
  292. - '&7Koště'
  293. interval: 2
  294. random: false
  295. spacer2:
  296. text:
  297. - ''
  298. interval: 100
  299. random: false
  300. timesplayed-label:
  301. text:
  302. - '&b&lPeniaze'
  303. interval: 100
  304. random: false
  305. timesplayed: #Switch between site, times played and health
  306. text:
  307. - '&7{MONEY}'
  308. interval: 100
  309. random: false
  310. spacer3:
  311. text: []
  312. interval: 100
  313. random: false
  314. server-label:
  315. text:
  316. - '&d&lOnline:'
  317. interval: 100
  318. random: false
  319. server-line2:
  320. text:
  321. - '&7{onlineplayers} | {maxplayers}'
  322. interval: 10
  323. random: false
  324. # This is the same as the header. It is not needed since you already use the header as the longest line
  325. # but it looks cleaner having a footer.
  326. footer:
  327. text:
  328. - ''
  329. interval: 10
  330. random: true
  331. Iron:
  332. title:
  333. text:
  334. - '&e&lAwesome-&6&lCommunity.eu'
  335. interval: 2
  336. random: false
  337. header:
  338. text:
  339. - ''
  340. interval: 10
  341. random: true
  342. player-label:
  343. text:
  344. - '&a&lNickname:'
  345. interval: 100
  346. random: false
  347. player-line1:
  348. text:
  349. - '&7{PLAYER}'
  350. interval: 2
  351. random: false
  352. player-line2:
  353. text:
  354. - ''
  355. interval: 10
  356. random: true
  357. news-info:
  358. text:
  359. - '&c&lRank:'
  360. interval: 100
  361. random: false
  362. news:
  363. text:
  364. - '&7&lIron'
  365. interval: 2
  366. random: false
  367. spacer2:
  368. text:
  369. - ''
  370. interval: 100
  371. random: false
  372. timesplayed-label:
  373. text:
  374. - '&b&lPeniaze'
  375. interval: 100
  376. random: false
  377. timesplayed: #Switch between site, times played and health
  378. text:
  379. - '&7{MONEY}'
  380. interval: 100
  381. random: false
  382. spacer3:
  383. text: []
  384. interval: 100
  385. random: false
  386. server-label:
  387. text:
  388. - '&d&lOnline:'
  389. interval: 100
  390. random: false
  391. server-line2:
  392. text:
  393. - '&7{onlineplayers} | {maxplayers}'
  394. interval: 10
  395. random: false
  396. # This is the same as the header. It is not needed since you already use the header as the longest line
  397. # but it looks cleaner having a footer.
  398. footer:
  399. text:
  400. - ''
  401. interval: 10
  402. random: true
  403. Gold:
  404. title:
  405. text:
  406. - '&e&lAwesome-&6&lCommunity.eu'
  407. interval: 2
  408. random: false
  409. header:
  410. text:
  411. - ''
  412. interval: 10
  413. random: true
  414. player-label:
  415. text:
  416. - '&a&lNickname:'
  417. interval: 100
  418. random: false
  419. player-line1:
  420. text:
  421. - '&7{PLAYER}'
  422. interval: 2
  423. random: false
  424. player-line2:
  425. text:
  426. - ''
  427. interval: 10
  428. random: true
  429. news-info:
  430. text:
  431. - '&c&lRank:'
  432. interval: 100
  433. random: false
  434. news:
  435. text:
  436. - '&6&lGold'
  437. interval: 2
  438. random: false
  439. spacer2:
  440. text:
  441. - ''
  442. interval: 100
  443. random: false
  444. timesplayed-label:
  445. text:
  446. - '&b&lPeniaze'
  447. interval: 100
  448. random: false
  449. timesplayed: #Switch between site, times played and health
  450. text:
  451. - '&7{MONEY}'
  452. interval: 100
  453. random: false
  454. spacer3:
  455. text: []
  456. interval: 100
  457. random: false
  458. server-label:
  459. text:
  460. - '&d&lOnline:'
  461. interval: 100
  462. random: false
  463. server-line2:
  464. text:
  465. - '&7{onlineplayers} | {maxplayers}'
  466. interval: 10
  467. random: false
  468. # This is the same as the header. It is not needed since you already use the header as the longest line
  469. # but it looks cleaner having a footer.
  470. footer:
  471. text:
  472. - ''
  473. interval: 10
  474. random: true
  475. Diamond:
  476. title:
  477. text:
  478. - '&e&lAwesome-&6&lCommunity.eu'
  479. interval: 2
  480. random: false
  481. header:
  482. text:
  483. - ''
  484. interval: 10
  485. random: true
  486. player-label:
  487. text:
  488. - '&a&lNickname:'
  489. interval: 100
  490. random: false
  491. player-line1:
  492. text:
  493. - '&7{PLAYER}'
  494. interval: 2
  495. random: false
  496. player-line2:
  497. text:
  498. - ''
  499. interval: 10
  500. random: true
  501. news-info:
  502. text:
  503. - '&c&lRank:'
  504. interval: 100
  505. random: false
  506. news:
  507. text:
  508. - '&b&lDiamond'
  509. interval: 2
  510. random: false
  511. spacer2:
  512. text:
  513. - ''
  514. interval: 100
  515. random: false
  516. timesplayed-label:
  517. text:
  518. - '&b&lPeniaze'
  519. interval: 100
  520. random: false
  521. timesplayed: #Switch between site, times played and health
  522. text:
  523. - '&7{MONEY}'
  524. interval: 100
  525. random: false
  526. spacer3:
  527. text: []
  528. interval: 100
  529. random: false
  530. server-label:
  531. text:
  532. - '&d&lOnline:'
  533. interval: 100
  534. random: false
  535. server-line2:
  536. text:
  537. - '&7{onlineplayers} | {maxplayers}'
  538. interval: 10
  539. random: false
  540. # This is the same as the header. It is not needed since you already use the header as the longest line
  541. # but it looks cleaner having a footer.
  542. footer:
  543. text:
  544. - ''
  545. interval: 10
  546. random: true
  547. Emerald:
  548. title:
  549. text:
  550. - '&e&lAwesome-&6&lCommunity.eu'
  551. interval: 2
  552. random: false
  553. header:
  554. text:
  555. - ''
  556. interval: 10
  557. random: true
  558. player-label:
  559. text:
  560. - '&a&lNickname:'
  561. interval: 100
  562. random: false
  563. player-line1:
  564. text:
  565. - '&7{PLAYER}'
  566. interval: 2
  567. random: false
  568. player-line2:
  569. text:
  570. - ''
  571. interval: 10
  572. random: true
  573. news-info:
  574. text:
  575. - '&c&lRank:'
  576. interval: 100
  577. random: false
  578. news:
  579. text:
  580. - '&a&lEmerald'
  581. interval: 2
  582. random: false
  583. spacer2:
  584. text:
  585. - ''
  586. interval: 100
  587. random: false
  588. timesplayed-label:
  589. text:
  590. - '&b&lPeniaze'
  591. interval: 100
  592. random: false
  593. timesplayed: #Switch between site, times played and health
  594. text:
  595. - '&7{MONEY}'
  596. interval: 100
  597. random: false
  598. spacer3:
  599. text: []
  600. interval: 100
  601. random: false
  602. server-label:
  603. text:
  604. - '&d&lOnline:'
  605. interval: 100
  606. random: false
  607. server-line2:
  608. text:
  609. - '&7{onlineplayers} | {maxplayers}'
  610. interval: 10
  611. random: false
  612. # This is the same as the header. It is not needed since you already use the header as the longest line
  613. # but it looks cleaner having a footer.
  614. footer:
  615. text:
  616. - ''
  617. interval: 10
  618. random: true
  619. Obsidian:
  620. title:
  621. text:
  622. - '&e&lAwesome-&6&lCommunity.eu'
  623. interval: 2
  624. random: false
  625. header:
  626. text:
  627. - ''
  628. interval: 10
  629. random: true
  630. player-label:
  631. text:
  632. - '&a&lNickname:'
  633. interval: 100
  634. random: false
  635. player-line1:
  636. text:
  637. - '&7{PLAYER}'
  638. interval: 2
  639. random: false
  640. player-line2:
  641. text:
  642. - ''
  643. interval: 10
  644. random: true
  645. news-info:
  646. text:
  647. - '&c&lRank:'
  648. interval: 100
  649. random: false
  650. news:
  651. text:
  652. - '&5&lObsidian'
  653. interval: 2
  654. random: false
  655. spacer2:
  656. text:
  657. - ''
  658. interval: 100
  659. random: false
  660. timesplayed-label:
  661. text:
  662. - '&b&lPeniaze'
  663. interval: 100
  664. random: false
  665. timesplayed: #Switch between site, times played and health
  666. text:
  667. - '&7{MONEY}'
  668. interval: 100
  669. random: false
  670. spacer3:
  671. text: []
  672. interval: 100
  673. random: false
  674. server-label:
  675. text:
  676. - '&d&lOnline:'
  677. interval: 100
  678. random: false
  679. server-line2:
  680. text:
  681. - '&7{onlineplayers} | {maxplayers}'
  682. interval: 10
  683. random: false
  684. # This is the same as the header. It is not needed since you already use the header as the longest line
  685. # but it looks cleaner having a footer.
  686. footer:
  687. text:
  688. - ''
  689. interval: 10
  690. random: true
  691. YouTuber:
  692. title:
  693. text:
  694. - '&e&lAwesome-&6&lCommunity.eu'
  695. interval: 2
  696. random: false
  697. header:
  698. text:
  699. - ''
  700. interval: 10
  701. random: true
  702. player-label:
  703. text:
  704. - '&a&lNickname:'
  705. interval: 100
  706. random: false
  707. player-line1:
  708. text:
  709. - '&7{PLAYER}'
  710. interval: 2
  711. random: false
  712. player-line2:
  713. text:
  714. - ''
  715. interval: 10
  716. random: true
  717. news-info:
  718. text:
  719. - '&c&lRank:'
  720. interval: 100
  721. random: false
  722. news:
  723. text:
  724. - '&f&lYou&4&lTuber'
  725. interval: 2
  726. random: false
  727. spacer2:
  728. text:
  729. - ''
  730. interval: 100
  731. random: false
  732. timesplayed-label:
  733. text:
  734. - '&b&lPeniaze'
  735. interval: 100
  736. random: false
  737. timesplayed: #Switch between site, times played and health
  738. text:
  739. - '&7{MONEY}'
  740. interval: 100
  741. random: false
  742. spacer3:
  743. text: []
  744. interval: 100
  745. random: false
  746. server-label:
  747. text:
  748. - '&d&lOnline:'
  749. interval: 100
  750. random: false
  751. server-line2:
  752. text:
  753. - '&7{onlineplayers} | {maxplayers}'
  754. interval: 10
  755. random: false
  756. # This is the same as the header. It is not needed since you already use the header as the longest line
  757. # but it looks cleaner having a footer.
  758. footer:
  759. text:
  760. - ''
  761. interval: 10
  762. random: true
  763. Stavitel:
  764. title:
  765. text:
  766. - '&e&lAwesome-&6&lCommunity.eu'
  767. interval: 2
  768. random: false
  769. header:
  770. text:
  771. - ''
  772. interval: 10
  773. random: true
  774. player-label:
  775. text:
  776. - '&a&lNickname:'
  777. interval: 100
  778. random: false
  779. player-line1:
  780. text:
  781. - '&7{PLAYER}'
  782. interval: 2
  783. random: false
  784. player-line2:
  785. text:
  786. - ''
  787. interval: 10
  788. random: true
  789. news-info:
  790. text:
  791. - '&c&lRank:'
  792. interval: 100
  793. random: false
  794. news:
  795. text:
  796. - '&3&lStavitel'
  797. interval: 2
  798. random: false
  799. spacer2:
  800. text:
  801. - ''
  802. interval: 100
  803. random: false
  804. timesplayed-label:
  805. text:
  806. - '&b&lPeniaze'
  807. interval: 100
  808. random: false
  809. timesplayed: #Switch between site, times played and health
  810. text:
  811. - '&7{MONEY}'
  812. interval: 100
  813. random: false
  814. spacer3:
  815. text: []
  816. interval: 100
  817. random: false
  818. server-label:
  819. text:
  820. - '&d&lOnline:'
  821. interval: 100
  822. random: false
  823. server-line2:
  824. text:
  825. - '&7{onlineplayers} | {maxplayers}'
  826. interval: 10
  827. random: false
  828. # This is the same as the header. It is not needed since you already use the header as the longest line
  829. # but it looks cleaner having a footer.
  830. footer:
  831. text:
  832. - ''
  833. interval: 10
  834. random: true
  835. Stavitel+:
  836. title:
  837. text:
  838. - '&e&lAwesome-&6&lCommunity.eu'
  839. interval: 2
  840. random: false
  841. header:
  842. text:
  843. - ''
  844. interval: 10
  845. random: true
  846. player-label:
  847. text:
  848. - '&a&lNickname:'
  849. interval: 100
  850. random: false
  851. player-line1:
  852. text:
  853. - '&7{PLAYER}'
  854. interval: 2
  855. random: false
  856. player-line2:
  857. text:
  858. - ''
  859. interval: 10
  860. random: true
  861. news-info:
  862. text:
  863. - '&c&lRank:'
  864. interval: 100
  865. random: false
  866. news:
  867. text:
  868. - '&3&lStavitel+'
  869. interval: 2
  870. random: false
  871. spacer2:
  872. text:
  873. - ''
  874. interval: 100
  875. random: false
  876. timesplayed-label:
  877. text:
  878. - '&b&lPeniaze'
  879. interval: 100
  880. random: false
  881. timesplayed: #Switch between site, times played and health
  882. text:
  883. - '&7{MONEY}'
  884. interval: 100
  885. random: false
  886. spacer3:
  887. text: []
  888. interval: 100
  889. random: false
  890. server-label:
  891. text:
  892. - '&d&lOnline:'
  893. interval: 100
  894. random: false
  895. server-line2:
  896. text:
  897. - '&7{onlineplayers} | {maxplayers}'
  898. interval: 10
  899. random: false
  900. # This is the same as the header. It is not needed since you already use the header as the longest line
  901. # but it looks cleaner having a footer.
  902. footer:
  903. text:
  904. - ''
  905. interval: 10
  906. random: true
  907. Helper:
  908. title:
  909. text:
  910. - '&e&lAwesome-&6&lCommunity.eu'
  911. interval: 2
  912. random: false
  913. header:
  914. text:
  915. - ''
  916. interval: 10
  917. random: true
  918. player-label:
  919. text:
  920. - '&a&lNickname:'
  921. interval: 100
  922. random: false
  923. player-line1:
  924. text:
  925. - '&7{PLAYER}'
  926. interval: 2
  927. random: false
  928. player-line2:
  929. text:
  930. - ''
  931. interval: 10
  932. random: true
  933. news-info:
  934. text:
  935. - '&c&lRank:'
  936. interval: 100
  937. random: false
  938. news:
  939. text:
  940. - '&9&lHelper'
  941. interval: 2
  942. random: false
  943. spacer2:
  944. text:
  945. - ''
  946. interval: 100
  947. random: false
  948. timesplayed-label:
  949. text:
  950. - '&b&lPeniaze'
  951. interval: 100
  952. random: false
  953. timesplayed: #Switch between site, times played and health
  954. text:
  955. - '&7{MONEY}'
  956. interval: 100
  957. random: false
  958. spacer3:
  959. text: []
  960. interval: 100
  961. random: false
  962. server-label:
  963. text:
  964. - '&d&lOnline:'
  965. interval: 100
  966. random: false
  967. server-line2:
  968. text:
  969. - '&7{onlineplayers} | {maxplayers}'
  970. interval: 10
  971. random: false
  972. # This is the same as the header. It is not needed since you already use the header as the longest line
  973. # but it looks cleaner having a footer.
  974. footer:
  975. text:
  976. - ''
  977. interval: 10
  978. random: true
  979. Mod:
  980. title:
  981. text:
  982. - '&e&lAwesome-&6&lCommunity.eu'
  983. interval: 2
  984. random: false
  985. header:
  986. text:
  987. - ''
  988. interval: 10
  989. random: true
  990. player-label:
  991. text:
  992. - '&a&lNickname:'
  993. interval: 100
  994. random: false
  995. player-line1:
  996. text:
  997. - '&7{PLAYER}'
  998. interval: 2
  999. random: false
  1000. player-line2:
  1001. text:
  1002. - ''
  1003. interval: 10
  1004. random: true
  1005. news-info:
  1006. text:
  1007. - '&c&lRank:'
  1008. interval: 100
  1009. random: false
  1010. news:
  1011. text:
  1012. - '&9&lModerátor'
  1013. interval: 2
  1014. random: false
  1015. spacer2:
  1016. text:
  1017. - ''
  1018. interval: 100
  1019. random: false
  1020. timesplayed-label:
  1021. text:
  1022. - '&b&lPeniaze'
  1023. interval: 100
  1024. random: false
  1025. timesplayed: #Switch between site, times played and health
  1026. text:
  1027. - '&7{MONEY}'
  1028. interval: 100
  1029. random: false
  1030. spacer3:
  1031. text: []
  1032. interval: 100
  1033. random: false
  1034. server-label:
  1035. text:
  1036. - '&d&lOnline:'
  1037. interval: 100
  1038. random: false
  1039. server-line2:
  1040. text:
  1041. - '&7{onlineplayers} | {maxplayers}'
  1042. interval: 10
  1043. random: false
  1044. # This is the same as the header. It is not needed since you already use the header as the longest line
  1045. # but it looks cleaner having a footer.
  1046. footer:
  1047. text:
  1048. - ''
  1049. interval: 10
  1050. random: true
  1051. programator:
  1052. title:
  1053. text:
  1054. - '&e&lAwesome-&6&lCommunity.eu'
  1055. interval: 2
  1056. random: false
  1057. header:
  1058. text:
  1059. - ''
  1060. interval: 10
  1061. random: true
  1062. player-label:
  1063. text:
  1064. - '&a&lNickname:'
  1065. interval: 100
  1066. random: false
  1067. player-line1:
  1068. text:
  1069. - '&7{PLAYER}'
  1070. interval: 2
  1071. random: false
  1072. player-line2:
  1073. text:
  1074. - ''
  1075. interval: 10
  1076. random: true
  1077. news-info:
  1078. text:
  1079. - '&c&lRank:'
  1080. interval: 100
  1081. random: false
  1082. news:
  1083. text:
  1084. - '&e&lDeveloper'
  1085. interval: 2
  1086. random: false
  1087. spacer2:
  1088. text:
  1089. - ''
  1090. interval: 100
  1091. random: false
  1092. timesplayed-label:
  1093. text:
  1094. - '&b&lPeniaze'
  1095. interval: 100
  1096. random: false
  1097. timesplayed: #Switch between site, times played and health
  1098. text:
  1099. - '&7{MONEY}'
  1100. interval: 100
  1101. random: false
  1102. spacer3:
  1103. text: []
  1104. interval: 100
  1105. random: false
  1106. server-label:
  1107. text:
  1108. - '&d&lOnline:'
  1109. interval: 100
  1110. random: false
  1111. server-line2:
  1112. text:
  1113. - '&7{onlineplayers} | {maxplayers}'
  1114. interval: 10
  1115. random: false
  1116. # This is the same as the header. It is not needed since you already use the header as the longest line
  1117. # but it looks cleaner having a footer.
  1118. footer:
  1119. text:
  1120. - ''
  1121. interval: 10
  1122. random: true
  1123. Admin:
  1124. title:
  1125. text:
  1126. - '&e&lAwesome-&6&lCommunity.eu'
  1127. interval: 2
  1128. random: false
  1129. header:
  1130. text:
  1131. - ''
  1132. interval: 10
  1133. random: true
  1134. player-label:
  1135. text:
  1136. - '&a&lNickname:'
  1137. interval: 100
  1138. random: false
  1139. player-line1:
  1140. text:
  1141. - '&7{PLAYER}'
  1142. interval: 2
  1143. random: false
  1144. player-line2:
  1145. text:
  1146. - ''
  1147. interval: 10
  1148. random: true
  1149. news-info:
  1150. text:
  1151. - '&c&lRank:'
  1152. interval: 100
  1153. random: false
  1154. news:
  1155. text:
  1156. - '&2&lAdministrátor'
  1157. interval: 2
  1158. random: false
  1159. spacer2:
  1160. text:
  1161. - ''
  1162. interval: 100
  1163. random: false
  1164. timesplayed-label:
  1165. text:
  1166. - '&b&lPeniaze'
  1167. interval: 100
  1168. random: false
  1169. timesplayed: #Switch between site, times played and health
  1170. text:
  1171. - '&7{MONEY}'
  1172. interval: 100
  1173. random: false
  1174. spacer3:
  1175. text: []
  1176. interval: 100
  1177. random: false
  1178. server-label:
  1179. text:
  1180. - '&d&lOnline:'
  1181. interval: 100
  1182. random: false
  1183. server-line2:
  1184. text:
  1185. - '&7{onlineplayers} | {maxplayers}'
  1186. interval: 10
  1187. random: false
  1188. # This is the same as the header. It is not needed since you already use the header as the longest line
  1189. # but it looks cleaner having a footer.
  1190. footer:
  1191. text:
  1192. - ''
  1193. interval: 10
  1194. random: true
  1195. Majitel:
  1196. title:
  1197. text:
  1198. - '&e&lAwesome-&6&lCommunity.eu'
  1199. interval: 2
  1200. random: false
  1201. header:
  1202. text:
  1203. - ''
  1204. interval: 10
  1205. random: true
  1206. player-label:
  1207. text:
  1208. - '&a&lNickname:'
  1209. interval: 100
  1210. random: false
  1211. player-line1:
  1212. text:
  1213. - '&7{PLAYER}'
  1214. interval: 2
  1215. random: false
  1216. player-line2:
  1217. text:
  1218. - ''
  1219. interval: 10
  1220. random: true
  1221. news-info:
  1222. text:
  1223. - '&c&lRank:'
  1224. interval: 100
  1225. random: false
  1226. news:
  1227. text:
  1228. - '&4&lMajitel'
  1229. interval: 2
  1230. random: false
  1231. spacer2:
  1232. text:
  1233. - ''
  1234. interval: 100
  1235. random: false
  1236. timesplayed-label:
  1237. text:
  1238. - '&b&lPeniaze'
  1239. interval: 100
  1240. random: false
  1241. timesplayed: #Switch between site, times played and health
  1242. text:
  1243. - '&7{MONEY}'
  1244. interval: 100
  1245. random: false
  1246. spacer3:
  1247. text: []
  1248. interval: 100
  1249. random: false
  1250. server-label:
  1251. text:
  1252. - '&d&lOnline:'
  1253. interval: 100
  1254. random: false
  1255. server-line2:
  1256. text:
  1257. - '&7{onlineplayers} | {maxplayers}'
  1258. interval: 10
  1259. random: false
  1260. # This is the same as the header. It is not needed since you already use the header as the longest line
  1261. # but it looks cleaner having a footer.
  1262. footer:
  1263. text:
  1264. - ''
  1265. interval: 10
  1266. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement