Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.sf.l2j.gameserver.model.base;
- public class Experience
- {
- public static final long LEVEL[] =
- {
- -1L, // level 0 (unreachable)
- 0L,
- 500L,
- 1500L,
- 3750L,
- 7875L,
- 14175L,
- 22680L,
- 32886L,
- 44396L,
- 57715L,
- 72144L,
- 90180L,
- 112725L,
- 140906L,
- 176132L,
- 220165L,
- 275207L,
- 344008L,
- 430010L,
- 537513L,
- 671891L,
- 839864L,
- 1049830L,
- 1312287L,
- 1640359L,
- 2050449L,
- 2563061L,
- 3203826L,
- 3902260L,
- 4663553L,
- 5493363L,
- 6397855L,
- 7383752L,
- 8458379L,
- 9629723L,
- 10906488L,
- 12298162L,
- 13815086L,
- 15468534L,
- 17270791L,
- 19235252L,
- 21376515L,
- 23710491L,
- 26254525L,
- 29027522L,
- 32050088L,
- 35344686L,
- 38935798L,
- 42850109L,
- 47116709L,
- 51767302L,
- 56836449L,
- 62361819L,
- 68384473L,
- 74949165L,
- 82104680L,
- 89904191L,
- 98405658L,
- 107672256L,
- 117772849L,
- 128782495L,
- 140783010L,
- 153863570L,
- 168121381L,
- 183662396L,
- 200602101L,
- 219066380L,
- 239192444L,
- 261129853L,
- 285041630L,
- 311105466L,
- 339515048L,
- 370481492L,
- 404234916L,
- 441026148L,
- 481128591L,
- 524840254L,
- 572485967L,
- 624419793L,
- 681027665L,
- 742730244L,
- 809986056L, //level81
- 883294891L,
- 963201521L,
- 1050299747L,
- 1145236814L,
- 1248718217L
- };
- /**
- * This is the first UNREACHABLE level.<BR>
- * ex: If you want a max at 80 & 99.99%, you have to put 81.<BR>
- * <BR>
- */
- public static final byte MAX_LEVEL = 86;
- public static long getExpForLevel(int level)
- {
- return LEVEL[level];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment