Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.26 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # AirBar 2
  4. # (c) Maxim Van de Wynckel
  5. #
  6. # ------------------------------ #
  7.  
  8. # About: Everyone knows the shiny boss bar on the top of the screen.
  9. # On first sight this plugin does the same exact thing as any
  10. # other BossBar plugin. However it has loads of preset effects,
  11. # loads of placeholders, its light as air (maybe even lighter than
  12. # a feather) but above all: it is extremely customizable.
  13. # 1.9 servers can create up to 4 boss bars running at the same time
  14. # the boss bars can change color, change the amount of segments and
  15. # just like in 1.8 also change the progress.
  16. # If you are not a fan of multiple boss bars you can even set it to
  17. # use a single bar instead for event triggers, etc...
  18. #
  19. # Features:
  20. # - 5000+ placeholders on launch (more coming every month)
  21. # - 30+ preset effects on launch (added less regulary but still added)
  22. # - 20+ trigger events (trigger a boss bar with a plugin)
  23. # - Configure the whole animation using a GUI (AnimationCreator)
  24. # - Change the progress value by starting with |25/100|Bar is at 25%
  25. # |{health}/20|Your health is 50%
  26. # - Change the color for each frame (1.9)
  27. # |color:red| (see documentation for available colors)
  28. # - Change the amount of segments for each frame (1.9)
  29. # |segments:6| (see documentation for available segments)
  30. # - Announcements: Change between boss bar's every X seconds
  31. # - Run once: For announcements or triggered boss bars you can set the
  32. # the frames to only run once (so don't loop)
  33.  
  34. # Permissions: To use the airbar groups give them the permission
  35. # airbar.group.<group>
  36. # Make sure to remove them from the other groups
  37. # when giving a new permission.
  38. # Above that you can 'trigger' airbar's using trigger
  39. # effects.
  40.  
  41. # Commands: List of main commands
  42. # /airbar help - Show all commands
  43. # /airbar reload - Reload the configuration
  44.  
  45. # Variables: These variables can be used in the TEXT section
  46. # of both the header as the footer.
  47. #
  48. # {PLAYER} - Player name
  49. # {PLAYERNICK} - Player nickname
  50. # {SERVER} - Server name
  51. # {PLAYERCOUNT} - Server player count
  52. # {BUNGEECOUNT} - Bungee network player count
  53. # 5000+ more ... see spigot page
  54.  
  55. # Formatting: These are formatting tags allowing you to format the animations
  56. # or placeholders.
  57. #
  58. # Substring: This allows you to split a word (even a placeholder) in parts
  59. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  60. # usage: This can be used to split placeholders when creating a typewriter
  61. # or to split the colors in a placeholder.
  62. #
  63. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  64. # two arguments (the length and space between scrolls).
  65. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  66. #
  67. # PLENTY MORE! See spigot page
  68.  
  69. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  70. # GENERAL PLUGIN SETTINGS
  71. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  72.  
  73. ## Config version (DO NOT EDIT)
  74. config: 2
  75.  
  76. ## Language file
  77. lang: 'en'
  78.  
  79. ## Debug mode
  80. debug: false
  81.  
  82. ## Log to file
  83. log:
  84. enabled: true
  85. # Reset log on startup
  86. reset: true
  87.  
  88. ## Update checking
  89. update:
  90. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  91.  
  92. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  93. # PLUGIN SPECIFIC SETTINGS
  94. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  95.  
  96. # Placeholder settings
  97. placeholder:
  98. # logs the memory usage of placeholders on startup
  99. log-memory: false
  100. # Clear unused placeholders that are not enabled.
  101. clear-unused: true
  102. # Config cache only
  103. # This will only use placeholders in the config
  104. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  105. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  106. config-cache: false
  107.  
  108. # Toggling allows you to disable the airbar
  109. database:
  110. # If you want the toggle to stay even when your users
  111. # log off you can enable this. Keep in mind that this requires a
  112. # MySQL or SQLite database.
  113. # If you are configuring the plugin for the first time it is advised
  114. # to stay away from these settings until you managed the airbar
  115. # set up.
  116. persistent: false
  117. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  118. # with isolation, url, driver, ...
  119. # Database name
  120. database: "airbar"
  121. # Database username
  122. username: bukkit
  123. # Database isolation type
  124. isolation: SERIALIZABLE
  125. # Database driver
  126. driver: org.sqlite.JDBC
  127. # Database password
  128. password: walrus
  129. # Database driver URL
  130. # {DIR} will be replaced with the plugin directory
  131. # {NAME} will be replaced wit the plugin name
  132. url: jdbc:sqlite:{DIR}{NAME}.db
  133. # Save interval in ticks
  134. save-interval: 6000
  135.  
  136. # Disabled worlds. Add your world name in this list to
  137. # disable it.
  138. disabled-worlds:
  139. - 'example_world'
  140.  
  141. # Following tweaks are for 1.8.X servers
  142. tweaks-1.8:
  143. # Since 1.8 the bossbar is only visible when looking directly to a boss
  144. # this means for every movement the boss has to move. How further it is away
  145. # the more it has to move
  146. entity-distance: 28
  147. # Since 1.8 the bossbar is only visible when looking directly to a boss
  148. # this means for every movement the boss has to move. The move threshold is
  149. # a tweak that only triggers a movement of the boss when the change is bigger than
  150. # specified. Note that large thresholds may cause disappearing boss bar's.
  151. movement-threshold: 1
  152. # This is a DEBUG tweak/test. This will make the wither that is used to show
  153. # the boss bar visible, so you can use it to tweak the entity-distance and
  154. # movement threshold. Keep in mind that this requires a relog as well.
  155. visible-entity: false
  156.  
  157. # Following tweaks are for 1.9.X servers
  158. tweaks-1.9:
  159. # Make the sky darker during showing a boss bar (maybe to draw attention to it)
  160. darken-sky: false
  161. # Create a fog effect during the boss bar
  162. create-fog: false
  163. # Bossbar sound during showing the airbar
  164. sound: false
  165. # Default amount of segments (if not specified in the individual groups
  166. # or in the individual lines)
  167. default-segments: 1
  168. # Default color (if not specified in the individual groups
  169. # or in the individual lines)
  170. default-color: PINK # Default boss bar color in 1.8
  171. # Use one single bar. When false it will create a new bar on new overrides
  172. # or when having permission on multiple bars.
  173. # Multiple bars means multiple packets per bar (more bandwidth and CPU)
  174. single-bar: true
  175.  
  176. # While you can use this plugin to show a bar "in the air" you define
  177. # using permissions, you can also switch between airbar groups using
  178. # announcements. Announcements allow you to 'switch' between the different
  179. # groups a player has permission to. This allows you for example to show
  180. # some server advertising but do not show it to donators (if you make sure they
  181. # don't have permission to the "advertisement")
  182. announcements:
  183. # Do you want to enable announcements for the airbar plugin
  184. # enabling this will loop through all airbar groups that have "is-announcement" enabled
  185. # and the player has permission to.
  186. # It will change between the groups every "change-interval" in seconds
  187. enabled: true
  188. # The interval to change between announcements (Every x seconds)
  189. change-interval: 4
  190.  
  191. # This section contains all pre-configured AirBar's
  192. airbar:
  193. # You can create multiple groups to send
  194. # different airbar's to different players
  195. default:
  196. # The airbar supports color codes and frames
  197. text:
  198. # This example shows a simple switching frame every 2 seconds.
  199. # The bossbar remains at 100% on both frames
  200. - '|segments:6|color:yellow|&6&lWelcome &2&oto &a&lMINE&9&lC&2&lA&d&lV'
  201. - '|segments:10|color:green|&e&lWelcome &6&oto &a&lMINE&9&lC&2&lA&d&lV'
  202. - '|segments:12|color:blue|&6&lWelcome &2&oto &a&lMINE&9&lC&2&lA&d&lV'
  203. - '|segments:20|color:pink|&e&lWelcome &6&oto &a&lMINE&9&lC&2&lA&d&lV'
  204. - '|segments:12|color:purple|&6&lWelcome &2&oto &a&lMINE&9&lC&2&lA&d&lV'
  205. - '|segments:10|color:red|&e&lWelcome &6&oto &a&lMINE&9&lC&2&lA&d&lV'
  206. # The interval in ticks to switch text
  207. interval: 10
  208. # Define if the text should be randomized. Animation formatting tags
  209. # won't be affected.
  210. # Enabling randomizing overrides the run-once (meaning you can't randomize and run once)
  211. random: false
  212. # If you only want the frames/text to run one time
  213. # set this to true. This will only loop through the frames
  214. # once.
  215. # Please NOTE: The run-once will only work on triggered airbar
  216. # or announcements.
  217. # The bar will be removed after the interval of the last frame.
  218. run-once: false
  219. # If you set this 'airbar group' as an announcement it will be
  220. # used in the announcement loop. If:
  221. # 1) The player has permission to this group
  222. # 2) is-announcement is set to true
  223. is-announcement: true
  224. # Default color of the boss bar. Only works on 1.9!
  225. # Will be overridden by a |color:xxxx| tag in a line
  226. # Available colors:
  227. # PINK
  228. # BLUE
  229. # RED
  230. # GREEN
  231. # YELLOW
  232. # PURPLE
  233. # WHITE
  234. color: PINK
  235. # Default segments in the boss bar (just for the looks). Only works on 1.9!
  236. # Will be overridden by a |segments:xx| tag in a line
  237. # Available options:
  238. # 1,6,10,12,20
  239. # Leave 1 or 0 if you are not sure
  240. segments: 1
  241. announcement1:
  242. # The airbar supports color codes and frames
  243. text:
  244. - '|segments:10|color:green|&b&lCollect Daily Rewards from Delivery Man!'
  245. # The interval in ticks to switch text
  246. interval: 10
  247. # Define if the text should be randomized. Animation formatting tags
  248. # won't be affected.
  249. # Enabling randomizing overrides the run-once (meaning you can't randomize and run once)
  250. random: false
  251. # If you only want the frames/text to run one time
  252. # set this to true. This will only loop through the frames
  253. # once.
  254. # Please NOTE: The run-once will only work on triggered airbar
  255. # or announcements.
  256. # The bar will be removed after the interval of the last frame.
  257. run-once: false
  258. # If you set this 'airbar group' as an announcement it will be
  259. # used in the announcement loop. If:
  260. # 1) The player has permission to this group
  261. # 2) is-announcement is set to true
  262. is-announcement: true
  263. announcement2:
  264. # The airbar supports color codes and frames
  265. text:
  266. - '|segments:10|color:red|&4&lZ&e&lombie &4&lS&e&lurvial &d&lNOW OPEN &ein the &aGame &bMenu'
  267. # The interval in ticks to switch text
  268. interval: 10
  269. # Define if the text should be randomized. Animation formatting tags
  270. # won't be affected.
  271. # Enabling randomizing overrides the run-once (meaning you can't randomize and run once)
  272. random: false
  273. # If you only want the frames/text to run one time
  274. # set this to true. This will only loop through the frames
  275. # once.
  276. # Please NOTE: The run-once will only work on triggered airbar
  277. # or announcements.
  278. # The bar will be removed after the interval of the last frame.
  279. run-once: false
  280. # If you set this 'airbar group' as an announcement it will be
  281. # used in the announcement loop. If:
  282. # 1) The player has permission to this group
  283. # 2) is-announcement is set to true
  284. is-announcement: true
  285. announcement3:
  286. # The airbar supports color codes and frames
  287. text:
  288. - '&a&lPlay Games in the Arcade!'
  289. # The interval in ticks to switch text
  290. interval: 10
  291. # Define if the text should be randomized. Animation formatting tags
  292. # won't be affected.
  293. # Enabling randomizing overrides the run-once (meaning you can't randomize and run once)
  294. random: false
  295. # If you only want the frames/text to run one time
  296. # set this to true. This will only loop through the frames
  297. # once.
  298. # Please NOTE: The run-once will only work on triggered airbar
  299. # or announcements.
  300. # The bar will be removed after the interval of the last frame.
  301. run-once: false
  302. # If you set this 'airbar group' as an announcement it will be
  303. # used in the announcement loop. If:
  304. # 1) The player has permission to this group
  305. # 2) is-announcement is set to true
  306. is-announcement: true
  307. announcement4:
  308. # The airbar supports color codes and frames
  309. text:
  310. - '|segments:10|color:green|&dVote for Money in the &6MINECAV Menu&d or at &bwww.minecav.com'
  311. # The interval in ticks to switch text
  312. interval: 10
  313. # Define if the text should be randomized. Animation formatting tags
  314. # won't be affected.
  315. # Enabling randomizing overrides the run-once (meaning you can't randomize and run once)
  316. random: false
  317. # If you only want the frames/text to run one time
  318. # set this to true. This will only loop through the frames
  319. # once.
  320. # Please NOTE: The run-once will only work on triggered airbar
  321. # or announcements.
  322. # The bar will be removed after the interval of the last frame.
  323. run-once: false
  324. # If you set this 'airbar group' as an announcement it will be
  325. # used in the announcement loop. If:
  326. # 1) The player has permission to this group
  327. # 2) is-announcement is set to true
  328. is-announcement: true
  329. announcement5:
  330. # The airbar supports color codes and frames
  331. text:
  332. - '&aYou are Playing on: &b&lMC.MINECAV.COM'
  333. # The interval in ticks to switch text
  334. interval: 10
  335. # Define if the text should be randomized. Animation formatting tags
  336. # won't be affected.
  337. # Enabling randomizing overrides the run-once (meaning you can't randomize and run once)
  338. random: false
  339. # If you only want the frames/text to run one time
  340. # set this to true. This will only loop through the frames
  341. # once.
  342. # Please NOTE: The run-once will only work on triggered airbar
  343. # or announcements.
  344. # The bar will be removed after the interval of the last frame.
  345. run-once: false
  346. # If you set this 'airbar group' as an announcement it will be
  347. # used in the announcement loop. If:
  348. # 1) The player has permission to this group
  349. # 2) is-announcement is set to true
  350. is-announcement: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement