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

Problem with routines since latest patch

hijlee

Member
Joined
Jun 14, 2012
Messages
89
Reaction score
0
Hello!

Since the latest patch i am having problems with the bot routines. None of them seems to working.
Previously ran with a dual flame totem routine which worked flawlessly, but now it just stands and cast only Enduring Cry, and eventually dies.
Also tried with Oldroutine, but same problem.

I guess it might be related to the bot. Anyone else got similar problems?
 
I'm having this issue too it seems once mobs get within a certain range it just stops casting anything but enduring cry. (I'm using arc atm)
 
its because the bot is trying to spam enduring cry so it doesnt attack. I took enduring cry off and now its fine. can someone come up with a fix for this?
 
Endurying cry doesnt work with any build you have to take the skill off. Can ee get a dev reply in here?
 
Endurying cry doesnt work with any build you have to take the skill off. Can ee get a dev reply in here?

my workaround

if (_enduringCrySlot != -1)
{
var skill = LokiPoe.InGameState.SkillBarPanel.Slot(_enduringCrySlot);
if (EnduranceChargesTimeLeft.TotalSeconds < 5 && skill.CanUse() )
{


...bla...bla..

private TimeSpan EnduranceChargesTimeLeft
{
get
{
Aura aura = LokiPoe.ObjectManager.Me.Auras.FirstOrDefault(a => a.InternalName == "endurance_charge");
if (aura != null)
return aura.TimeLeft;

return TimeSpan.Zero;
}
}



found this func in forums here so please dont beat me its not my)
helped me to use en cry when its not more then 5 sec in time
 
Reading on the changed Enduring Cry, the logic in OldRoutine was for when it had a long cooldown, so it would cast it when it was available for use.

Since that's changed now, I'll just add some logic like ilichbastard posted since that makes the most sense for now.
 
Back
Top