Quote:
4. Increased the base agro. Mobs start off more aggressive:
Code:
UPDATE faction_list SET base=base * 4;
|
Ehh, not quite. This will raise or lower the faction by a factor of 4. I think what you wanted is:
Code:
UPDATE faction_list SET base=base * 4 WHERE base < 0;
or
Code:
UPDATE faction_list SET base=base - (base * 4);