can someone give me a sql code that makes x2 what ever i want ?
lets say i want all items in game to have x2 stamina
or x5 strenght
Dose a sql code like that exist ?
Help plzz.....
can someone give me a sql code that makes x2 what ever i want ?
lets say i want all items in game to have x2 stamina
or x5 strenght
Dose a sql code like that exist ?
Help plzz.....
I think it would be something like
Now, idk what stattype strength/stamina etc is But find out what the type means and change the 2 at value2 to the type's numberCode:UPDATE items SET stat_value2 = 5
tryif the one above doesnt workCode:UPDATE `items` SET `stat_value2`='5'
Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>
If you want all items to have twice the stats, just do
UPDATE items SET stat_value1 = stat_value1*2, stat_value2 = stat_value2*2, ... ;