Sim, já fizeram milhões desse pedido aki, você pode fazer essas coisas....
1- Colocar a Magic Door (se tiver no seu OT) e depois colocar o action 14500 Depois do 1 se colocar o lvl.
2- Usando esse Movements:
Tag:
<movevent type="StepIn" actionid="3065" event="script" value="NomeDoArquivo.lua"/>
Coloque o action Id 3065 na Porta.
Arquivo.lua
function onStepIn(cid, item, position, fromPosition)
if getPlayerLevel(cid) >= 4500 then
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "voce precisa do level 4500")
return true
end
end