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

C++ Formula for getExpForLevel

S

Shadow_

Guest
i have been trying to find a formula makes max level 1.1m or anyclose but it ended with this formula
Code:
            return ((27ULL * lv * lv * lv) - (100ULL * lv * lv) + (250ULL * lv)) / 6ULL;
when the player is level 880750 he doesn't receive any exp but if i increased his level through database to 880751 he can level up till 1.196m << the correct output iam waiting for, can anybody edit this formula or even change it to a formula which maximum be 1.1m without reaching the maximum in the middle
for more information about how formulas works:
 
Back
Top