Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Dec 2nd, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  2. # GENERAL PLUGIN SETTINGS
  3. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  4.  
  5. ## Config version (DO NOT EDIT)
  6. config: 3
  7.  
  8. ## Language file
  9. lang: 'es'
  10.  
  11. ## Debug mode
  12. debug: false
  13.  
  14. ## Log to file
  15. log:
  16. enabled: true
  17. # Reset log on startup
  18. reset: false
  19.  
  20. ## Update checking
  21. update:
  22. check: false
  23.  
  24. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  25. # PLUGIN SPECIFIC SETTINGS
  26. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  27.  
  28. # Placeholder settings
  29. placeholder:
  30. # logs the memory usage of placeholders on startup
  31. log-memory: false
  32. # Clear unused placeholders that are not enabled.
  33. clear-unused: true
  34. # Config cache only
  35. # This will only use placeholders in the config
  36. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  37. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  38. config-cache: false
  39.  
  40. # Tweaks to increase performance (Use at own risk)
  41. tweaks:
  42. keepScoreboardOnQuit: false
  43. detect-placeholderdelay: false
  44. verbose-placeholder-timings: false
  45. ignore-placeholder-problems: false
  46.  
  47. # Toggling allows you to disable the scoreboard
  48. database:
  49. persistent: false
  50. database: "featherboard"
  51. # Database username
  52. username: bukkit
  53. # Database isolation type
  54. isolation: SERIALIZABLE
  55. # Database driver
  56. driver: org.sqlite.JDBC
  57. # Database password
  58. password: walrus
  59. # Database driver URL
  60. # {DIR} will be replaced with the plugin directory
  61. # {NAME} will be replaced wit the plugin name
  62. url: jdbc:sqlite:{DIR}{NAME}.db
  63. # Save interval in ticks
  64. save-interval: 6000
  65.  
  66. # Disabled worlds. Add your world name in this list to
  67. # disable it.
  68. disabled-worlds:
  69. - 'example_world'
  70.  
  71. # Show delay on join. Usefull if you wish to let the user
  72. # enjoy a Title MOTD without having the scoreboard obstructing
  73. # the view.
  74. show-delay: 0
  75.  
  76. # Anti Flicker will use a new engine that will allow you to use fast animations
  77. # without any flicker.
  78. # You can disable this feature if you do not have fast refresh rates.
  79. antiflicker: true
  80.  
  81. scoreboard-assigning: "PERMISSION"
  82.  
  83. # GUI: This is a feature enabling a GUI to select a specific scoreboard
  84. # The GUI will show all scoreboards you have permission to. It is not very
  85. # configurable in the way you can't control the location or order of the scoreboards
  86. # For a more configurable GUI I recommend DeluxeMenus
  87. gui:
  88. # This is the title of the GUI
  89. title: "Scoreboards"
  90. # Size of the GUI (leave to -1 to make it dynamic)
  91. # Sizes: 9,27,54
  92.  
  93. # A list of different scoreboards
  94. boards:
  95. default:
  96. title:
  97. text:
  98. - '&2&lFullPvP &7(&e{onlineplayers}&7)'
  99. interval: 4
  100. # If you don't want a static order of the frames and want to show each frame at random
  101. # you can enable this option.
  102. random: false
  103. Espacio1:
  104. text:
  105. - '&7 '
  106. interval: 100
  107. random: false
  108. Nombre:
  109. text:
  110. - '&7 <scroll> &7{PLAYERNAME} </scroll>'
  111. interval: 9
  112. random: false
  113. Espacio2:
  114. text:
  115. - "&2&l\xbb&a&l\xbb &7&LInfo "
  116. interval: 100
  117. random: false
  118. Asesinatos:
  119. text:
  120. - "&fAsesinatos&8&l\xbb &a{battlelevels_kills}"
  121. interval: 100
  122. random: false
  123. Muertes:
  124. text:
  125. - "&fMuertes&8&l\xbb &a{battlelevels_deaths}"
  126. interval: 100
  127. random: false
  128. Nivel:
  129. text:
  130. - "&fNivel&8&l\xbb &a{battlelevels_level}"
  131. interval: 100
  132. random: false
  133. Dinero:
  134. text:
  135. - "&fDinero&8&l\xbb &a{money}"
  136. interval: 100
  137. random: false
  138. Racha:
  139. text:
  140. - "&fRacha&8&l\xbb &a{battlelevels_killstreak}"
  141. interval: 100
  142. random: false
  143. Espacio3:
  144. text:
  145. - '&7 '
  146. interval: 100
  147. random: false
  148. Vida:
  149. text:
  150. - "&cCorazones&8&l\xbb"
  151. interval: 100
  152. random: false
  153. timesplayed:
  154. text:
  155. - "{healthbar}"
  156. interval: 100
  157. random: false
  158. Espacio4:
  159. text:
  160. - '&7 '
  161. interval: 100
  162. random: false
  163. IP:
  164. text:
  165. - '&e play.tuserver.net'
  166. interval: 5
  167. random: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement