Guest User

Untitled

a guest
Jun 5th, 2021
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1.  
  2.  
  3. package net.sf.l2j.gameserver.model.base;
  4.  
  5. public class Experience
  6. {
  7. public static final long LEVEL[] =
  8. {
  9. -1L, // level 0 (unreachable)
  10. 0L,
  11. 500L,
  12. 1500L,
  13. 3750L,
  14. 7875L,
  15. 14175L,
  16. 22680L,
  17. 32886L,
  18. 44396L,
  19. 57715L,
  20. 72144L,
  21. 90180L,
  22. 112725L,
  23. 140906L,
  24. 176132L,
  25. 220165L,
  26. 275207L,
  27. 344008L,
  28. 430010L,
  29. 537513L,
  30. 671891L,
  31. 839864L,
  32. 1049830L,
  33. 1312287L,
  34. 1640359L,
  35. 2050449L,
  36. 2563061L,
  37. 3203826L,
  38. 3902260L,
  39. 4663553L,
  40. 5493363L,
  41. 6397855L,
  42. 7383752L,
  43. 8458379L,
  44. 9629723L,
  45. 10906488L,
  46. 12298162L,
  47. 13815086L,
  48. 15468534L,
  49. 17270791L,
  50. 19235252L,
  51. 21376515L,
  52. 23710491L,
  53. 26254525L,
  54. 29027522L,
  55. 32050088L,
  56. 35344686L,
  57. 38935798L,
  58. 42850109L,
  59. 47116709L,
  60. 51767302L,
  61. 56836449L,
  62. 62361819L,
  63. 68384473L,
  64. 74949165L,
  65. 82104680L,
  66. 89904191L,
  67. 98405658L,
  68. 107672256L,
  69. 117772849L,
  70. 128782495L,
  71. 140783010L,
  72. 153863570L,
  73. 168121381L,
  74. 183662396L,
  75. 200602101L,
  76. 219066380L,
  77. 239192444L,
  78. 261129853L,
  79. 285041630L,
  80. 311105466L,
  81. 339515048L,
  82. 370481492L,
  83. 404234916L,
  84. 441026148L,
  85. 481128591L,
  86. 524840254L,
  87. 572485967L,
  88. 624419793L,
  89. 681027665L,
  90. 742730244L,
  91. 809986056L, //level81
  92. 883294891L,
  93. 963201521L,
  94. 1050299747L,
  95. 1145236814L,
  96. 1248718217L
  97.  
  98. };
  99.  
  100. /**
  101. * This is the first UNREACHABLE level.<BR>
  102. * ex: If you want a max at 80 & 99.99%, you have to put 81.<BR>
  103. * <BR>
  104. */
  105. public static final byte MAX_LEVEL = 86;
  106.  
  107. public static long getExpForLevel(int level)
  108. {
  109. return LEVEL[level];
  110. }
  111. }
  112.  
  113.  
Advertisement
Add Comment
Please, Sign In to add comment