local teleportpos = {x=70,y=70,z=7} -- where you need to be to be tped
local teleporter = {x=80,y=80,z=7} -- where you will spawn after command
function onSay(cid, item, fromPosition, itemEx, toPosition)
doRelocate(teleportpos, teleporter)
doSendMagicEffect(getPlayerPosition(cid), 2)
end
return...