Truman422
Member
- Joined
- Jan 10, 2011
- Messages
- 198
- Reaction score
- 14
Last edited:
if (Me.CurrentTarget.IsCasting)
{
CastSpell(Pummel);
}
else if (Me.CurrentTarget.IsCasting)
{
CastSpell(TD);
}
if (Me.CurrentTarget.IsCasting)
{
if (!CastSpell(Pummel))
{
CastSpell(TD);
}
}
it actually does move for you...made me wonder wtf?
You'll find a Combat_Bot with no movements at all in the Lionhearth CC thread.
I didn't look at the priorities in this CC but it will surely gives you the best DPS you can get from your toon. If not, you can give advices to optimize the priority list to get better DPS.
if (Me.CurrentTarget.Fleeing)
{
CastSpell(HAM);
}
if (!Me.CurrentTarget.HasAura("Hamstring"))
{
CastSpell(HAM);
}