Would like to know if there is a snippet for getting abyssal cry to work.
Have it set to AoE currently, but sometimes will get stuck trying to cast it while on cool down and would like to be able to fix it.
Noticed in old routine there is only the 3 things for enduring cry, which would or could work similar but would like to know if there is anything else to change.
Not knowing what to do here, and just left it as endurance charges, and what I could change to make it not worry about endurance charges since it is not working like I wanted it to.
Assuming trying to read endurance charges, but I could be wrong since I don't see anything that would make it cast the first time, but again I'm not an expert at this.
This is what i added along with setting the skill up to be used
Sadly, something isn't working how I intended.
Will try to mess with it some, by taking out the endurance charges part but if anyone has any recommendations I would appreciate it.
Will upload routine
EDIT: Took out endurance charge part, and everything seemed to work OK
Seems very spammy though, not sure if it has to do with their being no other check other then mobs being near me, but can't recall if it was showing the same, and deleted the logs.
Have it set to AoE currently, but sometimes will get stuck trying to cast it while on cool down and would like to be able to fix it.
Noticed in old routine there is only the 3 things for enduring cry, which would or could work similar but would like to know if there is anything else to change.
Not knowing what to do here, and just left it as endurance charges, and what I could change to make it not worry about endurance charges since it is not working like I wanted it to.
Assuming trying to read endurance charges, but I could be wrong since I don't see anything that would make it cast the first time, but again I'm not an expert at this.
This is what i added along with setting the skill up to be used
Code:
// Since AC has a cooldown, we can just cast it when mobs are in range to keep our endurance charges refreshed.
if (_abyssalCrySlot != -1)
{
// See if we can use the skill.
var skill = LokiPoe.InGameState.SkillBarHud.Slot(_abyssalCrySlot);
if (skill.CanUse())
{
if (EnduranceChargesTimeLeft.TotalSeconds < 5 && NumberOfMobsNear(LokiPoe.Me, 30) > 0)
{
var err1 = LokiPoe.InGameState.SkillBarHud.Use(_abyssalCrySlot, true);
if (err1 == LokiPoe.InGameState.UseResult.None) { return true; }
Log.ErrorFormat("[Logic] Use returned {0} for {1}.", err1, skill.Name);
}
}
}
Sadly, something isn't working how I intended.
Will try to mess with it some, by taking out the endurance charges part but if anyone has any recommendations I would appreciate it.
Will upload routine
EDIT: Took out endurance charge part, and everything seemed to work OK
Seems very spammy though, not sure if it has to do with their being no other check other then mobs being near me, but can't recall if it was showing the same, and deleted the logs.
Attachments
Last edited: