I Need the SQL That makes ALL Items on the server cost 10g and Sell Price to 5g
I Know its something like:
update `items` set buyprice= 'xx' set sellprice='xx'
And if there is anything that makes every Bind on Pickup/Equip Become <No Binding>
I Need the SQL That makes ALL Items on the server cost 10g and Sell Price to 5g
I Know its something like:
update `items` set buyprice= 'xx' set sellprice='xx'
And if there is anything that makes every Bind on Pickup/Equip Become <No Binding>
Last edited by Lilltimmy; 06-19-2008 at 01:51 PM.
Its something likebrb. ill go find outCode:UPDATE `items` SET `buyprice`='10000',`sellprice`='5000' WHERE (`entry`='between 1 - 999999')
EDIT: just tried that one, it ran. idk if it works ingame. test it and report back
Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>
UPDATE items SET buyprice = '10', sellprice = '5';
Updated and fixed ;P
Last edited by Power of Illuminati; 06-19-2008 at 01:57 PM.
I dont think that'll work illumi![]()
Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>
Tried all of them nothing happened, Modified them a lil' bit heres the Real One that WORKS:
UPDATE `items` SET `buyprice`='10000',`sellprice`='5000';
Glad you found out about your problem![]()
Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>