How can i delete the costs of the item in the vendors ?
How can i delete the costs of the item in the vendors ?
Last edited by stoneharry; 02-28-2011 at 03:14 AM.
UPDATE `vendors` SET `item_extendedcost` = '0';
UPDATE `items` SET `vendor_sell_price` = '0';
Adjust column names to correct values + execute into database.
So how can i do it if i want only that the season 2 vendors items sellprice is 0? i hope u understand
Last edited by crapz; 02-28-2011 at 07:24 AM.
UPDATE `items` SET `item_vendor_sell` = '0' WHERE `entry` IN (SELECT `itemid` FROM `vendors` WHERE `entry` = 'vendor2ID');
Adjust to your needs (and with item_extended cost as well):
UPDATE `vendors` SET `item_extendedcost` WHERE `npc` = 'vendor2ID';