Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Feb 7th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.01 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. - 'example_world'
  137.  
  138. # Show delay on join. Usefull if you wish to let the user
  139. # enjoy a Title MOTD without having the scoreboard obstructing
  140. # the view.
  141. show-delay: 0
  142.  
  143. # Anti Flicker will use a new engine that will allow you to use fast animations
  144. # without any flicker.
  145. # You can disable this feature if you do not have fast refresh rates.
  146. antiflicker: true
  147.  
  148. # Scoreboard assigning. The boards can be assigned by various ways.
  149. # default the scoreboards will be assigned by permissions.
  150. # You can only have one way of assigning the scoreboards
  151. #
  152. # PERMISSION - Assign scoreboards based on permissions
  153. # This is the default setting (since 2014)
  154. # featherboard.group.<scoreboard>
  155. #
  156. # GROUP - Assign scoreboards based on Vault groups
  157. # this means the scoreboard name has to
  158. # have the name of your Vault group.
  159. #
  160. # WORLD - Assign scoreboards based on the world
  161. # the player is in.
  162. #
  163. # NONE - Do no assign scoreboards and just rely on
  164. # manual assigning (triggers, etc...)
  165. scoreboard-assigning: "GROUP"
  166.  
  167. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  168. # The GUI will show all scoreboards you have permission to. It is not very
  169. # configurable in the way you can't control the location or order of the scoreboards
  170. # For a more configurable GUI I recommend DeluxeMenus
  171. gui:
  172. # This is the title of the GUI
  173. title: "Scoreboards"
  174. # Size of the GUI (leave to -1 to make it dynamic)
  175. # Sizes: 9,27,54
  176. size: -1
  177.  
  178. # A list of different scoreboards
  179. boards:
  180. # Default FeatherBoard comes with a board called "default". All players have the permission
  181. # featherboard.group.default (by default) meaning all players should see the scoreboard unless
  182. # the permission is negated.
  183. #
  184. # You can create as many boards as you want as long as the name is unique. It is advised to give logical
  185. # names such as "vip-board", "mcmmo-levelup", ...
  186. Player:
  187. title:
  188. text:
  189. - '&8• &6&lCore&e&lLand &8•'
  190. - '&8• &e&lCore&6&lLand &8•'
  191. - '&8• &a&lCore&2&lLand &8•'
  192. - '&8• &b&lCore&3&lLand &8•'
  193. - '&8• &5&lCore&d&lLand &8•'
  194. - '&8• &7&lCore&f&lLand &8•'
  195. - '&8• &6&lCore&e&lLand &8•'
  196. - '&8• &6&lCore&e&lLand &8•'
  197. interval: 5
  198. random: true
  199. 512adsawdawdawd5:
  200. text:
  201. - ' &cMinecraft Minigames ♥'
  202. interval: 100
  203. random: false
  204. 55555:
  205. text:
  206. - ''
  207. interval: 100
  208. random: false
  209. ss:
  210. text:
  211. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  212. interval: 100
  213. random: false
  214. jjj:
  215. text:
  216. - ' &8➙ &7Rank &6{group}'
  217. interval: 100
  218. random: false
  219. 512555:
  220. text:
  221. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  222. interval: 1
  223. random: false
  224. 5555sdasdaw5:
  225. text:
  226. - ''
  227. interval: 100
  228. random: false
  229. 512555k:
  230. text:
  231. - '&7 ■ ■ ■ ■ ■ ■ ■'
  232. interval: 1
  233. random: false
  234. 5555sdasdawsdasdaw5:
  235. text:
  236. - ''
  237. interval: 100
  238. random: false
  239. hhh:
  240. text:
  241. - '&7 Ts3: &6ts3.CoreLand.tk'
  242. interval: 100
  243. random: false
  244. 512asdasdadasas5:
  245. text:
  246. - '&7 WEB: &6www.CoreLand.tk'
  247. interval: 100
  248. random: false
  249. VIP:
  250. title:
  251. text:
  252. - '&8• &6&lCore&e&lLand &8•'
  253. - '&8• &e&lCore&6&lLand &8•'
  254. - '&8• &a&lCore&2&lLand &8•'
  255. - '&8• &b&lCore&3&lLand &8•'
  256. - '&8• &5&lCore&d&lLand &8•'
  257. - '&8• &7&lCore&f&lLand &8•'
  258. - '&8• &6&lCore&e&lLand &8•'
  259. - '&8• &6&lCore&e&lLand &8•'
  260. interval: 5
  261. random: true
  262. 512adsawdawdawd5:
  263. text:
  264. - ' &cMinecraft Minigames ♥'
  265. interval: 100
  266. random: false
  267. 55555:
  268. text:
  269. - ''
  270. interval: 100
  271. random: false
  272. ss:
  273. text:
  274. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  275. interval: 100
  276. random: false
  277. jjj:
  278. text:
  279. - ' &8➙ &7Rank &6{group}'
  280. interval: 100
  281. random: false
  282. 512555:
  283. text:
  284. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  285. interval: 1
  286. random: false
  287. 5555sdasdaw5:
  288. text:
  289. - ''
  290. interval: 100
  291. random: false
  292. 512555k:
  293. text:
  294. - '&7 ■ ■ ■ ■ ■ ■ ■'
  295. interval: 1
  296. random: false
  297. 5555sdasdawsdasdaw5:
  298. text:
  299. - ''
  300. interval: 100
  301. random: false
  302. hhh:
  303. text:
  304. - '&7 Ts3: &6ts3.CoreLand.tk'
  305. interval: 100
  306. random: false
  307. 512asdasdadasas5:
  308. text:
  309. - '&7 WEB: &6www.CoreLand.tk'
  310. interval: 100
  311. random: false
  312. Tester:
  313. title:
  314. text:
  315. - '&8• &6&lCore&e&lLand &8•'
  316. - '&8• &e&lCore&6&lLand &8•'
  317. - '&8• &a&lCore&2&lLand &8•'
  318. - '&8• &b&lCore&3&lLand &8•'
  319. - '&8• &5&lCore&d&lLand &8•'
  320. - '&8• &7&lCore&f&lLand &8•'
  321. - '&8• &6&lCore&e&lLand &8•'
  322. - '&8• &6&lCore&e&lLand &8•'
  323. interval: 5
  324. random: true
  325. 512adsawdawdawd5:
  326. text:
  327. - ' &cMinecraft Minigames ♥'
  328. interval: 100
  329. random: false
  330. 55555:
  331. text:
  332. - ''
  333. interval: 100
  334. random: false
  335. ss:
  336. text:
  337. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  338. interval: 100
  339. random: false
  340. jjj:
  341. text:
  342. - ' &8➙ &7Rank &6{group}'
  343. interval: 100
  344. random: false
  345. 512555:
  346. text:
  347. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  348. interval: 1
  349. random: false
  350. 5555sdasdaw5:
  351. text:
  352. - ''
  353. interval: 100
  354. random: false
  355. 512555k:
  356. text:
  357. - '&7 ■ ■ ■ ■ ■ ■ ■'
  358. interval: 1
  359. random: false
  360. 5555sdasdawsdasdaw5:
  361. text:
  362. - ''
  363. interval: 100
  364. random: false
  365. hhh:
  366. text:
  367. - '&7 Ts3: &6ts3.CoreLand.tk'
  368. interval: 100
  369. random: false
  370. 512asdasdadasas5:
  371. text:
  372. - '&7 WEB: &6www.CoreLand.tk'
  373. interval: 100
  374. random: false
  375. Hero:
  376. title:
  377. text:
  378. - '&8• &6&lCore&e&lLand &8•'
  379. - '&8• &e&lCore&6&lLand &8•'
  380. - '&8• &a&lCore&2&lLand &8•'
  381. - '&8• &b&lCore&3&lLand &8•'
  382. - '&8• &5&lCore&d&lLand &8•'
  383. - '&8• &7&lCore&f&lLand &8•'
  384. - '&8• &6&lCore&e&lLand &8•'
  385. - '&8• &6&lCore&e&lLand &8•'
  386. interval: 5
  387. random: true
  388. 512adsawdawdawd5:
  389. text:
  390. - ' &cMinecraft Minigames ♥'
  391. interval: 100
  392. random: false
  393. 55555:
  394. text:
  395. - ''
  396. interval: 100
  397. random: false
  398. ss:
  399. text:
  400. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  401. interval: 100
  402. random: false
  403. jjj:
  404. text:
  405. - ' &8➙ &7Rank &6{group}'
  406. interval: 100
  407. random: false
  408. 512555:
  409. text:
  410. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  411. interval: 1
  412. random: false
  413. 5555sdasdaw5:
  414. text:
  415. - ''
  416. interval: 100
  417. random: false
  418. 512555k:
  419. text:
  420. - '&7 ■ ■ ■ ■ ■ ■ ■'
  421. interval: 1
  422. random: false
  423. 5555sdasdawsdasdaw5:
  424. text:
  425. - ''
  426. interval: 100
  427. random: false
  428. hhh:
  429. text:
  430. - '&7 Ts3: &6ts3.CoreLand.tk'
  431. interval: 100
  432. random: false
  433. 512asdasdadasas5:
  434. text:
  435. - '&7 WEB: &6www.CoreLand.tk'
  436. interval: 100
  437. random: false
  438. DEV:
  439. title:
  440. text:
  441. - '&8• &6&lCore&e&lLand &8•'
  442. - '&8• &e&lCore&6&lLand &8•'
  443. - '&8• &a&lCore&2&lLand &8•'
  444. - '&8• &b&lCore&3&lLand &8•'
  445. - '&8• &5&lCore&d&lLand &8•'
  446. - '&8• &7&lCore&f&lLand &8•'
  447. - '&8• &6&lCore&e&lLand &8•'
  448. - '&8• &6&lCore&e&lLand &8•'
  449. interval: 5
  450. random: true
  451. 512adsawdawdawd5:
  452. text:
  453. - ' &cMinecraft Minigames ♥'
  454. interval: 100
  455. random: false
  456. 55555:
  457. text:
  458. - ''
  459. interval: 100
  460. random: false
  461. ss:
  462. text:
  463. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  464. interval: 100
  465. random: false
  466. jjj:
  467. text:
  468. - ' &8➙ &7Rank &6{group}'
  469. interval: 100
  470. random: false
  471. 512555:
  472. text:
  473. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  474. interval: 1
  475. random: false
  476. 5555sdasdaw5:
  477. text:
  478. - ''
  479. interval: 100
  480. random: false
  481. 512555k:
  482. text:
  483. - '&7 ■ ■ ■ ■ ■ ■ ■'
  484. interval: 1
  485. random: false
  486. 5555sdasdawsdasdaw5:
  487. text:
  488. - ''
  489. interval: 100
  490. random: false
  491. hhh:
  492. text:
  493. - '&7 Ts3: &6ts3.CoreLand.tk'
  494. interval: 100
  495. random: false
  496. 512asdasdadasas5:
  497. text:
  498. - '&7 WEB: &6www.CoreLand.tk'
  499. interval: 100
  500. random: false
  501. YouTuber:
  502. title:
  503. text:
  504. - '&8• &6&lCore&e&lLand &8•'
  505. - '&8• &e&lCore&6&lLand &8•'
  506. - '&8• &a&lCore&2&lLand &8•'
  507. - '&8• &b&lCore&3&lLand &8•'
  508. - '&8• &5&lCore&d&lLand &8•'
  509. - '&8• &7&lCore&f&lLand &8•'
  510. - '&8• &6&lCore&e&lLand &8•'
  511. - '&8• &6&lCore&e&lLand &8•'
  512. interval: 5
  513. random: true
  514. 512adsawdawdawd5:
  515. text:
  516. - ' &cMinecraft Minigames ♥'
  517. interval: 100
  518. random: false
  519. 55555:
  520. text:
  521. - ''
  522. interval: 100
  523. random: false
  524. ss:
  525. text:
  526. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  527. interval: 100
  528. random: false
  529. jjj:
  530. text:
  531. - ' &8➙ &7Rank &6{group}'
  532. interval: 100
  533. random: false
  534. 512555:
  535. text:
  536. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  537. interval: 1
  538. random: false
  539. 5555sdasdaw5:
  540. text:
  541. - ''
  542. interval: 100
  543. random: false
  544. 512555k:
  545. text:
  546. - '&7 ■ ■ ■ ■ ■ ■ ■'
  547. interval: 1
  548. random: false
  549. 5555sdasdawsdasdaw5:
  550. text:
  551. - ''
  552. interval: 100
  553. random: false
  554. hhh:
  555. text:
  556. - '&7 Ts3: &6ts3.CoreLand.tk'
  557. interval: 100
  558. random: false
  559. 512asdasdadasas5:
  560. text:
  561. - '&7 WEB: &6www.CoreLand.tk'
  562. interval: 100
  563. random: false
  564. PVIP:
  565. title:
  566. text:
  567. - '&8• &6&lCore&e&lLand &8•'
  568. - '&8• &e&lCore&6&lLand &8•'
  569. - '&8• &a&lCore&2&lLand &8•'
  570. - '&8• &b&lCore&3&lLand &8•'
  571. - '&8• &5&lCore&d&lLand &8•'
  572. - '&8• &7&lCore&f&lLand &8•'
  573. - '&8• &6&lCore&e&lLand &8•'
  574. - '&8• &6&lCore&e&lLand &8•'
  575. interval: 5
  576. random: true
  577. 512adsawdawdawd5:
  578. text:
  579. - ' &cMinecraft Minigames ♥'
  580. interval: 100
  581. random: false
  582. 55555:
  583. text:
  584. - ''
  585. interval: 100
  586. random: false
  587. ss:
  588. text:
  589. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  590. interval: 100
  591. random: false
  592. jjj:
  593. text:
  594. - ' &8➙ &7Rank &6{group}'
  595. interval: 100
  596. random: false
  597. 512555:
  598. text:
  599. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  600. interval: 1
  601. random: false
  602. 5555sdasdaw5:
  603. text:
  604. - ''
  605. interval: 100
  606. random: false
  607. 512555k:
  608. text:
  609. - '&7 ■ ■ ■ ■ ■ ■ ■'
  610. interval: 1
  611. random: false
  612. 5555sdasdawsdasdaw5:
  613. text:
  614. - ''
  615. interval: 100
  616. random: false
  617. hhh:
  618. text:
  619. - '&7 Ts3: &6ts3.CoreLand.tk'
  620. interval: 100
  621. random: false
  622. 512asdasdadasas5:
  623. text:
  624. - '&7 WEB: &6www.CoreLand.tk'
  625. interval: 100
  626. random: false
  627. HlBuilder:
  628. title:
  629. text:
  630. - '&8• &6&lCore&e&lLand &8•'
  631. - '&8• &e&lCore&6&lLand &8•'
  632. - '&8• &a&lCore&2&lLand &8•'
  633. - '&8• &b&lCore&3&lLand &8•'
  634. - '&8• &5&lCore&d&lLand &8•'
  635. - '&8• &7&lCore&f&lLand &8•'
  636. - '&8• &6&lCore&e&lLand &8•'
  637. - '&8• &6&lCore&e&lLand &8•'
  638. interval: 5
  639. random: true
  640. 512adsawdawdawd5:
  641. text:
  642. - ' &cMinecraft Minigames ♥'
  643. interval: 100
  644. random: false
  645. 55555:
  646. text:
  647. - ''
  648. interval: 100
  649. random: false
  650. ss:
  651. text:
  652. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  653. interval: 100
  654. random: false
  655. jjj:
  656. text:
  657. - ' &8➙ &7Rank &6{group}'
  658. interval: 100
  659. random: false
  660. 512555:
  661. text:
  662. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  663. interval: 1
  664. random: false
  665. 5555sdasdaw5:
  666. text:
  667. - ''
  668. interval: 100
  669. random: false
  670. 512555k:
  671. text:
  672. - '&7 ■ ■ ■ ■ ■ ■ ■'
  673. interval: 1
  674. random: false
  675. 5555sdasdawsdasdaw5:
  676. text:
  677. - ''
  678. interval: 100
  679. random: false
  680. hhh:
  681. text:
  682. - '&7 Ts3: &6ts3.CoreLand.tk'
  683. interval: 100
  684. random: false
  685. 512asdasdadasas5:
  686. text:
  687. - '&7 WEB: &6www.CoreLand.tk'
  688. interval: 100
  689. random: false
  690. HlHelper:
  691. title:
  692. text:
  693. - '&8• &6&lCore&e&lLand &8•'
  694. - '&8• &e&lCore&6&lLand &8•'
  695. - '&8• &a&lCore&2&lLand &8•'
  696. - '&8• &b&lCore&3&lLand &8•'
  697. - '&8• &5&lCore&d&lLand &8•'
  698. - '&8• &7&lCore&f&lLand &8•'
  699. - '&8• &6&lCore&e&lLand &8•'
  700. - '&8• &6&lCore&e&lLand &8•'
  701. interval: 5
  702. random: true
  703. 512adsawdawdawd5:
  704. text:
  705. - ' &cMinecraft Minigames ♥'
  706. interval: 100
  707. random: false
  708. 55555:
  709. text:
  710. - ''
  711. interval: 100
  712. random: false
  713. ss:
  714. text:
  715. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  716. interval: 100
  717. random: false
  718. jjj:
  719. text:
  720. - ' &8➙ &7Rank &6{group}'
  721. interval: 100
  722. random: false
  723. 512555:
  724. text:
  725. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  726. interval: 1
  727. random: false
  728. 5555sdasdaw5:
  729. text:
  730. - ''
  731. interval: 100
  732. random: false
  733. 512555k:
  734. text:
  735. - '&7 ■ ■ ■ ■ ■ ■ ■'
  736. interval: 1
  737. random: false
  738. 5555sdasdawsdasdaw5:
  739. text:
  740. - ''
  741. interval: 100
  742. random: false
  743. hhh:
  744. text:
  745. - '&7 Ts3: &6ts3.CoreLand.tk'
  746. interval: 100
  747. random: false
  748. 512asdasdadasas5:
  749. text:
  750. - '&7 WEB: &6www.CoreLand.tk'
  751. interval: 100
  752. random: false
  753. ElBuilder:
  754. title:
  755. text:
  756. - '&8• &6&lCore&e&lLand &8•'
  757. - '&8• &e&lCore&6&lLand &8•'
  758. - '&8• &a&lCore&2&lLand &8•'
  759. - '&8• &b&lCore&3&lLand &8•'
  760. - '&8• &5&lCore&d&lLand &8•'
  761. - '&8• &7&lCore&f&lLand &8•'
  762. - '&8• &6&lCore&e&lLand &8•'
  763. - '&8• &6&lCore&e&lLand &8•'
  764. interval: 5
  765. random: true
  766. 512adsawdawdawd5:
  767. text:
  768. - ' &cMinecraft Minigames ♥'
  769. interval: 100
  770. random: false
  771. 55555:
  772. text:
  773. - ''
  774. interval: 100
  775. random: false
  776. ss:
  777. text:
  778. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  779. interval: 100
  780. random: false
  781. jjj:
  782. text:
  783. - ' &8➙ &7Rank &6{group}'
  784. interval: 100
  785. random: false
  786. 512555:
  787. text:
  788. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  789. interval: 1
  790. random: false
  791. 5555sdasdaw5:
  792. text:
  793. - ''
  794. interval: 100
  795. random: false
  796. 512555k:
  797. text:
  798. - '&7 ■ ■ ■ ■ ■ ■ ■'
  799. interval: 1
  800. random: false
  801. 5555sdasdawsdasdaw5:
  802. text:
  803. - ''
  804. interval: 100
  805. random: false
  806. hhh:
  807. text:
  808. - '&7 Ts3: &6ts3.CoreLand.tk'
  809. interval: 100
  810. random: false
  811. 512asdasdadasas5:
  812. text:
  813. - '&7 WEB: &6www.CoreLand.tk'
  814. interval: 100
  815. random: false
  816. ElHelper:
  817. title:
  818. text:
  819. - '&8• &6&lCore&e&lLand &8•'
  820. - '&8• &e&lCore&6&lLand &8•'
  821. - '&8• &a&lCore&2&lLand &8•'
  822. - '&8• &b&lCore&3&lLand &8•'
  823. - '&8• &5&lCore&d&lLand &8•'
  824. - '&8• &7&lCore&f&lLand &8•'
  825. - '&8• &6&lCore&e&lLand &8•'
  826. - '&8• &6&lCore&e&lLand &8•'
  827. interval: 5
  828. random: true
  829. 512adsawdawdawd5:
  830. text:
  831. - ' &cMinecraft Minigames ♥'
  832. interval: 100
  833. random: false
  834. 55555:
  835. text:
  836. - ''
  837. interval: 100
  838. random: false
  839. ss:
  840. text:
  841. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  842. interval: 100
  843. random: false
  844. jjj:
  845. text:
  846. - ' &8➙ &7Rank &6{group}'
  847. interval: 100
  848. random: false
  849. 512555:
  850. text:
  851. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  852. interval: 1
  853. random: false
  854. 5555sdasdaw5:
  855. text:
  856. - ''
  857. interval: 100
  858. random: false
  859. 512555k:
  860. text:
  861. - '&7 ■ ■ ■ ■ ■ ■ ■'
  862. interval: 1
  863. random: false
  864. 5555sdasdawsdasdaw5:
  865. text:
  866. - ''
  867. interval: 100
  868. random: false
  869. hhh:
  870. text:
  871. - '&7 Ts3: &6ts3.CoreLand.tk'
  872. interval: 100
  873. random: false
  874. 512asdasdadasas5:
  875. text:
  876. - '&7 WEB: &6www.CoreLand.tk'
  877. interval: 100
  878. random: false
  879. Helper:
  880. title:
  881. text:
  882. - '&8• &6&lCore&e&lLand &8•'
  883. - '&8• &e&lCore&6&lLand &8•'
  884. - '&8• &a&lCore&2&lLand &8•'
  885. - '&8• &b&lCore&3&lLand &8•'
  886. - '&8• &5&lCore&d&lLand &8•'
  887. - '&8• &7&lCore&f&lLand &8•'
  888. - '&8• &6&lCore&e&lLand &8•'
  889. - '&8• &6&lCore&e&lLand &8•'
  890. interval: 5
  891. random: true
  892. 512adsawdawdawd5:
  893. text:
  894. - ' &cMinecraft Minigames ♥'
  895. interval: 100
  896. random: false
  897. 55555:
  898. text:
  899. - ''
  900. interval: 100
  901. random: false
  902. ss:
  903. text:
  904. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  905. interval: 100
  906. random: false
  907. jjj:
  908. text:
  909. - ' &8➙ &7Rank &6{group}'
  910. interval: 100
  911. random: false
  912. 512555:
  913. text:
  914. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  915. interval: 1
  916. random: false
  917. 5555sdasdaw5:
  918. text:
  919. - ''
  920. interval: 100
  921. random: false
  922. 512555k:
  923. text:
  924. - '&7 ■ ■ ■ ■ ■ ■ ■'
  925. interval: 1
  926. random: false
  927. 5555sdasdawsdasdaw5:
  928. text:
  929. - ''
  930. interval: 100
  931. random: false
  932. hhh:
  933. text:
  934. - '&7 Ts3: &6ts3.CoreLand.tk'
  935. interval: 100
  936. random: false
  937. 512asdasdadasas5:
  938. text:
  939. - '&7 WEB: &6www.CoreLand.tk'
  940. interval: 100
  941. random: false
  942. Builder:
  943. title:
  944. text:
  945. - '&8• &6&lCore&e&lLand &8•'
  946. - '&8• &e&lCore&6&lLand &8•'
  947. - '&8• &a&lCore&2&lLand &8•'
  948. - '&8• &b&lCore&3&lLand &8•'
  949. - '&8• &5&lCore&d&lLand &8•'
  950. - '&8• &7&lCore&f&lLand &8•'
  951. - '&8• &6&lCore&e&lLand &8•'
  952. - '&8• &6&lCore&e&lLand &8•'
  953. interval: 5
  954. random: true
  955. 512adsawdawdawd5:
  956. text:
  957. - ' &cMinecraft Minigames ♥'
  958. interval: 100
  959. random: false
  960. 55555:
  961. text:
  962. - ''
  963. interval: 100
  964. random: false
  965. ss:
  966. text:
  967. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  968. interval: 100
  969. random: false
  970. jjj:
  971. text:
  972. - ' &8➙ &7Rank &6{group}'
  973. interval: 100
  974. random: false
  975. 512555:
  976. text:
  977. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  978. interval: 1
  979. random: false
  980. 5555sdasdaw5:
  981. text:
  982. - ''
  983. interval: 100
  984. random: false
  985. 512555k:
  986. text:
  987. - '&7 ■ ■ ■ ■ ■ ■ ■'
  988. interval: 1
  989. random: false
  990. 5555sdasdawsdasdaw5:
  991. text:
  992. - ''
  993. interval: 100
  994. random: false
  995. hhh:
  996. text:
  997. - '&7 Ts3: &6ts3.CoreLand.tk'
  998. interval: 100
  999. random: false
  1000. 512asdasdadasas5:
  1001. text:
  1002. - '&7 WEB: &6www.CoreLand.tk'
  1003. interval: 100
  1004. random: false
  1005. ZkBuilder:
  1006. title:
  1007. text:
  1008. - '&8• &6&lCore&e&lLand &8•'
  1009. - '&8• &e&lCore&6&lLand &8•'
  1010. - '&8• &a&lCore&2&lLand &8•'
  1011. - '&8• &b&lCore&3&lLand &8•'
  1012. - '&8• &5&lCore&d&lLand &8•'
  1013. - '&8• &7&lCore&f&lLand &8•'
  1014. - '&8• &6&lCore&e&lLand &8•'
  1015. - '&8• &6&lCore&e&lLand &8•'
  1016. interval: 5
  1017. random: true
  1018. 512adsawdawdawd5:
  1019. text:
  1020. - ' &cMinecraft Minigames ♥'
  1021. interval: 100
  1022. random: false
  1023. 55555:
  1024. text:
  1025. - ''
  1026. interval: 100
  1027. random: false
  1028. ss:
  1029. text:
  1030. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  1031. interval: 100
  1032. random: false
  1033. jjj:
  1034. text:
  1035. - ' &8➙ &7Rank &6{group}'
  1036. interval: 100
  1037. random: false
  1038. 512555:
  1039. text:
  1040. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  1041. interval: 1
  1042. random: false
  1043. 5555sdasdaw5:
  1044. text:
  1045. - ''
  1046. interval: 100
  1047. random: false
  1048. 512555k:
  1049. text:
  1050. - '&7 ■ ■ ■ ■ ■ ■ ■'
  1051. interval: 1
  1052. random: false
  1053. 5555sdasdawsdasdaw5:
  1054. text:
  1055. - ''
  1056. interval: 100
  1057. random: false
  1058. hhh:
  1059. text:
  1060. - '&7 Ts3: &6ts3.CoreLand.tk'
  1061. interval: 100
  1062. random: false
  1063. 512asdasdadasas5:
  1064. text:
  1065. - '&7 WEB: &6www.CoreLand.tk'
  1066. interval: 100
  1067. random: false
  1068. ZkHelper:
  1069. title:
  1070. text:
  1071. - '&8• &6&lCore&e&lLand &8•'
  1072. - '&8• &e&lCore&6&lLand &8•'
  1073. - '&8• &a&lCore&2&lLand &8•'
  1074. - '&8• &b&lCore&3&lLand &8•'
  1075. - '&8• &5&lCore&d&lLand &8•'
  1076. - '&8• &7&lCore&f&lLand &8•'
  1077. - '&8• &6&lCore&e&lLand &8•'
  1078. - '&8• &6&lCore&e&lLand &8•'
  1079. interval: 5
  1080. random: true
  1081. 512adsawdawdawd5:
  1082. text:
  1083. - ' &cMinecraft Minigames ♥'
  1084. interval: 100
  1085. random: false
  1086. 55555:
  1087. text:
  1088. - ''
  1089. interval: 100
  1090. random: false
  1091. ss:
  1092. text:
  1093. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  1094. interval: 100
  1095. random: false
  1096. jjj:
  1097. text:
  1098. - ' &8➙ &7Rank &6{group}'
  1099. interval: 100
  1100. random: false
  1101. 512555:
  1102. text:
  1103. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  1104. interval: 1
  1105. random: false
  1106. 5555sdasdaw5:
  1107. text:
  1108. - ''
  1109. interval: 100
  1110. random: false
  1111. 512555k:
  1112. text:
  1113. - '&7 ■ ■ ■ ■ ■ ■ ■'
  1114. interval: 1
  1115. random: false
  1116. 5555sdasdawsdasdaw5:
  1117. text:
  1118. - ''
  1119. interval: 100
  1120. random: false
  1121. hhh:
  1122. text:
  1123. - '&7 Ts3: &6ts3.CoreLand.tk'
  1124. interval: 100
  1125. random: false
  1126. 512asdasdadasas5:
  1127. text:
  1128. - '&7 WEB: &6www.CoreLand.tk'
  1129. interval: 100
  1130. random: false
  1131. Admin:
  1132. title:
  1133. text:
  1134. - '&8• &6&lCore&e&lLand &8•'
  1135. - '&8• &e&lCore&6&lLand &8•'
  1136. - '&8• &a&lCore&2&lLand &8•'
  1137. - '&8• &b&lCore&3&lLand &8•'
  1138. - '&8• &5&lCore&d&lLand &8•'
  1139. - '&8• &7&lCore&f&lLand &8•'
  1140. - '&8• &6&lCore&e&lLand &8•'
  1141. - '&8• &6&lCore&e&lLand &8•'
  1142. interval: 5
  1143. random: true
  1144. 512adsawdawdawd5:
  1145. text:
  1146. - ' &cMinecraft Minigames ♥'
  1147. interval: 100
  1148. random: false
  1149. 55555:
  1150. text:
  1151. - ''
  1152. interval: 100
  1153. random: false
  1154. ss:
  1155. text:
  1156. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  1157. interval: 100
  1158. random: false
  1159. jjj:
  1160. text:
  1161. - ' &8➙ &7Rank &6{group}'
  1162. interval: 100
  1163. random: false
  1164. 512555:
  1165. text:
  1166. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  1167. interval: 1
  1168. random: false
  1169. 5555sdasdaw5:
  1170. text:
  1171. - ''
  1172. interval: 100
  1173. random: false
  1174. 512555k:
  1175. text:
  1176. - '&7 ■ ■ ■ ■ ■ ■ ■'
  1177. interval: 1
  1178. random: false
  1179. 5555sdasdawsdasdaw5:
  1180. text:
  1181. - ''
  1182. interval: 100
  1183. random: false
  1184. hhh:
  1185. text:
  1186. - '&7 Ts3: &6ts3.CoreLand.tk'
  1187. interval: 100
  1188. random: false
  1189. 512asdasdadasas5:
  1190. text:
  1191. - '&7 WEB: &6www.CoreLand.tk'
  1192. interval: 100
  1193. random: false
  1194. Majitel:
  1195. title:
  1196. text:
  1197. - '&8• &6&lCore&e&lLand &8•'
  1198. - '&8• &e&lCore&6&lLand &8•'
  1199. - '&8• &a&lCore&2&lLand &8•'
  1200. - '&8• &b&lCore&3&lLand &8•'
  1201. - '&8• &5&lCore&d&lLand &8•'
  1202. - '&8• &7&lCore&f&lLand &8•'
  1203. - '&8• &6&lCore&e&lLand &8•'
  1204. - '&8• &6&lCore&e&lLand &8•'
  1205. interval: 5
  1206. random: true
  1207. 512adsawdawdawd5:
  1208. text:
  1209. - ' &cMinecraft Minigames ♥'
  1210. interval: 100
  1211. random: false
  1212. 55555:
  1213. text:
  1214. - ''
  1215. interval: 100
  1216. random: false
  1217. ss:
  1218. text:
  1219. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  1220. interval: 100
  1221. random: false
  1222. jjj:
  1223. text:
  1224. - ' &8➙ &7Rank &6{group}'
  1225. interval: 100
  1226. random: false
  1227. 512555:
  1228. text:
  1229. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  1230. interval: 1
  1231. random: false
  1232. 5555sdasdaw5:
  1233. text:
  1234. - ''
  1235. interval: 100
  1236. random: false
  1237. 512555k:
  1238. text:
  1239. - '&7 ■ ■ ■ ■ ■ ■ ■'
  1240. interval: 1
  1241. random: false
  1242. 5555sdasdawsdasdaw5:
  1243. text:
  1244. - ''
  1245. interval: 100
  1246. random: false
  1247. hhh:
  1248. text:
  1249. - '&7 Ts3: &6ts3.CoreLand.tk'
  1250. interval: 100
  1251. random: false
  1252. 512asdasdadasas5:
  1253. text:
  1254. - '&7 WEB: &6www.CoreLand.tk'
  1255. interval: 100
  1256. random: false
  1257. Vedeni:
  1258. title:
  1259. text:
  1260. - '&8• &6&lCore&e&lLand &8•'
  1261. - '&8• &e&lCore&6&lLand &8•'
  1262. - '&8• &a&lCore&2&lLand &8•'
  1263. - '&8• &b&lCore&3&lLand &8•'
  1264. - '&8• &5&lCore&d&lLand &8•'
  1265. - '&8• &7&lCore&f&lLand &8•'
  1266. - '&8• &6&lCore&e&lLand &8•'
  1267. - '&8• &6&lCore&e&lLand &8•'
  1268. interval: 5
  1269. random: true
  1270. 512adsawdawdawd5:
  1271. text:
  1272. - ' &cMinecraft Minigames ♥'
  1273. interval: 100
  1274. random: false
  1275. 55555:
  1276. text:
  1277. - ''
  1278. interval: 100
  1279. random: false
  1280. ss:
  1281. text:
  1282. - ' &8➙ &7Online &6{BUNGEECOUNT}&8/&6120'
  1283. interval: 100
  1284. random: false
  1285. jjj:
  1286. text:
  1287. - ' &8➙ &7Rank &6{group}'
  1288. interval: 100
  1289. random: false
  1290. 512555:
  1291. text:
  1292. - ' &8➙ &7Coins &6{money_formatted}&e✿'
  1293. interval: 1
  1294. random: false
  1295. 5555sdasdaw5:
  1296. text:
  1297. - ''
  1298. interval: 100
  1299. random: false
  1300. 512555k:
  1301. text:
  1302. - '&7 ■ ■ ■ ■ ■ ■ ■'
  1303. interval: 1
  1304. random: false
  1305. 5555sdasdawsdasdaw5:
  1306. text:
  1307. - ''
  1308. interval: 100
  1309. random: false
  1310. hhh:
  1311. text:
  1312. - '&7 Ts3: &6ts3.CoreLand.tk'
  1313. interval: 100
  1314. random: false
  1315. 512asdasdadasas5:
  1316. text:
  1317. - '&7 WEB: &6www.CoreLand.tk'
  1318. interval: 100
  1319. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement