hi,
Have anyone tried using "getAggroMobs(Creature c)" method?
it does not seem to work. perhaps a bug? here is my meta code
i'm running the bot on my other machine as a companion. basically, i'm the partner. if i aggro a mob my bot does not react at all. getAggroMobs() does not return a list of creatures at all.
any ideas would be appreciated.
Have anyone tried using "getAggroMobs(Creature c)" method?

it does not seem to work. perhaps a bug? here is my meta code
Code:
Creature partner;
foreach (var c in getCreatures())
{
if (c.name == PARTNERNAME)
{
partner = c;
Log("My partner is = " + c.name);
}
}
while ( true )
{
Follow(partner);
foreach(var mob in getAggroMobs(partner)
{
Fight(mob);
Log("Figthing - " + mob.name);
}
}
i'm running the bot on my other machine as a companion. basically, i'm the partner. if i aggro a mob my bot does not react at all. getAggroMobs() does not return a list of creatures at all.
any ideas would be appreciated.
Last edited: