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

Question about activeauras.

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

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.
 
nevermind... I took out the check for auras on that, and left the check for bloodsurge on slam and all is good.. I guess too many aura checks makes it weird out or something.
 
i'm not a cc guy, but sticking a ( before Me.ActiveAuras and a ) after the )) would make Me.Combat && (statement) vs (Me.Combat && (1st statement) or (2nd statement)) which may give issues.

This is why i stick with profiles =P
 
Alright, thanks. I'll give that a shot. I'm a programming fail, so tips help. :) Thanks.
 
Back
Top