Issy_X:
1. Thanks for finding that one. It will be fixed in the next version.
2. That bug has been reported and will be fixed in the next version.
3. In the Itemshop Options menu, did you choose to use Lesane's Store hack for money/points? If not, what are your itemshop options set to?
4. Still looking in to that one.
rrnolan:
Open battleupdate.php, find:
PHP Code:
$damagedone = floor(($weapon[damage] + $regattbonus) * $uelemod * $anger + $bonusattack - $armor - $regdefminus);
After, it, add:
PHP Code:
if($damagedone > X) {
$damagedone = Y;
}
Replace X with the amount you don't want it to go over, and replace Y with the amount you want it to be if it goes over. If you only want it to apply to you, then add the following instead:
PHP Code:
if($damagedone > X && $bbuserinfo[userid] == Z) {
$damagedone = Y;
}
Replace Z with your userid and X/Y with the previous values as mentioned above.
I am still working on the formulas some more.