Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.38 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. # 4000+ 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: 2
  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. # Tweaks to increase performance (Use at own risk)
  142.  
  143. tweaks:
  144.  
  145. # This option does not send scoreboard remove packets
  146.  
  147. # to the client on quit. This can increase performance on servers
  148.  
  149. # where players quit a lot (hubs, ...)
  150.  
  151. #
  152.  
  153. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  154.  
  155. # /data folder
  156.  
  157. #
  158.  
  159. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  160.  
  161. keepScoreboardOnQuit: false
  162.  
  163. # Toggling allows you to disable the scoreboard
  164.  
  165. database:
  166.  
  167. # If you want the toggle to stay even when your users
  168.  
  169. # log off you can enable this. Keep in mind that this requires a
  170.  
  171. # MySQL or SQLite database.
  172.  
  173. # If you are configuring the plugin for the first time it is advised
  174.  
  175. # to stay away from these settings until you managed the scoreboard
  176.  
  177. # set up.
  178.  
  179. persistent: false
  180.  
  181. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  182.  
  183. # with isolation, url, driver, ...
  184.  
  185. # Database name
  186.  
  187. database: "featherboard"
  188.  
  189. # Database username
  190.  
  191. username: bukkit
  192.  
  193. # Database isolation type
  194.  
  195. isolation: SERIALIZABLE
  196.  
  197. # Database driver
  198.  
  199. driver: org.sqlite.JDBC
  200.  
  201. # Database password
  202.  
  203. password: walrus
  204.  
  205. # Database driver URL
  206.  
  207. # {DIR} will be replaced with the plugin directory
  208.  
  209. # {NAME} will be replaced wit the plugin name
  210.  
  211. url: jdbc:sqlite:{DIR}{NAME}.db
  212.  
  213. # Save interval in ticks
  214.  
  215. save-interval: 6000
  216.  
  217.  
  218.  
  219. # Disabled worlds. Add your world name in this list to
  220.  
  221. # disable it.
  222.  
  223. disabled-worlds:
  224.  
  225. - 'example_world'
  226.  
  227. show-delay: 0
  228.  
  229. antiflicker: true
  230.  
  231. boards:
  232.  
  233.  
  234.  
  235. default:
  236.  
  237. title:
  238.  
  239. text:
  240.  
  241. - '&b&lSky&7&lblock-MC'
  242.  
  243. interval: 2
  244.  
  245. random: false
  246.  
  247. line:
  248.  
  249. text:
  250.  
  251. - '&8&m+----------------+'
  252.  
  253. interval: 10
  254.  
  255. random: true
  256.  
  257. Rank:
  258.  
  259. text:
  260.  
  261. - ' &bRank &8➡ &7{Group}'
  262.  
  263. interval: 100
  264.  
  265. random: false
  266.  
  267. Faction:
  268.  
  269. text:
  270.  
  271. - ' &bIsland Level &8➡ &7{askyblock_island_level}'
  272.  
  273. interval: 100
  274.  
  275. random: false
  276.  
  277. Balance:
  278.  
  279. text:
  280.  
  281. - ' &bBalance &8➡ &7{money_formatted}'
  282.  
  283. interval: 100
  284.  
  285. random: false
  286.  
  287. line2:
  288.  
  289. text:
  290.  
  291. - '&8&m----------------'
  292.  
  293. interval: 10
  294.  
  295. random: true
  296. Online:
  297.  
  298. text:
  299.  
  300. - ' &bOnline &8➡ &7{playercount}'
  301.  
  302. interval: 100
  303.  
  304. random: false
  305.  
  306. Ping:
  307.  
  308. text:
  309.  
  310. - ' &bPing &8➡ &7{ping}'
  311.  
  312. interval: 100
  313.  
  314. random: false
  315.  
  316. Votes:
  317.  
  318. text:
  319.  
  320. - ' &bVotes &8➡ &7{galistener_votetotal}'
  321.  
  322. interval: 100
  323.  
  324. random: false
  325.  
  326. Kills:
  327.  
  328. text:
  329.  
  330. - ' &bKills &8➡ &7{stat_pkills}'
  331.  
  332. interval: 100
  333.  
  334. random: false
  335.  
  336. Deaths:
  337.  
  338. text:
  339.  
  340. - ' &bDeaths &8➡ &7{stat_deaths}'
  341.  
  342. interval: 100
  343.  
  344. random: false
  345.  
  346. footer:
  347.  
  348. text:
  349.  
  350. - '&8&m+----------------+'
  351.  
  352. interval: 10
  353.  
  354. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement