Say x word and get teleported to xxx / xxx / xxx
the script im using atm is
TFS 0.2
the script im using atm is
Code:
local standPos = {x=1303,y=828,z=7}
local newPos = {x=1298,y=828,z=7}
function onSay(cid, param)
if comparePos(getPlayerPosition(cid), standPos) then
doSendMagicEffect(getPlayerPosition(cid), 2)
doTeleportThing(cid, newPos)
doSendMagicEffect(newPos, 10)
end
return 1
end
TFS 0.2
Last edited: