spudstar999
New Member
- Joined
- Jan 15, 2010
- Messages
- 174
- Reaction score
- 1
Hello All,
to get the Rooting Stuff working for Balance,
open this file
File: ClassHelpers.cs
Change this:
to
^^ this works for me at least
sincery spud
to get the Rooting Stuff working for Balance,
open this file
File: ClassHelpers.cs
Change this:
Code:
else
{
if (Spell.IsKnown("Entangling Roots")) dpsSpell = "Entangling Roots";
else if (Spell.IsKnown("Starfire")) dpsSpell = "Starfire";
else dpsSpell = "Wrath";
}
to
Code:
else
{
if (Spell.IsKnown("Entangling Roots") && !Me.CurrentTarget.Auras.ContainsKey("Entangling Roots")) dpsSpell = "Entangling Roots";
else if (Spell.IsKnown("Starfire")) dpsSpell = "Starfire";
else dpsSpell = "Wrath";
}
^^ this works for me at least

sincery spud