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

Search In Phpmyadmin

Joined
Sep 29, 2009
Messages
224
Reaction score
0
How I Search In Phpmyadmin.
Ex: Search Item Id 1000,2000,3000,4000 In player_depot, player_items, tiles...
 
Items on the player is:
Code:
SELECT * FROM `player_items` WHERE itemtype = '1000'

Items in their depot is:
Code:
SELECT * FROM `player_depotitems` WHERE itemtype = '1000'
 
Back
Top