• 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!

Changing Experience to next level.

Sick Puppies

New Member
Joined
Jan 14, 2011
Messages
15
Reaction score
0
I was wondering if there was a way that you could change the experience to the next level.

Example

level 8 --> 4200 exp
changed to
level 8 --> 7000 exp

of course it wont be changed to this, just an example.

please help with tips or a direction guide on how to change them :)
 
Edit this function:
[cpp] static uint64_t getExpForLevel(uint32_t lv)
{
lv--;
return ((50ULL * lv * lv * lv) - (150ULL * lv * lv) + (400ULL * lv)) / 3ULL;
}[/cpp]
 
Back
Top