local pass = {x=362, y=1660, y=7} -- para onde o player vai
local outMale = 604 --looktype da outfit male
local outFemale = 605 -- lookType da outfit female
function onUse(cid, Item, frompos, topos)
if getCreatureOutfit(cid).lookType == outFemale or getCreatureOutfit(cid).lookType == outMale then
doPlayerSendTextMessage(cid, 22, "Bem vindo")
doTeleportThing(cid, pass)
else
doPlayerSendTextMessage(cid, 26, "Você precisa esta com a outfit")
end
return true
end