Hey, I would like to scale the damage and armor of all items, has someone a clue, how to do that?
I mean because
will not work, due to the missing three columns..
I mean because
Code:
UPDATE item_template SET armor = (armor *1.10) WHERE itemlevel = @itemlevel,
UPDATE item_template SET dmg_min1 = (dmg_min1 * 1.10) WHERE class = 2 AND itemlevel = @itemlevel,
UPDATE item_template SET dmg_max1 = (dmg_max1 * 1.10) WHERE class = 2 AND itemlevel = @itemlevel;