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

Weird issue with enduring cry

powerpc

New Member
Joined
Nov 4, 2012
Messages
38
Reaction score
0
Its casting enduring cry until it has all 3 charges up, if it doesnt get the charges it just sits there spamming it

This just happened in the newest update
 
in the routine, search for: minCharges =

change the value to "1" instead of -1

minCharges is in the routine in two spots so you need to change both.
 
Still having this issue, ive tried everything with editing the routine but nothing will work. Bot stands like an idiot until ith as all 3 charges up. Doesnt even attack inbetween getting the charges.
 
I couldn't figure out a permanent fix for this so I just changed the Enduring Cry line in the combat routine to the following.

RegisterBuff("Enduring Cry", ret => !HasAura(LokiPoe.Me, "endurance_charge", MaxEnduranceCharges, 1) && LokiPoe.Me.HealthPercent > 95 && NumberOfMobsNear(LokiPoe.Me, 10, 3));

I made it so Enduring Cry will only go off if I'm above 95% health. Also there is an issue with the bot non-stop casting Enduring Cry if mobs are on the screen, but are not in LOS or not close enough to give you a charge. That is why I added the number of mobs near me section. That way EC only casts if I'm being swarmed, basically.

It's not perfect, but at least EC is usable this way. Feel free to make changes to the health percent (95), max mob distance from player (10), and number of mobs within that distance (3).
 
RegisterBuff("Blood Rage", ret => LokiPoe.Me.HealthPercent > 50 && !LokiPoe.Me.HasAura("blood_rage"));

This will cast Blood Rage if you don't already have it up as long as you have more than 50% hp. Change the HealthPercent to your liking.
I also suggest moving this to the top of the Buff list, so that the bot always makes sure it's up.
 
RegisterCurse("Enfeeble", "curse_enfeeble", ret => NumberOfMobsNear(LokiPoe.Me, 10, 3));


for curses :)

will cast if 3 mobs are near
 
RegisterBuff("Blood Rage", ret => LokiPoe.Me.HealthPercent > 50 && !LokiPoe.Me.HasAura("blood_rage"));

This will cast Blood Rage if you don't already have it up as long as you have more than 50% hp. Change the HealthPercent to your liking.
I also suggest moving this to the top of the Buff list, so that the bot always makes sure it's up.



Thanks!!!
 
Back
Top