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

DoPlayerAddDepotItem?

something like this?
LUA:
db.executeQuery("INSERT INTO `player_depotiems` VALUES (".. getPlayerGUID(player) ..", 1, 0, 0, itemid[2], 1)")
 
Last edited:
Add to your 050-function

LUA:
function doPlayerAddDepotItem(cid, itemid, amount)
    db.executeQuery("INSERT INTO `player_depotiems` VALUES (".. getPlayerGUID(player) ..", 1, 0, 0, itemid[2], 1)")
end

I didn't tested
 
Back
Top