Mad Walker Posted August 26, 2012 Posted August 26, 2012 Does anyone know how to wipe a specific item to all players without disabling the item? For example I want to wipe gtb from all players but I don't have to disable it from item_db Quote
RCharles Posted August 26, 2012 Posted August 26, 2012 (edited) Do it in sql by querying. SELECT <column_name> FROM inventory WHERE <cloumn_name> = '<item_id_number>; this will display all that has eg. item no. 7777 in the inventory to delete: DELETE FROM inventory WHERE <column_name> = <item_ID>; Edited August 26, 2012 by RCharles Quote
Emistry Posted August 26, 2012 Posted August 26, 2012 run this in your SQL ... make sure you do backup before use this ... shutdown the server and run the query .... DELETE FROM `cart_inventory` WHERE `nameid`=4128 DELETE FROM `inventory` WHERE `nameid`=4128 DELETE FROM `mail` WHERE `nameid`=4128 DELETE FROM `storage` WHERE `nameid`=4128 Quote
EvilPuncker Posted August 26, 2012 Posted August 26, 2012 UPDATE `inventory` SET card0=0 WHERE card0 = 4430; UPDATE `inventory` SET card1=0 WHERE card1 = 4430; UPDATE `inventory` SET card2=0 WHERE card2 = 4430; UPDATE `inventory` SET card3=0 WHERE card3 = 4430; Quote
Question
Mad Walker
Does anyone know how to wipe a specific item to all players without disabling the item?
For example I want to wipe gtb from all players but I don't have to disable it from item_db
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.