Our Scripts Vault contains many game scripts that you can use to create your own game!
experience = 100 * (pow(1.4,level-1)-1)
pow(pow(1.03,level)+1.3,2)*100
* Attack -> Lvl 5* Defend -> Lvl 3* Mine -> Lvl 7* Smith -> Lvl 1
Exp gained = (1 + (10 - Skill lvl))^2*2
function NumTries($x){ $x = pow((2+(pow(1.005,$x)*($x+2)),2); return $x;}function ExpPerTry($x){ $x = 30 / (30+$x) * 20; return $x;}function ExpNeededToLevel($x){ $x = NumTries($x) * ExpPerTry($x); return $x;}
you could try using a modified and re-normalised gaussian for the max/min window
Code: [Select]experience = 100 * (pow(1.4,level-1)-1)Code: [Select]pow(pow(1.03,level)+1.3,2)*100
could you explain what all of that is calculating please. the 'pow' , 1.03,level , *100.