View Single Post
  #3  
Old 06-17-2004, 09:27 AM
govtcheeze
Hill Giant
 
Join Date: Mar 2004
Location: South Florida
Posts: 247
Default

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);
__________________
GovtCheeze, Welfare Warrior
"Listen, here's the thing. If you can't spot the sucker in the first half hour at the table, then you ARE the sucker." -- Mike McDermott, Rounders

Developer of the original (circa 2004):
Loots v2.0, bitch!
Faction v1.0, bitch!
Magelo-like clone v0.3, bitch!
Zone geometry and spawn/path viewer, bitch!
Reply With Quote