I experienced following problems after the 1.7 update:
1. Did anyone else notice a very increased CPU usage of archebuddy?I was used to run 2 clients to farm, now my CPU is at 99% with just one of them running...
2. While farming my character randomly doesn't loot mobs. Problem seems to be caused by the "ComeTo(bestMob, 1);" command. My character randomly doesn't move to the mob, and even if it stands in range to loot the mob i have to manually move it just a little bit to make run to the mob location in order to loot. Here is the code i use to loot:
-------------------------------------
while(bestMob != null && !isAlive(bestMob) && isExists(bestMob) && bestMob.type == BotTypes.Npc && ((Npc)bestMob).dropAvailable && isAlive())
{
if(me.dist(bestMob) > 3)
{
ComeTo(bestMob, 1); <----Seems to randomly stop the grinder until i manually move it's location
}
PickupAllDrop(bestMob);
if(itemCount(29207) > (coinPursesCurrent))
{
coinPursesCurrent++;
}
}
-------------------------------------------------------------
EDIT: problem #2 occured in the new zone "Golden Ruins". I have not tested it in any other zone yet, not sure if that zone could cause problems with the "ComeTo" Command.