What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Beta with Totems

sfrattini

Member
Joined
Oct 4, 2012
Messages
220
Reaction score
4
Pushedx,

It seems I have found a small bug with the new bot. Whenever there is a totem with the "Allies cannot die" Mod the bot does not give priority on killing the totem but keeps trying to kill the mobs resulting in getting stuck.
I hope it helps, please check it out.
 
Yes, the CR does not filter that in its targeting, but that'll get added in the next version.

You can actually make the change to CR yourself if you want in the mean time, I just forgot to add it in:

Just ctrl + F "var monsters =" then change the entire line group to the following:

Code:
var monsters =
                    LokiPoe.ObjectManager.GetObjectsByType<Monster>()
                        .Where(m => !AreaStateCache.Current.IsBlacklisted(m.Id) && !m.CannotDie && m.Distance < 70 && m.IsActive)
                        .OrderBy(m => m.Distance).ToList();
 
Back
Top