Truman422
Member
- Joined
- Jan 10, 2011
- Messages
- 198
- Reaction score
- 14
I'm trying to build a fury warrior CC because I like doing this sort of thing, kinda more or less for personal use since Lionhearts doesn't pull attacks whenever Raging Blow and Slam are able to be used. I thought it was a CC thing, but comes to be that HB isn't noticing auras always. Is that something anyone else has noticed at all? Or is it really pertinent to warriors and their aura procs with Bloodsurge and enrage/Berserker Rage? I've been using something like this
CastSpell is my CC's way of calling for the spell and RB stands for raging blow. Is there a more accurate way of doing this? A way to notice my auras better, so the ability is used. Probabl 30% of the time, it just sits there and doesn't cast it.
Code:
if (Me.Combat && Me.ActiveAuras.ContainsKey("Enrage") || Me.ActiveAuras.ContainsKey("Berserker Rage"))
{
CastSpell(RB);
}
CastSpell is my CC's way of calling for the spell and RB stands for raging blow. Is there a more accurate way of doing this? A way to notice my auras better, so the ability is used. Probabl 30% of the time, it just sits there and doesn't cast it.