View Single Post
  #2  
Old 10-27-2009, 06:17 PM
ChaosSlayerZ's Avatar
ChaosSlayerZ
Demi-God
 
Join Date: Mar 2009
Location: Umm
Posts: 1,492
Default

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;
Reply With Quote