Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.91 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: false
  63. # Reset log on startup
  64. reset: false
  65.  
  66. ## Update checking
  67. update:
  68. check: false # 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: true
  121. # The interval to change between announcements (Every x seconds)
  122. change-interval: 1200
  123.  
  124.  
  125. # Header
  126. actionbar:
  127. # You can create multiple groups to send
  128. # different actionbars to different players
  129. welcome:
  130. text:
  131. - '&7• &eYou are playing RoyalPlex {server} server! &7•{sound_note_piano}'
  132. - ''
  133. interval: 200
  134. random: false
  135. run-once: true
  136. is-announcement: true
  137. # The following example: actionbar.group.example-ram
  138. support:
  139. text:
  140. - '&7• &ePlease support us by voting or even donating! :: https://royalplex.eu/ &7•{sound_note_piano}'
  141. - ''
  142. interval: 200
  143. random: false
  144. run-once: true
  145. is-announcement: true
  146. # The following example: actionbar.group.example-tps
  147. donate:
  148. text:
  149. - '&7• &eDonate to keep server running! All donations covers server costs. <3 &7•{sound_note_piano}'
  150. - ''
  151. interval: 200
  152. random: false
  153. run-once: true
  154. is-announcement: true
  155. donate:
  156. text:
  157. - '&7• &eJoin forums to discuss or just chat! :: https://forums.royalplex.eu/ &7•{sound_note_piano}'
  158. - ''
  159. interval: 200
  160. random: false
  161. run-once: true
  162. is-announcement: true
  163.  
  164. # An example of a group would be vip (actionbar.group.vip)
  165. # For example you could remove the footer that says Vote now! or
  166. # in this example the site url.
  167.  
  168.  
  169. # Broadcast command (/actionbar broadcast Text here)
  170. broadcast:
  171. # Prefix and suffix support placeholders
  172. # Prefix shown before "Text here"
  173. prefix: '&7'
  174. # Suffix shown after "Text here"
  175. suffix: ''
  176. # Time on screen in seconds
  177. time: 10
  178.  
  179. # Mobile support. Prevent sending it to mobile apps causing it to spam
  180. # This only works on the free version of MineChat
  181. mobile: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement