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

Item count for stack on the ground?

LUA:
local pos = {x = x, y = y, z = z, stackpos = 255} -- stackpos = 255- top thing (movable item or creature),  stackpos = 254- magic field  stackpos = 253- top creature
local thing = getThingFromPos(pos)
local count

if thing > 0 then ---make sure it found something
    count = thing.type
end
 
Back
Top