local position = {x=100,y=100,z=7}
local teleport = {x=100,y=100,z=7}
function onSay(cid, words, param, channel)
local p = getThingPos(cid)
if p.x ~= position.x or p.y ~= position.y or p.z ~= position.z then
return true
end
doTeleportThing(cid, teleport)
doSendMagicEffect(getThingPos(cid), 10)
return true
end