$maxmp= ($jointime * $level) / 5;
max mp equals the (product of the total days since registered and you current level) divded by 5
$mp= $post[posts] / 3;
current mp equals total posts divided by 3
if ($mp >= $maxmp) {
$mp = $maxmp;
}
$maxmp = floor ($maxmp);
if current mp turns out to be greater than or equal to max mp, then the current mp will be reduced to equal the max mp.
$mp = floor ($mp);
now, round down the current mp to the nearest decimal
heres how his hack is setup, if anyone knows how to make it this will help