sabrina9292 1 Postado Janeiro 16, 2012 Share Postado Janeiro 16, 2012 Bom pessoal... Minha duvida e simples, gostaria de saber se existe uma funçao que verifica se existe criatura na posiçao "X" Desde ja... Grata Link para o comentário Compartilhar em outros sites More sharing options...
Demonbholder 420 Postado Janeiro 16, 2012 Share Postado Janeiro 16, 2012 if isCreature(getThingFromPos({x=?, y=?, z=?, stackpos=253}).uid) then Link para o comentário Compartilhar em outros sites More sharing options...
bepokemon 101 Postado Janeiro 19, 2012 Share Postado Janeiro 19, 2012 (editado) if isCreature(getThingFromPos({x=?, y=?, z=?, stackpos=253}).uid) then function isCreatureFromPos(pos) pos.stackpos = 253 return isCreature(getThingFromPos(pos).uid) and true or false end Editado Janeiro 19, 2012 por Byerne Link para o comentário Compartilhar em outros sites More sharing options...
Demonbholder 420 Postado Janeiro 19, 2012 Share Postado Janeiro 19, 2012 if isCreature(getThingFromPos({x=?, y=?, z=?, stackpos=253}).uid) then function isCreatureFromPos(pos) pos.stackpos = 253 return isCreature(getThingFromPos(pos).uid) and true or false end Aprimorando a sua função, você não precisa colocar essa parte: and true or false function isCreatureFromPos(pos) pos.stackpos = 253 return isCreature(getThingFromPos(pos).uid) end Assim já está certo rs Link para o comentário Compartilhar em outros sites More sharing options...
Posts Recomendados