Thread: Proc Items
View Single Post
  #5  
Old 10-30-2004, 06:24 AM
ajb20
Hill Giant
 
Join Date: Jul 2004
Posts: 106
Default

here it is, this will fix procs and infinate charges

Code:
update items set charges = -1 where charges = 0;
update items set maxcharges = -1 where maxcharges = 0;
update items set SpellCharges = 1 where SpellCharges = 0;
Works perfectly for me, have yet to have an item charge problem since updating this.
Reply With Quote