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

Simple Tp Floor?

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
Can some make a simple tp title for me when u stepin to it u will get tp to a pos .. movements
 
ehm i thought u scripted
XML:
<movevent type="StepIn" uniqueid="9777" event="script" value="tp.lua"/>

LUA:
local newpos = {x=1234, y=1234, z=7}

function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
    if isPlayer(cid) then
        doSendMagicEffect(position, CONST_ME_TELEPORT)
        doTeleportThing(cid, newpos) 
        doSendMagicEffect(newpos, CONST_ME_TELEPORT)
    end
    return true
end
 
Last edited:
Back
Top