• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling Experience needed for levels not working

Ezzz

Developer of Nostalrius and The Violet Project
Joined
Feb 26, 2010
Messages
1,889
Solutions
3
Reaction score
794
Location
Spain, Europe
Hello,

it doesnt matter the value i put, the experience needed never changes...I tryed everything, default:

Code:
return ((50ULL * lv * lv * lv) - (150ULL * lv * lv) + (400ULL * lv)) / 3ULL;

Mines

Code:
return (lv * 9 * 9 *9 *9 *9 *9 *9 *9 *9 *9 *9 *9 *9 * 8 *7 *7 *4 *5 *6 *3 *3 *5 *4);

I tryed this too:

Code:
return (lv * 99999999999999999999999999999999999999999999999999999999999999999999999999);

And it's still the same exp for level 2, 116 ...
So i dont get it!, can anyone explain me this?. Thanks.

Am using TFS 0.3.7pl1.

Also i already tryed this:

Code:
if (lv == 1){
 return 1;
}
if (lv >= 2){
 return 1;
}

And it's always returning the same...Exp for lvl 2 is 116...
 
Last edited:
Back
Top