Need help - Level/Job exp requiered

07/28/2015 12:24 Pakrologie#1
Hi!

I wonder if someone was in possession a table of the required exp after each level. (Up to level 99 it goes without saying), I already have the exp of each monster and I would like to continue my emulator on information as Official.

Thank you for your future answers
07/29/2015 13:32 Kubixiorek#2
07/29/2015 16:11 Pakrologie#3
Thank you very much
07/29/2015 16:24 FI0w#4
Joblevel is calculated o: but idkn how but you need the Level for it
07/29/2015 16:47 BladeTiger12#5
Lol :D Nice one^^

else if (i == 98 && i <= 99) Tot_Exp_Points = 2029047116;
07/29/2015 17:33 *-OMG-*#6
Value is 98, how could it be bigger ? hauhau..
However, a simple algorithm would be better and i tought the table is wrong.
07/29/2015 17:35 FI0w#7
yes the table is wrong :D
07/29/2015 19:13 Kubixiorek#8
I tried to help. Sorry lol
07/29/2015 19:18 *-OMG-*#9
Quote:
Originally Posted by Kubixiorek View Post
I tried to help. Sorry lol
The information is always welcome but only if true!
Your isn't an help, your is a piece of code that will confuse the community.
11/05/2015 13:02 0Lucifer0#10
I Up this thread in order to tell you that after search the algorithm from lvl 1 to 59 is :
Quote:
int[] u = new int[100];
int[] v = new int[101];
double var = 1;
v[0] = 540;
v[1] = 960;
u[0] = 300;
for (int i = 2; i < v.Length; i++)
{
v[i] = v[i - 1] + 420 + 120 * (i - 1);
}
for (int i = 1; i < u.Length; i++)
{
if (i == 14) var = 6 / 3;
if (i == 39) var = (double)(19 / (double)3);
if (i == 79) var = (double)(250 / (double)3);
u[i] = Convert.ToInt32(u[i - 1] + var * v[i - 1]);
//Console.WriteLine("lvl " + (i) + ":" + u[i - 1]);
}
i'm trying to get 80 to 99 but it's a bit tricky so if you wan't to help me to find others i'm searching for any packet lev from a char with lvl in
[82] [85;89] {91} [93;99]