• 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 sql how change one item for other item id?

beenii

Well-Known Member
Joined
Jul 26, 2010
Messages
586
Solutions
1
Reaction score
58
sql how change one itemid for other item id? in my data base?

any have comand? thanks for read me
 
Code:
UPDATE `player_items` SET `itemtype` = '1988' WHERE `itemtype` = '10522'; 
UPDATE `player_depotitems` SET `itemtype` = '1988' WHERE `itemtype` = '10522'; 
UPDATE `tile_items` SET `itemtype` = '1988' WHERE `itemtype` = '10522';

solved :p

anyone helpme :c xD
 
Last edited by a moderator:
Back
Top