Coloque um action id na porta, qualquer um que não esteja sendo usado
data\actions\scripts, crie um script com a extensão .lua
function onUse(cid, item, fromPosition, itemEx, toPosition)
local tpos = {
x = 190
y = 75
z = 7
}
level = 250000
if getPlayerLevel(cid) >= level then
doTeleportThing(cid, fromPosition, tpos)
end
else
doPlayerSendTextMessage(cid, 22, "Voce precisa ser level "..level.." para passar pela porta")
end
return TRUE
end
em actions\actions.xml
<action actionid="<action id>" event="script" value="<nome do script>.lua"/>