[spoiler*]
Criar 1 arquivo com nome Porta.lua
function onUse(cid, item, fromPosition, itemEx, toPosition)
local itemid = 2139 ---- ITEM QUER PRECISAR PARA PASSAR PELA PORTA
local pos = {x = 1107, y = 1017, z = 7} -- posição pra onde sera teleportado
if #getCreatureSummons(cid) >= 1 then
return doPlayerSendCancel(cid, "Return your pokemon.")
end
if getPlayerItemCount(cid, itemid) >= 1 then
doPlayerSendCancel(cid, "MENSAGEM!.")
doTeleportThing(cid, pos)
else
doPlayerSendCancel(cid, "MENSAGEM!")
end
return true
end
Tag
<action actionid="55555" event="script" value="Porta.lua"/>
[spoiler*]