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

DoTeleportThing(getCidFromPos())

dodu3112

New Member
Joined
Mar 9, 2008
Messages
19
Reaction score
0
Is it Possible to get a cid from position?
I would like to do

cid=getCidFromPos({x=1,y=1,z=1})
doTeleportThing(cid,toPos)

or similar
 
PHP:
local pos = {x=, y=, z=, stackpos=253} -- pos here !!! stackpos MUSt be 253!

function onUse(cid, ...) -- or w/e u use
    local thing = getThingfromPos(pos)
    if(isPlayer(thing.uid) == TRUE) then
        doTeleportThing(thing.uid, tppos)
    end
end
 
Back
Top