if you want to increase say all weapons damage by 50% you can do something like this:
update items set damage=damage*1.5 where damage>0;
or increase all armor by 100%:
update items set AC=AC*2 where AC>0;
increasing hp and ac for all pets:
update npc_types set hp=hp*2, ac=ac*1.5 where id<1000;
|