Advertisement
Guest User

Battlelevel Config

a guest
May 12th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.46 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. - disabledworldhere
  8. # Commands that can be executed when you reach a certain killstreak. The zero is just an example.
  9. # You can use the variables {killstreak} for the number of kills and the variable {name} for the player name variable.
  10. killstreak-specific-commands:
  11. '0':
  12. - '/say This is an example command!'
  13. - '/say You can even add multiple commands and the variable {killstreak} and {name}!'
  14. # Commands that can be executed when you reach a certain level. The zero is just an example.
  15. # You can use the variables {level} for the reached level and the variable {name} for the player name variable.
  16. level-specific-commands:
  17. '50':
  18. - '/manuaddp {name} serversigns.use.rankup.1'
  19. '100':
  20. - '/manuaddp {name} serversigns.use.rankup.2'
  21. '150':
  22. - '/manuaddp {name} serversigns.use.rankup.3'
  23. '200':
  24. - '/manuaddp {name} serversigns.use.rankup.4'
  25. '250':
  26. - '/manuaddp {name} serversigns.use.rankup.5'
  27. '300':
  28. - '/manuaddp {name} serversigns.use.rankup.6'
  29. '375':
  30. - '/manuaddp {name} serversigns.use.rankup.7'
  31. '450':
  32. - '/manuaddp {name} serversigns.use.rankup.8'
  33. # Announce a killstreak every x amount. Set to zero to disable.
  34. announce-killstreak-every: 10
  35. # You can use the variables {killstreak} for the number of kills and the variable {name} for the player name variable.
  36. announce-killstreak-message: '&b{name} just reached a killstreak of {killstreak} kills!'
  37. # Multipliers multiply the amount of score that you gain
  38. # The permission is battlelevels.multiplier.x
  39. # Replace x with the amount
  40. # The score will then equal 'x * normal_score'
  41. # Example for a multiplier of 1.5: battlelevels.multiplier.1.5
  42. # Here you can set the enabled multipliers
  43. multipliers:
  44. - 1
  45. # Score you earn for killing a player
  46. kill-score: 1
  47. # Earn extra points per kill in a killstreak. If this value would be 0.2 and your streak
  48. # would be 10, you would get 2 extra points when you kill somebody
  49. killstreak-score: 0
  50. # Score which is lost on death
  51. lose-score-on-death: 0
  52. # Maximum level
  53. max-level: 600
  54. # Enable xp bar progress
  55. xp-bar: false
  56. # Enable extra hearts
  57. # If this value would be 0.2 and your level would be 10, you would get 2 extra hearts
  58. enable-extra-hearts: false
  59. extra-hearts-per-level: 0.2
  60. max-extra-hearts: 4.0
  61. # Enable extra damage based on level
  62. enable-extra-damage: false
  63. # If this value would be 0.2 and your level would be 10, you would deal 2 hearts extra damage
  64. extra-damage-per-level: 0.02
  65. max-extra-damage: 12.0
  66. # Enable negative score
  67. # Of this is enabled, people their score can go below zero
  68. negative-score: false
  69. # Save interval in seconds
  70. # The plugin will save all data periodically to avoid data loss when the server crasjes
  71. save-interval: 60
  72. # 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.
  73. enable-random: false
  74. upper-limit: 2.0
  75. # Whether a player's killstreak should reset when he logs out
  76. reset-killstreak: false
  77. # Level that new players get
  78. start-level: 0
  79. # Score that new players get
  80. start-score: 0
  81. # People with a level below can't get attack players and get attacked by players
  82. start-pvp-level: 0
  83. start-pvp-level-attacker-send-message: true
  84. start-pvp-level-attacker-message: '&bYou can not attack this player because he is below the minimum PvP level'
  85. start-pvp-level-player-send-message: true
  86. start-pvp-level-player-message: '&bYou can not attack this player because you are below the minimum PvP level'
  87.  
  88. # Data config
  89.  
  90. # MySQL settings
  91. mysql: false
  92. mysql-host: host
  93. mysql-port: 3306
  94. mysql-username: username
  95. mysql-password: password
  96. mysql-database: database
  97. # Database table name
  98. database-table: BattleLevelsData
  99.  
  100.  
  101. # Formula config
  102.  
  103.  
  104. # Linear formula: you will always need to earn the same amount of score to level up to the next level
  105. # Current level: floor(x/b)
  106. # Total score required to reach level c: c * b
  107. # x is the player's current score and and b is the score needed to level up to level 1 (base score)
  108. linear-formula-enabled: false
  109. # This is the b value from the previous formula
  110. # If you would leave this value at 5, the progress would look like this:
  111. #
  112. # Total score required to reach level 1: 5
  113. # Total score required to reach level 2: 10
  114. # Total score required to reach level 3: 15
  115. # Total score required to reach level 4: 20
  116. # Total score required to reach level 5: 25
  117. # And so on...
  118. linear-default-level-up: 5
  119.  
  120.  
  121. # Geometric formula: you will always need to earn a bit more score to level up to the next level
  122. # Total score required to reach level c: b * s ^ (c - 1)
  123. # s is the scaling factor and b is the score needed to level up to level 1 (base score)
  124. geometric-formula-enabled: false
  125. # This is the b value from the previous formula
  126. geometric-default-level-up: 2000
  127. # This is the s value from the previous formula
  128. geometric-scaling-factor: 1.2
  129. # If you would leave the the default level-up at 5 and the scaling factor at 1.5, the progress would look like this:
  130. #
  131. # Total score required to reach level 1: 5
  132. # Total score required to reach level 2: 7.5
  133. # Total score required to reach level 3: 11.25
  134. # Total score required to reach level 4: 16.875
  135. # Total score required to reach level 5: 25.3125
  136. # This score would of course be rounded
  137. # And so on...
  138.  
  139.  
  140. # Geometric formula 2: you will always need to earn a bit more score to level up to the next level
  141. # Total score required to reach level 1: (b * 1) + (s * 1)
  142. # Total score required to reach level 2: (b * 2) + (s * 1) + (s * 2)
  143. # Total score required to reach level 3: (b * 3) + (s * 1) + (s * 2) + (s * 3)
  144. # Total score required to reach level 4: (b * 4) + (s * 1) + (s * 2) + (s * 3) + (s * 4)
  145. # s is the scaling factor and b is the score needed to level up to level 1 (base score)
  146. geometric2-formula-enabled: false
  147. # This is the b value from the previous formula
  148. geometric2-default-level-up: 5
  149. # This is the s value from the previous formula
  150. geometric2-extra-factor: 2.5
  151. # This example would require you to get 0.5 more than the previous time to level-up
  152.  
  153. # Custom formula 1: you can set the amount per level
  154. # The number that you need to set is the total score that the player needs to have at the point of leveling up
  155. # You can as much levels as you want
  156. custom1-formula-enabled: true
  157. custom1-formula:
  158. 1: 715
  159. 2: 1404
  160. 3: 2197
  161. 4: 3099
  162. 5: 4116
  163. 6: 5254
  164. 7: 6518
  165. 8: 7916
  166. 9: 9455
  167. 10: 11140
  168. 11: 12980
  169. 12: 14982
  170. 13: 17155
  171. 14: 19506
  172. 15: 22044
  173. 16: 24778
  174. 17: 27719
  175. 18: 30874
  176. 19: 34256
  177. 20: 37873
  178. 21: 41739
  179. 22: 45863
  180. 23: 50258
  181. 24: 54937
  182. 25: 59912
  183. 26: 65198
  184. 27: 70808
  185. 28: 76757
  186. 29: 83060
  187. 30: 89733
  188. 31: 96792
  189. 32: 104255
  190. 33: 112140
  191. 34: 120464
  192. 35: 129248
  193. 36: 138511
  194. 37: 148274
  195. 38: 158558
  196. 39: 169386
  197. 40: 180782
  198. 41: 192769
  199. 42: 205372
  200. 43: 218618
  201. 44: 232534
  202. 45: 247147
  203. 46: 262487
  204. 47: 278584
  205. 48: 295470
  206. 49: 313176
  207. 50: 331737
  208. 51: 351188
  209. 52: 371565
  210. 53: 392905
  211. 54: 415248
  212. 55: 438635
  213. 56: 463107
  214. 57: 488708
  215. 58: 515483
  216. 59: 543479
  217. 60: 572745
  218. 61: 603330
  219. 62: 635287
  220. 63: 668670
  221. 64: 703535
  222. 65: 739939
  223. 66: 777944
  224. 67: 817610
  225. 68: 859003
  226. 69: 902190
  227. 70: 947239
  228. 71: 985222
  229. 72: 1043213
  230. 73: 1094290
  231. 74: 1147531
  232. 75: 1203019
  233. 76: 1260839
  234. 77: 1321080
  235. 78: 1383832
  236. 79: 1449191
  237. 80: 1517254
  238. 81: 1588123
  239. 82: 1661902
  240. 83: 1738700
  241. 84: 1818628
  242. 85: 1901804
  243. 86: 1988348
  244. 87: 2078383
  245. 88: 2172038
  246. 89: 2269446
  247. 90: 2370746
  248. 91: 2476078
  249. 92: 2585591
  250. 93: 2699437
  251. 94: 2817774
  252. 95: 2940763
  253. 96: 3068574
  254. 97: 3201380
  255. 98: 3339363
  256. 99: 3482707
  257. 100: 3631605
  258. 101: 3786257
  259. 102: 3946868
  260. 103: 4113651
  261. 104: 4286825
  262. 105: 4466617
  263. 106: 4653263
  264. 107: 4847005
  265. 108: 5048094
  266. 109: 5256790
  267. 110: 5473359
  268. 111: 5698079
  269. 112: 5931235
  270. 113: 6173124
  271. 114: 6424051
  272. 115: 6684330
  273. 116: 6954289
  274. 117: 7234263
  275. 118: 7524600
  276. 119: 7825660
  277. 120: 8137814
  278. 121: 8461445
  279. 122: 8796949
  280. 123: 9144735
  281. 124: 9505225
  282. 125: 9878856
  283. 126: 10266077
  284. 127: 10667355
  285. 128: 11083169
  286. 129: 11514015
  287. 130: 11960406
  288. 131: 12422870
  289. 132: 12901953
  290. 133: 13398219
  291. 134: 13912250
  292. 135: 14444647
  293. 136: 14996030
  294. 137: 15567039
  295. 138: 16158335
  296. 139: 16770600
  297. 140: 17404539
  298. 141: 18060879
  299. 142: 18740369
  300. 143: 19443784
  301. 144: 20171922
  302. 145: 20925610
  303. 146: 21705698
  304. 147: 22513064
  305. 148: 23348614
  306. 149: 24213284
  307. 150: 25108040
  308. 151: 26033876
  309. 152: 26991820
  310. 153: 27982933
  311. 154: 29008308
  312. 155: 30069074
  313. 156: 31166395
  314. 157: 32301473
  315. 158: 33475546
  316. 159: 34689892
  317. 160: 35945831
  318. 161: 37244723
  319. 162: 38587970
  320. 163: 39977021
  321. 164: 41413367
  322. 165: 42898549
  323. 166: 44434155
  324. 167: 46021823
  325. 168: 47663241
  326. 169: 49360153
  327. 170: 51114355
  328. 171: 52927700
  329. 172: 54802098
  330. 173: 56739521
  331. 174: 58741999
  332. 175: 60811629
  333. 176: 62950571
  334. 177: 65161052
  335. 178: 67445369
  336. 179: 69805891
  337. 180: 72245060
  338. 181: 74765393
  339. 182: 77369485
  340. 183: 80060013
  341. 184: 82839736
  342. 185: 85711496
  343. 186: 88678227
  344. 187: 91742951
  345. 188: 94908782
  346. 189: 98178934
  347. 190: 101556716
  348. 191: 105045542
  349. 192: 108648927
  350. 193: 112370499
  351. 194: 116213994
  352. 195: 120183263
  353. 196: 124282276
  354. 197: 128515125
  355. 198: 132886026
  356. 199: 137399324
  357. 200: 142059499
  358. 201: 146871165
  359. 202: 151839079
  360. 203: 156968143
  361. 204: 162263407
  362. 205: 167730076
  363. 206: 173373513
  364. 207: 179199246
  365. 208: 185212968
  366. 209: 191420548
  367. 210: 197828031
  368. 211: 204441648
  369. 212: 211267815
  370. 213: 218313147
  371. 214: 225584456
  372. 215: 233088763
  373. 216: 240833299
  374. 217: 248825515
  375. 218: 257073086
  376. 219: 265583920
  377. 220: 274366163
  378. 221: 283428208
  379. 222: 292778698
  380. 223: 302426540
  381. 224: 312380906
  382. 225: 322651246
  383. 226: 333247294
  384. 227: 344179074
  385. 228: 355456915
  386. 229: 367091453
  387. 230: 379093644
  388. 231: 391474773
  389. 232: 404246463
  390. 233: 417420684
  391. 234: 431009765
  392. 235: 445026405
  393. 236: 459483680
  394. 237: 474395058
  395. 238: 489774410
  396. 239: 505636019
  397. 240: 521994596
  398. 241: 538865290
  399. 242: 556263701
  400. 243: 574205893
  401. 244: 592708408
  402. 245: 611788283
  403. 246: 631463057
  404. 247: 651750793
  405. 248: 672670090
  406. 249: 694240099
  407. 250: 716480538
  408. 251: 739411712
  409. 252: 763054526
  410. 253: 787430504
  411. 254: 812561807
  412. 255: 838471255
  413. 256: 865182338
  414. 257: 892719243
  415. 258: 921106873
  416. 259: 950370863
  417. 260: 980537606
  418. 261: 1011634276
  419. 262: 1043688844
  420. 263: 1076730108
  421. 264: 1110787714
  422. 265: 1145892181
  423. 266: 1182074924
  424. 267: 1219368286
  425. 268: 1257805556
  426. 269: 1297421005
  427. 270: 1338249909
  428. 271: 1380328580
  429. 272: 1423694396
  430. 273: 1468385830
  431. 274: 1514442483
  432. 275: 1561905119
  433. 276: 1610815692
  434. 277: 1661217386
  435. 278: 1713154650
  436. 279: 1766673232
  437. 280: 1821820216
  438. 281: 1878644065
  439. 282: 1937194654
  440. 283: 1997523316
  441. 284: 2059682884
  442. 285: 2123727728
  443. 286: 2189713807
  444. 287: 2257698708
  445. 288: 2327741699
  446. 289: 2399903769
  447. 290: 2474247688
  448. 291: 2550838047
  449. 292: 2629741319
  450. 293: 2711025908
  451. 294: 2794762204
  452. 295: 2881022646
  453. 296: 2969881771
  454. 297: 3061416282
  455. 298: 3155705107
  456. 299: 3252829461
  457. 300: 3352872914
  458. 301: 3455921459
  459. 302: 3562063576
  460. 303: 3671390308
  461. 304: 3783995334
  462. 305: 3899975040
  463. 306: 4019428601
  464. 307: 4142458058
  465. 308: 4269168399
  466. 309: 4399667646
  467. 310: 4534066937
  468. 311: 4672480620
  469. 312: 4815026337
  470. 313: 4961825128
  471. 314: 5113001517
  472. 315: 5268683618
  473. 316: 5429003235
  474. 317: 5594095966
  475. 318: 5764101310
  476. 319: 5939162783
  477. 320: 6119428024
  478. 321: 6305048919
  479. 322: 6496181718
  480. 323: 6692987158
  481. 324: 6895630594
  482. 325: 7104282125
  483. 326: 7319116732
  484. 327: 7540314414
  485. 328: 7768060333
  486. 329: 8002544957
  487. 330: 8243964211
  488. 331: 8492519633
  489. 332: 8748418528
  490. 333: 9011874139
  491. 334: 9283105807
  492. 335: 9562339148
  493. 336: 9849806227
  494. 337: 10145745744
  495. 338: 10450403216
  496. 339: 10764031174
  497. 340: 11086889360
  498. 341: 11419244928
  499. 342: 11761372655
  500. 343: 12113555154
  501. 344: 12476083098
  502. 345: 12849255443
  503. 346: 13233379665
  504. 347: 13628771997
  505. 348: 14035757676
  506. 349: 14454671198
  507. 350: 14885856576
  508. 351: 15329667610
  509. 352: 15786468158
  510. 353: 16256632424
  511. 354: 16740545247
  512. 355: 17238602395
  513. 356: 17751210879
  514. 357: 18278789263
  515. 358: 18821767991
  516. 359: 19380589721
  517. 360: 19955709664
  518. 361: 20547595938
  519. 362: 21156729932
  520. 363: 21783606675
  521. 364: 22428735216
  522. 365: 23092639024
  523. 366: 23775856384
  524. 367: 24478940816
  525. 368: 25202461501
  526. 369: 25947003716
  527. 370: 26713169290
  528. 371: 27501577061
  529. 372: 28312863354
  530. 373: 29147682471
  531. 374: 30006707191
  532. 375: 30890629287
  533. 376: 31800160056
  534. 377: 32736030865
  535. 378: 33698993711
  536. 379: 34689821795
  537. 380: 35709310116
  538. 381: 36758276077
  539. 382: 37837560111
  540. 383: 38948026321
  541. 384: 40090563143
  542. 385: 41266084019
  543. 386: 42475528099
  544. 387: 43719860953
  545. 388: 45000075308
  546. 389: 46317191805
  547. 390: 47672259771
  548. 391: 49066358023
  549. 392: 50500595687
  550. 393: 51976113034
  551. 394: 53494082358
  552. 395: 55055708853
  553. 396: 56662231538
  554. 397: 58314924188
  555. 398: 60015096305
  556. 399: 61764094109
  557. 400: 63563301554
  558. 401: 65414141378
  559. 402: 67318076181
  560. 403: 69276609525
  561. 404: 71291287076
  562. 405: 73363697765
  563. 406: 75495474995
  564. 407: 77688297865
  565. 408: 79943892446
  566. 409: 82264033070
  567. 410: 84650543678
  568. 411: 87105299185
  569. 412: 89630226898
  570. 413: 92227307960
  571. 414: 94898578841
  572. 415: 97646132873
  573. 416: 100472121815
  574. 417: 103378757475
  575. 418: 106368313367
  576. 419: 109443126415
  577. 420: 112605598710
  578. 421: 115858199303
  579. 422: 119203466061
  580. 423: 122644007565
  581. 424: 126182505058
  582. 425: 129821714458
  583. 426: 133564468413
  584. 427: 137413678419
  585. 428: 141372336997
  586. 429: 145443519924
  587. 430: 149630388531
  588. 431: 153936192059
  589. 432: 158364270085
  590. 433: 162918055007
  591. 434: 167601074605
  592. 435: 172416954662
  593. 436: 177369421670
  594. 437: 182462305597
  595. 438: 187699542737
  596. 439: 193085178633
  597. 440: 198623371089
  598. 441: 204318393252
  599. 442: 210174636784
  600. 443: 216196615126
  601. 444: 222388966840
  602. 445: 228756459049
  603. 446: 235303990971
  604. 447: 242036597548
  605. 448: 248959453172
  606. 449: 256077875515
  607. 450: 263397329464
  608. 451: 270923431161
  609. 452: 278661952154
  610. 453: 286618823661
  611. 454: 294800140952
  612. 455: 303212167846
  613. 456: 311861341335
  614. 457: 320754276330
  615. 458: 329897770541
  616. 459: 339298809482
  617. 460: 348964571623
  618. 461: 358902433670
  619. 462: 369119976000
  620. 463: 379624988234
  621. 464: 390425474971
  622. 465: 401529661666
  623. 466: 412946000681
  624. 467: 424683177490
  625. 468: 436750117060
  626. 469: 449155990397
  627. 470: 461910221279
  628. 471: 475022493165
  629. 472: 488502756296
  630. 473: 502361234985
  631. 474: 516608435108
  632. 475: 531255151794
  633. 476: 546312477331
  634. 477: 561791809279
  635. 478: 577704858807
  636. 479: 594063659253
  637. 480: 610880574922
  638. 481: 628168310116
  639. 482: 645939918412
  640. 483: 664208812191
  641. 484: 682988772423
  642. 485: 702293958723
  643. 486: 722138919673
  644. 487: 742538603426
  645. 488: 763508368598
  646. 489: 785063995452
  647. 490: 807221697390
  648. 491: 829998132750
  649. 492: 853410416925
  650. 493: 877476134813
  651. 494: 902213353597
  652. 495: 927640635875
  653. 496: 953777053145
  654. 497: 980642199656
  655. 498: 1008256206627
  656. 499: 1036639756858
  657. 500: 1065814099732
  658. 501: 1095801066622
  659. 502: 1126623086716
  660. 503: 1158303203270
  661. 504: 1190865090296
  662. 505: 1224333069704
  663. 506: 1258732128908
  664. 507: 1294087938905
  665. 508: 1330426872839
  666. 509: 1367776025076
  667. 510: 1406163230779
  668. 511: 1445617086029
  669. 512: 1486166968470
  670. 513: 1527843058525
  671. 514: 1570676361177
  672. 515: 1614698728343
  673. 516: 1659942881842
  674. 517: 1706442436992
  675. 518: 1754231926837
  676. 519: 1803346827028
  677. 520: 1853823581377
  678. 521: 1905699628095
  679. 522: 1959013426740
  680. 523: 2013804485891
  681. 524: 2070113391565
  682. 525: 2127981836397
  683. 526: 2187452649617
  684. 527: 2248569827815
  685. 528: 2311378566553
  686. 529: 2375925292815
  687. 530: 2442257698334
  688. 531: 2510424773818
  689. 532: 2580476844093
  690. 533: 2652465604190
  691. 534: 2726444156410
  692. 535: 2802467048374
  693. 536: 2880590312107
  694. 537: 2960871504165
  695. 538: 3043369746844
  696. 539: 3128145770495
  697. 540: 3215261956973
  698. 541: 3304782384262
  699. 542: 3396772872287
  700. 543: 3491301029968
  701. 544: 3588436303524
  702. 545: 3688250026090
  703. 546: 3790815468648
  704. 547: 3896207892343
  705. 548: 4004504602188
  706. 549: 4115785002219
  707. 550: 4230130652129
  708. 551: 4347625325414
  709. 552: 4468355069089
  710. 553: 4592408264998
  711. 554: 4719875692770
  712. 555: 4850850594467
  713. 556: 4985428740955
  714. 557: 5123708500068
  715. 558: 5265790906585
  716. 559: 5411779734092
  717. 560: 5561781568763
  718. 561: 5715905885123
  719. 562: 5874265123839
  720. 563: 6036974771589
  721. 564: 6204153443075
  722. 565: 6375922965235
  723. 566: 6552408463701
  724. 567: 6733738451578
  725. 568: 6920044920598
  726. 569: 7111463434710
  727. 570: 7308133226177
  728. 571: 7510197294248
  729. 572: 7717802506460
  730. 573: 7931099702659
  731. 574: 8150243801796
  732. 575: 8375393911584
  733. 576: 8606713441085
  734. 577: 8844370216304
  735. 578: 9088536598881
  736. 579: 9339389607943
  737. 580: 9597111045225
  738. 581: 9861887623526
  739. 582: 10133911098601
  740. 583: 10413378404572
  741. 584: 10700491792964
  742. 585: 10995458975444
  743. 586: 11298493270382
  744. 587: 11609813753314
  745. 588: 11929645411433
  746. 589: 12258219302197
  747. 590: 12595772716175
  748. 591: 12942549344230
  749. 592: 13298799449177
  750. 593: 13664780042009
  751. 594: 14040755062830
  752. 595: 14426995566611
  753. 596: 14823779913909
  754. 597: 15231393966654
  755. 598: 15650131289181
  756. 599: 16080293354597
  757. 600: 16522189756670
  758.  
  759. # Custom formula 2: you can set a custom formula
  760. # This formula is configured via JavaScript so your formula needs to be a valid JavaScript expression
  761. # The level variable represents the level
  762. # Check the internet for basic JavaScript functions like exponents and square roots
  763. custom2-formula-enabled: false
  764. custom2-formula: 'Math.pow(1.5, level) * Math.sqrt(level) * 2;'
  765.  
  766.  
  767.  
  768. # Booster config
  769.  
  770. # Enable boosters
  771. booster-enabled: true
  772. # Enable double reward score when having a booster
  773. booster-double-score: true
  774. # Enable double rewards when having a booster
  775. booster-double-rewards: false
  776. # Maximum normal booster time in hours
  777. max-booster: 24
  778. # Maximum global booster time in hours
  779. max-global-booster: 24
  780. # Global booster message
  781. global-booster-message: '&e{name} activated a global booster for &e{amount} hours'
  782. # Normal booster message
  783. booster-message: '&aYou enabled a booster for &e{amount} hours'
  784. # Message if boosters aren't enabled
  785. booster-not-enabled: '&aBoosters are not enabled'
  786. # Normal booster de-activated
  787. booster-de-activated: '&aThe booster is now deactivated'
  788. # Global booster de-activated
  789. global-booster-de-activated: '&aThe global booster is now deactivated'
  790. # Normal booster maximum message
  791. max-boost-message: '&aThe maximum boost is &b{amount} hours'
  792. # Global booster maximum message
  793. max-global-boost-message: '&aThe maximum global boost is &b{amount} hours'
  794. # No booster activated
  795. no-booster-activated: '&cNo booster activated'
  796. # Normal booster message for the command creator
  797. normal-booster: '{time} hours'
  798. # Global booster message for the command creator
  799. global-booster: '{time} hours global boost'
  800.  
  801.  
  802. # Messages config
  803.  
  804. # Level-up message
  805. levelup-message: '&bYou leveled up to level &e{level}'
  806. # Level-up announcement
  807. levelup-announcement: '&b{name} leveled up to level &e{level}'
  808. # How often it should show the level-up announcement
  809. announce-every-x-level: 50
  810. # Show death message
  811. show-death-message: false
  812. # Death message
  813. # Player variables: {killer_level}, {killer_kills}, {killer_level}, {killer_score}, {killer_killstreak}, {killer_topstreak}, {killer_kdr}
  814. death-message: '&7You were killed by &b{name} &a({killer_level}) &7and you lost &b{amount} EXP'
  815. # Show death broadcast
  816. show-death-broadcast-message: false
  817. # Death broadcast message
  818. # Player variables: {killer_level}, {killer_kills}, {killer_level}, {killer_score}, {killer_killstreak}, {killer_topstreak}, {killer_kdr}
  819. # {death_level}, {death_kills}, {death_level}, {death_score}, {death_killstreak}, {death_topstreak}, {death_kdr}
  820. death-broadcast-message: '&b{death} &a({death_level}) &7was killed by &b{killer} &a({killer_level})'
  821. # Show kill message
  822. show-kill-message: true
  823. # Kill message
  824. # Player variables: {death_level}, {death_kills}, {death_level}, {death_score}, {death_killstreak}, {death_topstreak}, {death_kdr}
  825. kill-message: '&7You killed &b{name} &a({death_level}) &7and you received &b{amount} EXP'
  826. # Player offline message
  827. player-offline: '&cPlayer offline'
  828. # Player does not exist message
  829. not-exist: '&cThat player does not exist'
  830. # Progress bar configuration
  831. progress-bar: '&a{part1}&c{part2}'
  832. progress-bar-segments: 10
  833. progress-bar-segment: '|'
  834. # Database initializing kick message
  835. data-kick: 'Please wait, the database is starting up'
  836. # The format of high numbers
  837. format:
  838. # Commas in the format. (Example: 1234967 becomes 1,234,967 )
  839. # Enabling this will disable the enable-custom feature.
  840. enable-commas: false
  841. # Format high numbers properly. (Example: 9000000 becomes 9M)
  842. # This feature will be disabled if enable-commas is enabled
  843. enable-custom: false
  844. custom:
  845. thousands-format: k
  846. millions-format: M
  847. billions-format: B
  848. trillions-format: T
  849. quadrillions-format: QD
  850. quintillions-format: QT
  851. sextillions-format: SX
  852. septillions-format: SP
  853.  
  854. # Enable a prefix in front of the name
  855. enable-prefix: true
  856. # Prefix
  857. prefix: '&b[&aLvl &e{battlelevels_level}&b]'
  858.  
  859.  
  860.  
  861.  
  862.  
  863. # Bossbar config
  864.  
  865. # Show permanent progress bossbar
  866. permanent-bar: false
  867. # Permanent bossbar message
  868. permanent-bar-message: '&c&l>> &bEXP Until Next Level &c&l<<'
  869. # How long the bossbar is shown after a kill in seconds. Set to zero to disable
  870. bar-showtime: 4
  871. # Enable bossbar on player kill
  872. kill-bar-enabled: false
  873. # Player kill message
  874. # Player variables: {death_level}, {death_kills}, {death_level}, {death_score}, {death_killstreak}, {death_topstreak}, {death_kdr}
  875. bar-message: '&c&l>> &aYou killed &e{died} ({death_level}) &aand earned &b{amount} &apoints &c&l<<'
  876. # Enable bossbar on mob kill
  877. mob-bar-enabled: false
  878. # Mob kill message
  879. mob-bar-message: '&6&l>> &bYou killed a &e{died} &band earned &a{amount} &bpoints &6&l<<'
  880. # Enable level-up bossbar
  881. level-up-bar-enabled: true
  882. # Level-up message
  883. bar-level-up: '&c&l>> &bYou leveled up to level &a{level} &c&l<<'
  884. # Temporary bossbar color
  885. temp-bossbar-color: BLUE
  886. # Permanent bossbar color
  887. permanent-bossbar-color: GREEN
  888. # Level-up bossbar color
  889. level-up-bossbar-color: YELLOW
  890. # Temporary bossbar style
  891. temp-bossbar-style: SEGMENTED_20
  892. # Permanent bossbar style
  893. permanent-bossbar-style: SEGMENTED_20
  894. # Level-up bossbar style
  895. level-up-bossbar-style: SEGMENTED_20
  896.  
  897.  
  898. # Zone settings
  899.  
  900. # Enable ranged zones
  901. ranged-zones: false
  902. # Enable level-zones
  903. level-zones: false
  904. # Ranged zone message
  905. ranged-message: '&aYou can''t hit &b{hit} &abecause the range in this zone is &e{range}'
  906. # Level zone message
  907. level-message: '&aYou can''t enter this zone &abecause the required level is &b{level}'
  908. # Enable global ranged zones
  909. global-ranged-zones: false
  910. # Global ranged zones value
  911. global-ranged-zones-range: 10
  912. # Global ranged zone message
  913. global-ranged-message: '&aYou can''t hit &b{hit} &abecause the range is &e{range}'
  914. # Max level zones
  915. max-zones: false
  916. # Max level zones message
  917. max-message: '&aYou can''t enter this zone &abecause the maximum level is &b{level}'
  918.  
  919.  
  920. # Rewards config
  921.  
  922.  
  923. # Heal
  924. heal: false
  925. # Percentage chance that the item will be given
  926. item-give-percentage: 0
  927. # Item ID. Set to zero to disable.
  928. item-id: '0'
  929. # Item amount
  930. item-amount: 0
  931. # Money amount
  932. money-amount: 0
  933. # XP amount
  934. xp-amount: 0
  935. # Show reward message
  936. show-reward-message: true
  937. # Reward message
  938. reward-message: '&bYou received one extra heart!'
  939.  
  940.  
  941. # Level-up config
  942.  
  943. # Execute commands every time a player levels up
  944. every-level-commands: true
  945. # If the previous option is enabled, here are the commands
  946. commands-every-level:
  947. - /mh add {name} 1
  948. # How often it should should show firework
  949. firework-every-x-level: 1
  950. # Level-up sound
  951. level-up-sound: entity.player.levelup
  952.  
  953. # Level-up title. Variables are {level} and {name}
  954. enable-level-up-title: true
  955. # Message
  956. level-up-title: '&eYou are now level &a&l{level}'
  957. # Fade in time in ticks
  958. level-up-title-fade-in: 10
  959. # Fade out time in ticks
  960. level-up-title-fade-out: 10
  961. # Stay time in ticks
  962. level-up-title-stay: 100
  963.  
  964. # Level-up subtitle. Variables are {level} and {name}
  965. enable-level-up-subtitle: false
  966. # Message
  967. level-up-subtitle: '&ebCongratulations!'
  968. # Fade in time in ticks
  969. level-up-subtitle-fade-in: 10
  970. # Fade out time in ticks
  971. level-up-subtitle-fade-out: 10
  972. # Stay time in ticks
  973. level-up-subtitle-stay: 100
  974.  
  975.  
  976.  
  977. # Anti grinder config
  978. # This allows you to stop people from killing the same person over and over to get more points
  979. # This examples makes it so that you can only earn points for the first 20 kills on the same person during 3 minutes (180 seconds)
  980. # Enabled anti grinder or not
  981. antigrinder-enabled: false
  982. # Interval in seconds
  983. antigrinder-interval: 180
  984. # Max kill
  985. antigrinder-max: 20
  986. # Message
  987. antigrinder-message: '&bYou killed {victim} too much and you did not earn points. Please wait before killing this person again.'
  988. send-antigrinder-message: true
  989.  
  990.  
  991. # Custom command config
  992. # Variables:
  993. commands:
  994. 'level':
  995. - ' &a&l<&a&m===&a&l> &cReport for &6{name} &a&l<&a&m====&a&l>'
  996. - ' &bEXP&a: &e{score} {coin}'
  997. - ' &bLevel&a: &e{level}'
  998. - ' &bKills&a: &e{kills}'
  999. - ' &bDeaths&a: &e{deaths}'
  1000. - ' &bMultiplier&a: &e{multiplier} &e{coin}'
  1001. - ' &bKillstreak&a: &e{killstreak} kills'
  1002. - ' &bHighest Killstreak&a: &e{topstreak} kills'
  1003. - ' &bEXP needed to level-up&a: &e{neededfornext} {coin}'
  1004. - ' &bProgress&a: {progressbar}'
  1005. - ' &bBooster&a: &e{boostertime}'
  1006. - ' &bProgress&a: &e{progress}%'
  1007. - ' &bKDR: &e{kdr}'
  1008. 'topstats':
  1009. - ' &aTop 10 Levels'
  1010. - ' &e1: &a{top_level_1_name} - &elevel &a{top_level_1_value}'
  1011. - ' &e2: &a{top_level_2_name} - &elevel &a{top_level_2_value}'
  1012. - ' &e3: &a{top_level_3_name} - &elevel &a{top_level_3_value}'
  1013. - ' &e4: &a{top_level_4_name} - &elevel &a{top_level_4_value}'
  1014. - ' &e5: &a{top_level_5_name} - &elevel &a{top_level_5_value}'
  1015. - ' &e6: &a{top_level_6_name} - &elevel &a{top_level_6_value}'
  1016. - ' &e7: &a{top_level_7_name} - &elevel &a{top_level_7_value}'
  1017. - ' &e8: &a{top_level_8_name} - &elevel &a{top_level_8_value}'
  1018. - ' &e9: &a{top_level_9_name} - &elevel &a{top_level_9_value}'
  1019. - ' &e10: &a{top_level_10_name} - &elevel &a{top_level_10_value}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement