• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Remove items SQL query

xkevinz

Member
Joined
Aug 15, 2007
Messages
358
Reaction score
5
could someone give me the sql query to remove a certain item out of everyone player? please and thank you, rep++ to whoever who helps me :)
 
Delete Tileitems (Houses):
Code:
DELETE FROM tile_items WHERE itemtype = ID-ITEM;
Delete Players items:
Code:
DELETE FROM player_items WHERE itemtype = ID-ITEM;
Delete Player Depot Items:
Code:
DELETE FROM player_depotitems WHERE itemtype = ID-ITEM;

:)
 
Back
Top