The Dink Network

Reply to Re: Experience and Level Up stuff

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
December 29th 2005, 12:23 PM
custom_magicman.gif
magicman
Peasant They/Them Netherlands duck
Mmmm, pizza. 
The formula (hard coded, not changeable):

&level = level Dink is currently on

The total experience needed to advance a level is.

&total_exp_needed = &level * &level * 100;

Substracting the amount of experience from that is what you still need.

&exp_needed = &level * &level * 100 - &exp;

So for example, if you are level 2 and have 134 exp already, the status bar will show this: 134/400

&total_exp_needed will be 400
&exp_needed will be 266, the amount you'll need before another levelraise occurs.