Advertisement
Guest User

Config

a guest
Jan 17th, 2016
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.71 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # ActionBar 6
  4. # (c) Maxim Van de Wynckel
  5. #
  6. # ------------------------------ #
  7.  
  8. # About: Minecraft 1.8 features a text above the action bar
  9. # This plugin will allow you to create a customizable text
  10. # for the actionbar.
  11. #
  12. # This plugin supports variables.
  13.  
  14. # Permissions: To use the action groups give them the permission
  15. # actionbar.group.<group>
  16. # Make sure to remove them from the other groups
  17. # when giving a new permission.
  18.  
  19. # Commands: List of all commands
  20. # /actionbar reload - Reload the configuration
  21. # /actionbar broadcast - Broadcast a message
  22.  
  23. # Variables: These variables can be used in the TEXT section
  24. # of both the header as the footer.
  25. #
  26. # {PLAYER} - Player name
  27. # {PLAYERNICK} - Player nickname
  28. # {SERVER} - Server name
  29. # {PLAYERCOUNT} - Server player count
  30. # {BUNGEECOUNT} - Bungee network player count
  31. # 4000+ more ... see spigot page
  32.  
  33. # Formatting: These are formatting tags allowing you to format the animations
  34. # or placeholders.
  35. #
  36. # Substring: This allows you to split a word (even a placeholder) in parts
  37. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  38. # usage: This can be used to split placeholders when creating a typewriter
  39. # or to split the colors in a placeholder.
  40. #
  41. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  42. # two arguments (the length and space between scrolls).
  43. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  44. #
  45. # PLENTY MORE! See spigot page
  46.  
  47. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  48. # GENERAL PLUGIN SETTINGS
  49. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  50.  
  51. ## Config version (DO NOT EDIT)
  52. config: 6
  53.  
  54. ## Language file
  55. lang: 'en'
  56.  
  57. ## Debug mode
  58. debug: false
  59.  
  60. ## Log to file
  61. log:
  62. enabled: true
  63. # Reset log on startup
  64. reset: false
  65.  
  66. ## Update checking
  67. update:
  68. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  69.  
  70. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  71. # PLUGIN SPECIFIC SETTINGS
  72. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  73.  
  74. # Placeholder settings
  75. placeholder:
  76. # logs the memory usage of placeholders on startup
  77. log-memory: false
  78. # Clear unused placeholders that are not enabled.
  79. clear-unused: true
  80.  
  81. # Toggling allows you to disable the actionbar
  82. database:
  83. # If you want the toggle to stay even when your users
  84. # log off you can enable this. Keep in mind that this requires a
  85. # MySQL or SQLite database.
  86. # If you are configuring the plugin for the first time it is advised
  87. # to stay away from these settings until you managed the actionbar
  88. # set up.
  89. persistent: false
  90. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  91. # with isolation, url, driver, ...
  92. # Database name
  93. database: "actionbar"
  94. # Database username
  95. username: bukkit
  96. # Database isolation type
  97. isolation: SERIALIZABLE
  98. # Database driver
  99. driver: org.sqlite.JDBC
  100. # Database password
  101. password: walrus
  102. # Database driver URL
  103. # {DIR} will be replaced with the plugin directory
  104. # {NAME} will be replaced wit the plugin name
  105. url: jdbc:sqlite:{DIR}{NAME}.db
  106. # Save interval in ticks
  107. save-interval: 6000
  108.  
  109. # While you can use this plugin to show a constant showing text/animation on the bottom
  110. # using permissions, you can also switch between actionbar groups using
  111. # announcements. Announcements allow you to 'switch' between the different
  112. # groups a player has permission to. This allows you for example to show
  113. # some server advertising but do not show it to donators (if you make sure they
  114. # don't have permission to the "advertisement")
  115. announcements:
  116. # Do you want to enable announcements for the actionbar plugin
  117. # enabling this will loop through all actionbar groups that have "is-announcement" enabled
  118. # and the player has permission to.
  119. # It will change between the groups every "change-interval" in seconds
  120. enabled: false
  121. # The interval to change between announcements (Every x seconds)
  122. change-interval: 60
  123.  
  124.  
  125. # Header
  126. actionbar:
  127. # You can create multiple groups to send
  128. # different actionbars to different players
  129. # The actionbar supports color codes and frames
  130. health:
  131. text:
  132. - '|{vanilla-combat_opponent_health}/{'vanilla-combat_opponent_maxhealth}| &9Opponent: {vanilla-combat_opponent_name}'
  133. interval: 1
  134. random: false
  135. run-once: true
  136. is-announcement: true
  137. # The following example: actionbar.group.example-ram
  138. example-ram:
  139. text:
  140. - '<rainbow>&lCURRENT RAM USAGE </rainbow>&7&o {usedram_formatted} / {maxram_formatted}'
  141. interval: 1
  142. random: false
  143. run-once: false
  144. is-announcement: false
  145. # The following example: actionbar.group.example-tps
  146. example-tps:
  147. text:
  148. - '<rainbow>&lCURRENT Ticks per Second </rainbow>&7&o {tps}/20'
  149. interval: 1
  150. random: false
  151. run-once: false
  152. is-announcement: false
  153.  
  154. # An example of a group would be vip (actionbar.group.vip)
  155. # For example you could remove the footer that says Vote now! or
  156. # in this example the site url.
  157.  
  158.  
  159. # Broadcast command (/actionbar broadcast Text here)
  160. broadcast:
  161. # Prefix and suffix support placeholders
  162. # Prefix shown before "Text here"
  163. prefix: '&e[{TIME}] &cBroadcast: '
  164. # Suffix shown after "Text here"
  165. suffix: ''
  166. # Time on screen in seconds
  167. time: 30
  168.  
  169. # Mobile support. Prevent sending it to mobile apps causing it to spam
  170. # This only works on the free version of MineChat
  171. mobile: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement