• 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!

Delete items from EVERYWHERE

hxzr

New Member
Joined
Feb 4, 2010
Messages
156
Reaction score
0
Is it possible to delete items of one kind from every player? To make sure I can edit it without someone secretly abusing it..

thru MYSQL? (tfs 036)
 
Last edited:
Am I missing out something obvious or what's up? (i assumed 2500 is the itemID

Code:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE itemtype = 2500' at line 1
 
ok try 3 queries then:
PHP:
DELETE FROM `player_depotitems` WHERE `itemtype` = 2500;
DELETE FROM `player_items` WHERE `itemtype` = 2500;
DELETE FROM `tile_items` WHERE `itemtype` = 2500;
 
Back
Top