Quote:
You can now update all users' stats at one time from the admin control panel. You can also update one user's stats from the edit users menu. NOTE: If you have changed the update stats code in member.php, then you must also change the update stats code in rpgadmin.php in the same way, or else you could get unexpected results.
|
What do you mean change the update stats code in rpgadmin.php? You mean this code?
Code:
$maxhpupdate = ( $level * 75 * $hpmulti) + $hpmodifier;
$maxhpupdate= floor ($maxhpupdate);
$maxmaupdate = $mamodifier + ($jointime * $level) / 5;
$maxmaupdate = floor ($maxmaupdate);
$maxppupdate = $ppmodifier + ($jointime * $level) / 3;
$maxppupdate = floor ($maxppupdate);
???