Warning: Division by zero in MY_PATH_TO_ROOT\roster\lib\char.php on line 1503
Ive attached a screenshot.
Thought id best report it before he uploads data again and values change
function printXP()
{
list($current, $max) =
explode( ':', $this->data['exp'] );
$perc='';
if ($current > 0)
{
$perc = round(($current / $max)* 248, 1);
}
return $perc;
}
function printXP()
{
list($current, $max) =
explode( ':', $this->data['exp'] );
if ($max = 0)
{
$max = 1;
}
$perc='';
if ($current > 0)
{
$perc = round(($current / $max)* 248, 1);
}
return $perc;
}
Return to General Support & Feedback
Users browsing this forum: No registered users and 1 guest