Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Jun 6th, 2017
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.31 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:
  66. log-memory: false
  67. clear-unused: true
  68. config-cache: false
  69.  
  70. tweaks:
  71. keepScoreboardOnQuit: false
  72. detect-placeholderdelay: false
  73. verbose-placeholder-timings: false
  74. ignore-placeholder-problems: false
  75.  
  76. database:
  77. persistent: false
  78. database: "featherboard"
  79. username: bukkit
  80. isolation: SERIALIZABLE
  81. driver: org.sqlite.JDBC
  82. password: walrus
  83. url: jdbc:sqlite:{DIR}{NAME}.db
  84. save-interval: 6000
  85.  
  86. disabled-worlds:
  87. - 'example_world'
  88.  
  89. show-delay: 0
  90.  
  91. antiflicker: true
  92.  
  93. scoreboard-assigning: "PERMISSION"
  94.  
  95. gui:
  96. title: "Scoreboards"
  97. size: -1
  98.  
  99. boards:
  100. default:
  101. title:
  102. text:
  103. - '&7[&c&lFightPvP&7]'
  104. interval: 100
  105. random: false
  106. header:
  107. text:
  108. - '&7&m--------------------'
  109. interval: 100
  110. random: false
  111. player-label:
  112. text:
  113. - '&7Bentornato:'
  114. interval: 100
  115. random: false
  116. player-line1:
  117. text:
  118. - '&3 {player}'
  119. interval: 100
  120. random: false
  121. player-line2:
  122. text:
  123. - '&7Rank info:'
  124. interval: 100
  125. random: false
  126. player-line3:
  127. text:
  128. - '&3 Rank attuale: &c{group}'
  129. interval: 100
  130. random: false
  131. player-line8:
  132. text:
  133. - '&3 Prossimo rank: &c{autorank_nextrankupgroup}'
  134. interval: 100
  135. random: false
  136. new-line1:
  137. text:
  138. - '&8&m--------------------'
  139. interval: 100
  140. random: false
  141. news:
  142. text:
  143. - '&3Money: &a{money}'
  144. interval: 100
  145. random: false
  146. player-line):
  147. text:
  148. - '&3Ping: &a{ping}'
  149. interval: 100
  150. random: false
  151. new-line2:
  152. text:
  153. - '&8&m--------------------'
  154. interval: 100
  155. random: false
  156. faction-info:
  157. text:
  158. - '&7Server info:'
  159. interval: 100
  160. random: false
  161. faction-informazione:
  162. text:
  163. - '&3Teamspeak: &e/Ts'
  164. interval: 100
  165. random: false
  166. faction-name:
  167. text:
  168. - '&3Shop:&e /Buy'
  169. interval: 100
  170. random: false
  171. footer:
  172. text:
  173. - '&7&m--------------------'
  174. interval: 100
  175. random: false
  176. combat-scoreboard-example:
  177. title:
  178. text:
  179. - '<single><delay times="10">&l><</delay></single>'
  180. - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  181. - '<single>&f&lherB</single>'
  182. - '<single>&f&lherBo</single>'
  183. - '<single>&f&latherBoa</single>'
  184. - '<single>&f&leatherBoar</single>'
  185. - ' <delay times="100">&f&lFeatherBoard&1&l3</delay>' # <delay> will repeat the line X times
  186. interval: 2
  187. random: false
  188. header:
  189. text:
  190. - '&a&m+-----------------+'
  191. interval: 10
  192. random: true
  193. combat-label:
  194. text:
  195. - '&8&l> &7&lCombat target:'
  196. interval: 100
  197. random: false
  198. combat-data:
  199. text:
  200. - '{vanilla-combat_opponent_name}'
  201. interval: 2
  202. random: false
  203. spacer1:
  204. text: []
  205. interval: 100
  206. health-label:
  207. text:
  208. - '&8&l> &7&lHealth stats:'
  209. interval: 100
  210. random: false
  211. health-data-1:
  212. text:
  213. - '&aYou: {healthbar}'
  214. interval: 1
  215. random: false
  216. health-data-2:
  217. text:
  218. - '&cTarget: {vanilla-combat_opponent_healthbar}'
  219. interval: 1
  220. random: false
  221. footer:
  222. text:
  223. - '&a&m+-----------------+'
  224. interval: 10
  225. random: true
  226. # This is an example for mcMMO when you level up
  227. # DO NOT GIVE THE PERMISSION FOR THIS SCOREBOARD
  228. # (Unless you want it to show all the time)
  229. # You still need to 'trigger' this scoreboard in the 'mcmmo-levelup'
  230. mcmmo-levelup:
  231. title:
  232. text:
  233. # To create cool looking animations you create yourself
  234. # you can use the graphical tool AnimationCreator
  235. # https://www.spigotmc.org/resources/animationcreator.6001/
  236. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  237. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  238. - '<single><delay times="10">&l><</delay></single>'
  239. - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  240. - '<single>&f&lherB</single>'
  241. - '<single>&f&lherBo</single>'
  242. - '<single>&f&latherBoa</single>'
  243. - '<single>&f&leatherBoar</single>'
  244. - ' <delay times="100">&f&lFeatherBoard&1&l3</delay>' # <delay> will repeat the line X times
  245. interval: 2
  246. random: false
  247. header:
  248. text:
  249. - '&a&m+-----------------+'
  250. interval: 10
  251. random: true
  252. info-label:
  253. text:
  254. # mcMMO-levelup comes with several event specific placeholders
  255. - '&bCongrats! Level up: {mcmmo-levelup_levelsgained}'
  256. interval: 10
  257. spacer1: # This is a spacer an empty line
  258. text:
  259. - ''
  260. interval: 10
  261. # Do you want to randomize the animation frames?
  262. random: false
  263. skill-label: # You can add elements to the group and name them like you want
  264. # Lets make a static label
  265. text:
  266. - '&9&l> &e&lSkill:'
  267. interval: 10 # The interval is not important since its just 1 static text.
  268. # Do you want to randomize the animation frames?
  269. random: false
  270. skill:
  271. # Lets make a static label
  272. text:
  273. - '{mcmmo-levelup_skill_name}'
  274. interval: 10 # The interval is not important since its just 1 static text.
  275. # Do you want to randomize the animation frames?
  276. random: false
  277. spacer2: # This is a spacer an empty line
  278. text:
  279. - ''
  280. interval: 100
  281. # Do you want to randomize the animation frames?
  282. random: false
  283. skilllevel-label: # You can add elements to the group and name them like you want
  284. # Lets make a static label
  285. text:
  286. - '&b&l> &e&lCurrent level:'
  287. interval: 10 # The interval is not important since its just 1 static text.
  288. # Do you want to randomize the animation frames?
  289. random: false
  290. skilllevel:
  291. # Lets make a static label
  292. text:
  293. - '{mcmmo-levelup_skilllevel}'
  294. interval: 10 # The interval is not important since its just 1 static text.
  295. # Do you want to randomize the animation frames?
  296. random: false
  297. footer:
  298. text:
  299. - '&a&m+-----------------+'
  300. interval: 10
  301. random: true
  302. # This is an example for Towny when you enter a town
  303. # DO NOT GIVE THE PERMISSION FOR THIS SCOREBOARD
  304. # (Unless you want it to show all the time)
  305. # You still need to 'trigger' this scoreboard in the 'towny-town'
  306. towny-town-example:
  307. # Lets just use the title,header and footer from the example above
  308. # for in depth configuration look above.
  309. title:
  310. text:
  311. # To create cool looking animations you create yourself
  312. # you can use the graphical tool AnimationCreator
  313. # https://www.spigotmc.org/resources/animationcreator.6001/
  314. # For all placeholders: https://www.spigotmc.org/wiki/mvdw-placeholders/
  315. # For all preset effects: https://www.spigotmc.org/wiki/mvdw-effects/
  316. - '<single><delay times="10">&l><</delay></single>'
  317. - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
  318. - '<single>&f&lherB</single>'
  319. - '<single>&f&lherBo</single>'
  320. - '<single>&f&latherBoa</single>'
  321. - '<single>&f&leatherBoar</single>'
  322. - ' <delay times="100">&f&lFeatherBoard&1&l3</delay>' # <delay> will repeat the line X times
  323. interval: 2
  324. random: false
  325. header:
  326. text:
  327. - '&a&m+-------------------+'
  328. interval: 10
  329. random: true
  330. town-label:
  331. text:
  332. - '&bYou are in town:'
  333. interval: 100
  334. town-data:
  335. text:
  336. - '{towny_currenttown_name}'
  337. interval: 100
  338. spacer1:
  339. text: []
  340. interval: 100
  341. townboard-label:
  342. text:
  343. - '&bTown board:'
  344. interval: 100
  345. townboard:
  346. text:
  347. - '&a<scroll minwidth="28" width="30">{towny_currenttown_townboard}</scroll>'
  348. interval: 3
  349. spacer2:
  350. text: []
  351. interval: 100
  352. population-label:
  353. text:
  354. - '&bPopulation:'
  355. interval: 100
  356. poplulation-data:
  357. text:
  358. - '{towny_currenttown_residents}'
  359. interval: 100
  360. footer:
  361. text:
  362. - '&a&m+-------------------+'
  363. interval: 10
  364. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement