Epinephrine
New Member
- Joined
- Jun 27, 2010
- Messages
- 54
- Reaction score
- 0
I just watched this thing.. rape three players at the same time. You, sir... Are a genious!
only thing i wish it would do is ccI just watched this thing.. rape three players at the same time. You, sir... Are a genious!
Nevermind you can remove the strafing in the config file.I've been #1 in overall dmg in almost every BG I've been in since I started using this CC. So I love it. However, the continuous sided to side strafing is annoying.
namespace HBPVPDruid.Spells.Healing
{
public static class MarkoftheWild
{
public const string SpellName = "Mark of the Wild";
public static bool Pulse()
{
// Quick Checks to return false
if (ObjectManager.Me.HasAura("Embrace of the Shale Spider")) return false;
if (ObjectManager.Me.HasAura("Blessing of Kings")) return false;
if (ObjectManager.Me.HasAura("Mark of the Wild")) return false;
if (!SpellManager.CanCast(SpellName)) return false;
Misc.Misc.CastLog(SpellName);
SpellManager.Cast(SpellName);
return true;
}
}
}
public override bool NeedRest
{
get
{
if (ObjectManager.Me.IsActuallyInCombat) return false;
// Health Check
if (Me.HasAura("Rejuvenation") && Me.HasAura("Lifebloom")) { if (Me.ActiveAuras["Lifebloom"].StackCount == 3) return false; }
if (ObjectManager.Me.HealthPercent < 93) return true;
// Buff Check
if (ObjectManager.Me.HasAura("Embrace of the Shale Spider")) return false;
if (ObjectManager.Me.HasAura("Blessing of Kings")) return false;
if (!ObjectManager.Me.HasAura("Mark of the Wild")) return true;
return false;
}
}






