Bitsy,
I think I may have found a slight mistake in thh souce code in member.php for the stat updater
Code:
if ($hpmulti > 7.5)
$hpmulti = 3;
if ($hpmulti > 2.5)
$hpmulti = 1.5;
if ($hpmulti < 1)
$hpmulti = 1;
I think the last two need "else" statements:
Code:
if ($hpmulti > 7.5)
$hpmulti = 3;
elseif ($hpmulti > 2.5)
$hpmulti = 1.5;
elseif ($hpmulti < 1)
$hpmulti = 1;
The elseif probably isn't NECISARY on the last one.
ALSO, I seem to be having a problem with the item types in the admin panel. I recently added a new item Category. now, when I go to uncheck some of the boxes I checked in the "item type" page and press submit, it reloads the page as if i made no changes at all. any suggestions?
The problem is with the "two handed weapons" category. There are two specific columns that are being stubborn and that I can't uncheck. Every other column and item category checks and unchecks fine...