Advertisement
Guest User

DrugMaina config

a guest
May 29th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.21 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # FeatherBoard 3
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. # Scoreboard made by, CorruptCode
  7. # Only in use for DrugMaina (c)
  8. #
  9. # ------------------------------ #
  10.  
  11. # Permissions: To use the action groups give them the permission
  12. # featherboard.group.<group>
  13. # Make sure to remove them from the other groups
  14. # when giving a new permission.
  15.  
  16. # Variables: These variables can be used in the TEXT section
  17. # of both the header as the footer.
  18. #
  19. # {PLAYER} - Player name
  20. # {PLAYERNICK} - Player nickname
  21. # {SERVER} - Server name
  22. # {PLAYERCOUNT} - Server player count
  23. # {BUNGEECOUNT} - Bungee network player count
  24. # 4000+ more ... see spigot page
  25.  
  26. # Formatting: These are formatting tags allowing you to format the animations
  27. # or placeholders.
  28. #
  29. # Substring: This allows you to split a word (even a placeholder) in parts
  30. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  31. # usage: This can be used to split placeholders when creating a typewriter
  32. # or to split the colors in a placeholder.
  33. #
  34. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  35. # two arguments (the length and space between scrolls).
  36. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  37. #
  38. # PLENTY MORE! See spigot page
  39.  
  40. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  41. # GENERAL PLUGIN SETTINGS
  42. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  43.  
  44. ## Config version (DO NOT EDIT)
  45. config: 2
  46.  
  47. ## Language file
  48. lang: 'en'
  49.  
  50. ## Debug mode
  51. debug: false
  52.  
  53. ## Log to file
  54. log:
  55. enabled: true
  56. # Reset log on startup
  57. reset: false
  58.  
  59. ## Update checking
  60. update:
  61. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  62.  
  63. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  64. # PLUGIN SPECIFIC SETTINGS
  65. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  66.  
  67. # Placeholder settings
  68. placeholder:
  69. # logs the memory usage of placeholders on startup
  70. log-memory: false
  71. # Clear unused placeholders that are not enabled.
  72. clear-unused: true
  73.  
  74. # Tweaks to increase performance (Use at own risk)
  75. tweaks:
  76. # This option does not send scoreboard remove packets
  77. # to the client on quit. This can increase performance on servers
  78. # where players quit a lot (hubs, ...)
  79. #
  80. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  81. # /data folder
  82. #
  83. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  84. keepScoreboardOnQuit: false
  85. # Some placeholders have a slow process behind them. Meaning they might contact a database
  86. # and take a while to 'resolve'. This will never cause lagg since the placeholders are loaded
  87. # separate from the sending. But can slow down the animation because it has to wait
  88. # for the placeholder to be loaded. When having multiple lines like a text that shows
  89. # the information about the placeholders you put below it, this can cause problems.
  90. # Enabling this will output a message in the console and ingame to operators
  91. # saying when a placeholder is causing delays.
  92. detect-placeholderdelay: false
  93. # Putting this to true will SPAM your console with timings report per placeholder/animation
  94. # refresh. Used for debugging purposes.
  95. # This requires detect-placeholderdelay to true
  96. verbose-placeholder-timings: false
  97.  
  98. # Toggling allows you to disable the scoreboard
  99. database:
  100. # If you want the toggle to stay even when your users
  101. # log off you can enable this. Keep in mind that this requires a
  102. # MySQL or SQLite database.
  103. # If you are configuring the plugin for the first time it is advised
  104. # to stay away from these settings until you managed the scoreboard
  105. # set up.
  106. persistent: false
  107. # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
  108. # with isolation, url, driver, ...
  109. # Database name
  110. database: "featherboard"
  111. # Database username
  112. username: bukkit
  113. # Database isolation type
  114. isolation: SERIALIZABLE
  115. # Database driver
  116. driver: org.sqlite.JDBC
  117. # Database password
  118. password: walrus
  119. # Database driver URL
  120. # {DIR} will be replaced with the plugin directory
  121. # {NAME} will be replaced wit the plugin name
  122. url: jdbc:sqlite:{DIR}{NAME}.db
  123. # Save interval in ticks
  124. save-interval: 6000
  125.  
  126. # Disabled worlds. Add your world name in this list to
  127. # disable it.
  128. disabled-worlds:
  129. - 'example_world'
  130.  
  131. # Show delay on join. Usefull if you wish to let the user
  132. # enjoy a Title MOTD without having the scoreboard obstructing
  133. # the view.
  134. show-delay: 0
  135.  
  136. # Anti Flicker will use a new engine that will allow you to use fast animations
  137. # without any flicker.
  138. # You can disable this feature if you do not have fast refresh rates.
  139. antiflicker: true
  140.  
  141. # A list of different scoreboards
  142. boards:
  143. # Default FeatherBoard comes with a board called "default". All players have the permission
  144. # featherboard.group.default (by default) meaning all players should see the scoreboard unless
  145. # the permission is negated.
  146. #
  147. # You can create as many boards as you want as long as the name is unique. It is advised to give logical
  148. # names such as "vip-board", "mcmmo-levelup", ...
  149. default:
  150. title:
  151. text:
  152. - '&3&lDrug&e&lMaina'
  153. header:
  154. text:
  155. - '&f&m+-------------+'
  156. online-label:
  157. text:
  158. - '&3Rank'
  159. online-players:
  160. text:
  161. - '&ePlaceholder'
  162. mine-label:
  163. text:
  164. - '&3Next Rank'
  165. mine-rank:
  166. text:
  167. - '&ePlaceholder'
  168. nextmine-label:
  169. text:
  170. - '&3Balance'
  171. nextmine-nextmine:
  172. text:
  173. - '&ePlaceholder'
  174. balance-label:
  175. text:
  176. - '&3Drug-Exp Level'
  177. balance-balance:
  178. text:
  179. - '&ePlaceholder'
  180. blocks-label:
  181. text:
  182. - '&3Gang'
  183. blocks-mined:
  184. text:
  185. - '&ePlaceholder'
  186. tokens-label:
  187. text:
  188. - '&3VoteParty'
  189. tokens-balance:
  190. text:
  191. - '&ePlaceholder'
  192. footer:
  193. text:
  194. - '&f&m+-------------+'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement