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

Movement impairing effects

Ama

New Member
Joined
Jun 6, 2011
Messages
1,171
Reaction score
33
Is there any easy way to see if you have a movement impairing effect?
 
this is something i use to check for spells to steal, im sure that all movement impairing spells have some kind of spell effect, you just gotta find out what it is. and if so this should catch like 90% of them.
Code:
      public bool SpellToSteal()
        {
            using (new FrameLock())
            {
                foreach (KeyValuePair<string, WoWAura> pair in Me.CurrentTarget.ActiveAuras)
                {
                    WoWAura curAura = pair.Value;
                    if (curAura.Spell.SpellEffect1.EffectType == WoWSpellEffectType.Heal)
                    {
                        Logging.Write("CurrentTarget's Buff " + curAura.Name + " is healing him");
                        return true;
                    }
                }
                return false;
            }
        }
 
Thanks, run some bgs and dump my results to a list. I tried shooting the target dummy, but it returns AppliedAura. So i guess i gotta go get pwned on the battlefield.
 
Back
Top