Quote:
Originally Posted by mudik
You Can delete them from smc
|
Right, but i need a query :(
Quote:
Originally Posted by Mr.Awesome1337
Items are not completely deleted from the DB, when you set an item free, the ID will remain but it'll be available to use again.
You can use this query:
Update _ItemPool set InUse = 0 where ItemID = (Select ItemID from _Inventory where Slot = 13 and CharID = (Select CharID from _Char where CharName16 = 'CharName'))
Update _Inventory Set ItemID = 0 where Slot = 13 and CharID = (Select CharID from _Char where CharName16 = 'CharName')
|
with that query, i am disabling the item in slot 13
i need a query that delete the item from a specific char inventory with two options
-- CharName
-- ItemCode
execute = item deleted from that specific char inventory