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

SQL Database ( Command )

Dalale

GX
Joined
Jun 13, 2008
Messages
718
Reaction score
2
Location
Sweden
Hello!
Im searching after a command you can execute on the database.

This is what its going to do.


IF player have item id 2285 he will get item id 2276 instead and remove 2285..


hope somone can help me.:thumbup:
 
that should be good backup database before doing it :P


PHP:
UPDATE player_items SET itemtype = 2276 WHERE itemtype = 2285;
UPDATE tile_items SET itemtype = 2276 WHERE itemtype = 2285;
UPDATE player_depotitems SET itemtype = 2276 WHERE itemtype = 2285;

rep++?
 
Back
Top