I tried this, but i think that i have bad understanding about the list that InstancesList Func returns
Code:
import chat,eXLib,player,net
i = 0
chat.AppendChat(3,"-----------------------------------------------------------------")
#All player arround
vids = eXLib.InstancesList
chat.AppendChat(3,"Monsters List: "+str(vids))
mob = vids.keys()[0]
chat.AppendChat(3,"MOB: "+str(mob))
chat.AppendChat(3,"Is death?: "+str(eXLib.IsDead(mob)))
keys = vids.keys()
chat.AppendChat(3,str(keys))
for x in keys:
chat.AppendChat(3,str(vids.keys()[i]))
eXLib.SendAttackPacket(vids.keys()[i],1)
i = i + 1
#eXLib.SendAttackPacket(vids.keys()[1],1)
my_vid = net.GetMainActorVID()
chat.AppendChat(3,"My vid: "+str(my_vid))
#Older GetPixelPosition
#Can also be used as chr.GetPixelPosition()
#x,y,z = eXLib.GetPixelPosition(my_vid)
#path = eXLib.FindPath(x,y,50000,50000)
#chat.AppendChat(3,"The path found contains "+str(len(path))+" points")
chat.AppendChat(3,"-----------------------------------------------------------------")
I hope that these thousands of questions helps someone :D