Truman422
Member
- Joined
- Jan 10, 2011
- Messages
- 198
- Reaction score
- 14
I've tried a million ways, but honorbuddy keeps trying to cast it INSTANTLY, unlike the rest of the abilities, then it never tries it again. And by trying to cast it instantly, I mean its missing it because I'm still on GCD from the previous spell.. Tips on avoiding this?
Anyone know why it won't go back and check my auras again? I've tried it the above way, the below way, and about every way you can check an aura. I even used Singular's code for HaveAuraStacks just to see, and still nothing. WTF.
Code:
else if (SpellManager.CanCast("Slam"))
{
if (Me.ActiveAuras.ContainsKey("Bloodsurge"))
{
SpellManager.Cast("Slam");
slog("Slam");
}
}
Anyone know why it won't go back and check my auras again? I've tried it the above way, the below way, and about every way you can check an aura. I even used Singular's code for HaveAuraStacks just to see, and still nothing. WTF.
Code:
else if (SpellManager.CanCast("Slam") && Me.ActiveAuras.ContainsKey("Bloodsurge"))
{
SpellManager.Cast("Slam");
slog("Slam");
}
Last edited: