no1knowsy
Well-Known Member
- Joined
- Feb 28, 2010
- Messages
- 3,927
- Reaction score
- 57
Change to:if (Me.ActiveAuras["Arcane Blast"].StackCount > 2)
{
CastSpell("Arcane Barrage");
Logging.Write(Color.Aqua, ">> Arcane Barrage <<");
}
if ((Me.Auras.ContainsKey("Arcane Blast") && Me.ActiveAuras["Arcane Blast"].StackCount > 2))
{
CastSpell("Arcane Barrage");
Logging.Write(Color.Aqua, ">> Arcane Barrage <<");
}
We had this problem before, and it took even longer than this to find it lol. Basically it's checking for a stack count to a buff that doesn't exist yet, and HB gets super pissed and bitches at you until the buff appears.