Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.90 KB | None | 0 0
  1. # General config
  2.  
  3. # Do we want to use player kills ?
  4. players-enabled: true
  5. # Disabled world list
  6. disabled-worlds:
  7. - 1vs1
  8. # Commands that can be executed when you reach a certain killstreak. The zero is just an example.
  9. killstreak-specific-commands:
  10. '0':
  11. # Commands that can be executed when you reach a certain level. The zero is just an example.
  12. level-specific-commands:
  13. '0':
  14. # Announce a killstreak every x amount. Set to zero to disable.
  15. announce-killstreak-every: 5
  16. announce-killstreak-message: '&e&lPVP &a» &a%name &fha conseguido un killstreak de &a%killstreak'
  17. # You can give people extra points when they kill somebody. To give extra points, give them the permission
  18. # battlelevels.extrascore.x and replace x with the amount
  19. # Example for 0.5 extra points per kill: battlelevels.extrascore.0.5
  20. # Here you can set the enabled extra scores
  21. extrascores:
  22. - 0.5
  23. # Score you earn for killing a player
  24. kill-score: 1.5
  25. # Earn extra points per kill in a killstreak. If this value would be 0.2 and your streak
  26. # would be 10, you would get 2 extra points when you kill somebody
  27. killstreak-score: 0.2
  28. # Score which is lost on death
  29. lose-score-on-death: 0.5
  30. # Maximum level
  31. max-level: 500
  32. # If a player has a high streak or multiplier, it is possible
  33. # that he unlocks multiple levels at once, this option allows
  34. # you the amount of next levels to check
  35. check-for-next: 1
  36. # Enable xp bar progress
  37. xp-bar: false
  38. # Enable extra hearts
  39. enable-extra-hearts: true
  40. extra-hearts-per-level: 0.005
  41. max-extra-hearts: 2.0
  42. # Enable extra damage based on level
  43. enable-extra-damage: true
  44. extra-damage-per-level: 0.005
  45. max-extra-damage: 0.5
  46. # Enable negative score
  47. negative-score: false
  48. # Top stats update interval
  49. topstats-interval: 180
  50. # Upper limit. If you want to use random points between 2 limits as a reward, fill in the upper limit here. The plugin will generate a random number between the this number and the normal kill score every time.
  51. enable-random: false
  52. upper-limit: 2.0
  53.  
  54. # Data config
  55.  
  56. # MySQL settings
  57. mysql: false
  58. mysql-host: host
  59. mysql-username: username
  60. mysql-password: password
  61. mysql-database: database
  62.  
  63.  
  64. # Formula config
  65.  
  66.  
  67. # Linear formula: you will always need to earn the same amount of score to level up to the next level
  68. # Current level: floor(x/b)
  69. # Score required to reach level c: c * b
  70. # x is the player's current score and and b is the score needed to level up to level 1 (base score)
  71. linear-formula-enabled: false
  72. # This is the b value from the previous formula
  73. # If you would leave this value at 5, the progress would look like this:
  74. #
  75. # Score required to reach level 1: 5
  76. # Score required to reach level 2: 10
  77. # Score required to reach level 3: 15
  78. # Score required to reach level 4: 20
  79. # Score required to reach level 5: 25
  80. # And so on...
  81. linear-default-level-up: 5
  82.  
  83.  
  84. # Geometric formula: you will always need to earn a bit more score to level up to the next level
  85. # Score required to reach level c: b * s ^ (c - 1)
  86. # s is the scaling factor and b is the score needed to level up to level 1 (base score)
  87. geometric-formula-enabled: true
  88. # This is the b value from the previous formula
  89. geometric-default-level-up: 3.5
  90. # This is the s value from the previous formula
  91. geometric-scaling-factor: 1.05
  92. # If you would leave the the default level-up at 5 and the scaling factor at 1.5, the progress would look like this:
  93. #
  94. # Score required to reach level 1: 5
  95. # Score required to reach level 2: 7.5
  96. # Score required to reach level 3: 11.25
  97. # Score required to reach level 4: 16.875
  98. # Score required to reach level 5: 25.3125
  99. # This score would of course be rounded
  100. # And so on...
  101.  
  102.  
  103. # Geometric formula 2: you will always need to earn a bit more score to level up to the next level
  104. # Score required to reach level 1: (b * 1) + (s * 1)
  105. # Score required to reach level 2: (b * 2) + (s * 1) + (s * 2)
  106. # Score required to reach level 3: (b * 3) + (s * 1) + (s * 2) + (s * 3)
  107. # Score required to reach level 4: (b * 4) + (s * 1) + (s * 2) + (s * 3) + (s * 4)
  108. # s is the scaling factor and b is the score needed to level up to level 1 (base score)
  109. geometric2-formula-enabled: false
  110. # This is the b value from the previous formula
  111. geometric2-default-level-up: 5
  112. # This is the s value from the previous formula
  113. geometric2-extra-factor: 0.5
  114. # This example would require you to get 0.5 more than the previous time to level-up
  115.  
  116. # Custom formula 1: you allows you to set the amount per level
  117. # The number that you need to set is the total score that the player needs to have at the point of leveling up
  118. # You can as much levels as you want
  119. custom1-formula-enabled: false
  120. custom1-formula:
  121. 1: 5.0
  122. 2: 11.0
  123. 3: 18.0
  124. 4: 26.0
  125. 5: 35.0
  126.  
  127.  
  128.  
  129. # Booster config
  130.  
  131. # Enable boosters
  132. booster-enabled: true
  133. # Enable double reward score when having a booster
  134. booster-double-score: true
  135. # Enable double rewards when having a booster
  136. booster-double-rewards: false
  137. # Maximum normal booster time
  138. max-booster: 24
  139. # Maximum global booster time
  140. max-global-booster: 24
  141. # Global booster message
  142. global-booster-message: '&e%name activated a global booster for &e%amount hours'
  143. # Normal booster message
  144. booster-message: '&aYou enabled a booster for &e%amount hours'
  145. # Message if boosters aren't enabled
  146. booster-not-enabled: '&aBoosters are not enabled'
  147. # Normal booster de-activated
  148. booster-de-activated: '&aThe booster is now deactivated'
  149. # Global booster de-activated
  150. global-booster-de-activated: '&aThe global booster is now deactivated'
  151. # Normal booster maximum message
  152. max-boost-message: '&aThe maximum boost is &b%amount hours'
  153. # Global booster maximum message
  154. max-global-boost-message: '&aThe maximum global boost is &b%amount hours'
  155. # No booster activated
  156. no-booster-activated: '&cNo booster activated'
  157. # Normal booster
  158. normal-booster: '%time hours'
  159. # Global booster
  160. global-booster: '%time hours global boost'
  161.  
  162.  
  163. # Messages config
  164.  
  165. # Level-up message
  166. levelup-message: '&e&lPVP &a» &fHas subido a nivel &a%level'
  167. # Level-up announcement
  168. levelup-announcement: '&e&lPVP &a» &a%name &fHa subido a nivel &a%level!'
  169. # Reward message
  170. reward-message: '&6Recompensa: &a%itemamount &fdiamantes, &a%xpamount &fxp y &a%moneyamount $'
  171. # Show death message
  172. show-death-message: true
  173. # Death message
  174. death-message: '&cHas perdido &e%amount puntos'
  175. # Show kill message
  176. show-kill-message: true
  177. # Kill message
  178. kill-message: '&e&lPVP &a» &fHas ganado &a%amount puntos &fpor matar a &a%name'
  179. # Player offline message
  180. player-offline: '&cPlayer offline'
  181. # Player does not exist message
  182. not-exist: '&cThat player does not exist'
  183. # Progress bar configuration
  184. progress-bar: '&a%part1&c%part2'
  185. progress-bar-segments: 25
  186. progress-bar-segment: '|'
  187.  
  188. # Bossbar config
  189.  
  190. # Enable bossbar
  191. bar-enabled: true
  192. # How long the bossbar is shown after a kill. Set to zero to disable
  193. bar-showtime: 4
  194. # Player kill message
  195. bar-message: '&e&lPVP &a» &fHas ganado &a%amount puntos &fpor matar a &a%died'
  196. # Mob kill message
  197. mob-bar-message: '&e&lPVP &a» &fHas ganado &a%amount puntos &fpor matar a &a%died'
  198. # Permanent bossbar or not
  199. permanent-bar: false
  200. # Permanent bossbar message
  201. permanent-bar-message: '&bProgress'
  202. # Level-up message
  203. bar-level-up: '&bYou leveled up to level %level'
  204.  
  205.  
  206. # Zone settings
  207.  
  208. # Enable ranged zones
  209. ranged-zones: false
  210. # Enable level-zones
  211. level-zones: false
  212. # Ranged zone message
  213. ranged-message: '&aYou can''t hit &b%hit &abecause the range in this zone is &e%range'
  214. # Level zone message
  215. level-message: '&aYou can''t enter this zone &abecause the required level is &b%level'
  216. # Enable global ranged zones
  217. global-ranged-zones: false
  218. # Global ranged zones value
  219. global-ranged-zones-range: 10
  220. # Global ranged zone message
  221. global-ranged-message: '&aYou can''t hit &b%hit &abecause the range is &e%range'
  222. # Max level zones
  223. max-zones: false
  224. # Max level zones message
  225. max-message: '&aYou can''t enter this zone &abecause the maximum level is &b%level'
  226.  
  227.  
  228. # Rewards config
  229.  
  230.  
  231. # Heal
  232. heal: false
  233. # Percentage chance that the item will be given
  234. item-give-percentage: 100
  235. # Item ID. Set to zero to disable.
  236. item-id: '264:0'
  237. # Item amount
  238. item-amount: 1
  239. # Money amount
  240. money-amount: 250
  241. # XP amount
  242. xp-amount: 50
  243. # Show reward message
  244. show-reward-message: true
  245. # Reward message
  246. reward-message: '&6Recompensa: &a%itemamount &fdiamantes, &a%xpamount &fxp y &a%moneyamount $'
  247.  
  248.  
  249. # Level-up config
  250.  
  251. # Execute commands every level-up
  252. every-level-commands: false
  253. # If the previous feature is enabled, here are the commands
  254. commands-every-level:
  255. - /say %name just reached level %level !
  256. # Level-up message
  257. level-up-message: '&e&lPVP &a» &fHas subido a nivel &a%level'
  258. # Level-up announcement
  259. level-up-announcement: '&e&lPVP &a» &a%name &fHa subido a nivel &a%level'
  260. # How often it should show the announcement
  261. announce-every-x-level: 10
  262. # How often it should should show firework
  263. firework-every-x-level: 1
  264. # Level-up title. Variables are %level and %name
  265. enable-level-up-title: true
  266. level-up-title: '&fAhora eres nivel &a%level'
  267.  
  268.  
  269. # Anti grinder config
  270. # This allows you to stop people from killing the same person over and over to get more points
  271.  
  272. # Enabled anti grinder or not
  273. antigrinder-enabled: true
  274. # Interval in seconds
  275. antigrinder-interval: 180
  276. # Max kill
  277. antigrinder-max: 10
  278. # Message
  279. antigrinder-message: '&cHas matado a %victim muchas veces, no vas a recibir mas puntos'
  280. send-antigrinder-message: true
  281. # This default configuration means that you can only earn points for the first 20 kills on the same person during 3 minutes (180 seconds)
  282.  
  283.  
  284. # Custom command config
  285.  
  286. commands:
  287. 'level':
  288. - ' &a&l<&a&m===&a&l> &cReport for &6%name &a&l<&a&m====&a&l>'
  289. - ' &bScore&a: &e%score %coin'
  290. - ' &bLevel&a: &e%level'
  291. - ' &bKills&a: &e%kills'
  292. - ' &bDeaths&a: &e%deaths'
  293. - ' &bMultiplier&a: &e%multiplier &e%coin'
  294. - ' &bKillstreak&a: &e%killstreak kills'
  295. - ' &bExtra damage&a: &e%extradamage &c%heart'
  296. - ' &bExtra hearts&a: &e%extrahearts &c%heart'
  297. - ' &bPoints needed to level-up&a: &e%neededfornext %coin'
  298. - ' &bProgress&a: %bar'
  299. - ' &bBooster&a: &e%boostertime'
  300. - ' &bXP level&a: &e%xp'
  301. - ' &bProgress&a: &e%progress %'
  302. - ' &bKDR: &e%kdr'
  303. 'topstats':
  304. - ' &aTop 10 levels'
  305. - ' &e1: &a%toplevels1name - &elevel &a%toplevels1value'
  306. - ' &e2: &a%toplevels2name - &elevel &a%toplevels2value'
  307. - ' &e3: &a%toplevels3name - &elevel &a%toplevels3value'
  308. - ' &e4: &a%toplevels4name - &elevel &a%toplevels4value'
  309. - ' &e5: &a%toplevels5name - &elevel &a%toplevels5value'
  310. - ' &e6: &a%toplevels6name - &elevel &a%toplevels6value'
  311. - ' &e7: &a%toplevels7name - &elevel &a%toplevels7value'
  312. - ' &e8: &a%toplevels8name - &elevel &a%toplevels8value'
  313. - ' &e9: &a%toplevels9name - &elevel &a%toplevels9value'
  314. - ' &e10: &a%toplevels10name - &elevel &a%toplevels10value'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement