function onSay(cid, words, param)
pos = {x=249, y=268, z=7}
if exhaustion.check(cid, 7612) == TRUE then
return doPlayerSendCancel(cid, "Please wait "..exhaustion.get(cid,7612).." to next teleport.") and doSendMagicEffect(getThingPos(cid), CONST_ME_POFF)
end
if getTileInfo(getPlayerPosition(cid)).protection then
doSendMagicEffect(getPlayerPosition(cid),53)
doTeleportThing(cid,pos)
exhaustion.set(cid, 7612, 5)
else
doPlayerSendCancel(cid, "Only in PZ.")
end
return true
end