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

Compiling Check players free slots - exists?

legolas23

New Member
Joined
Jan 8, 2009
Messages
537
Reaction score
3
Hiho

Is there any function in tfs 0.3.5pl1 which check players free slots?

Rep++ for help

Regards,
Legolas23
 
Well, if you only want to check the main backpack, you could use this:
Lua:
...
local bp = getPlayerSlotItem(cid, CONST_SLOT_BACKPACK).uid
local freeSlotsInBp = math.max(0, getContainerCap(bp) - getContainerSize(bp))
...
Otherwise there isn't any other option than to loop through all of them. It shouldn't cause any lag in practice.
 
Back
Top