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

I need help with Experience table (Znote AAC)

Tyson12302

New Member
Joined
Aug 6, 2014
Messages
264
Reaction score
4
Is there a Experience.php that is fully made for Znote AAC? Because the layout i got didn't have any. I need this asap. Thanks
 
I have two options for you:
Copy the already existing one over at Tibia.com
or
Create your own.
Here's the formula:
(50*x*x*x) - (150*x*x) + (400*x) / 3
where x = level -1
So the experience for lvl 100 is calculated as such:
((50*99*99*99) - (150*99*99) + (400*99)) / 3
(48514950 - 1470150 + 39600) / 3 = 15694800

If you know your PHP this will be easy..


Incase you chose the first option, here's the code:
http://pastebin.com/DhpZWH1d
 
Back
Top