imdasandman
Active Member
- Joined
- Feb 2, 2011
- Messages
- 1,207
- Reaction score
- 6
ApoC your svn is down and not working man
Anyone able to upload a zip file containing the current revision?
SVN should be back up. Was having some server issues![]()
How is the PVP as Arms with this CC? Is it better then the other ones in the Warrior section?
Any news on the fixed "new" Arms rotation Apoc?.
Try this version of the arms rotation, it should be less... silly with Heroic Strike usage. The issue was a bug with the Incite check (causing it to always return true)
public static Composite CreateHunterBackPedal() {
return
new Decorator(
ret => !SingularSettings.Instance.DisableAllMovement && StyxWoW.Me.CurrentTarget.Distance <= Spell.MeleeRange &&
StyxWoW.Me.CurrentTarget.IsAlive &&
(StyxWoW.Me.CurrentTarget.CurrentTarget == null ||
StyxWoW.Me.CurrentTarget.CurrentTarget != StyxWoW.Me ||
StyxWoW.Me.CurrentTarget.IsStunned()),
new Action(
ret =>
{
var moveTo = WoWMathHelper.CalculatePointFrom(StyxWoW.Me.Location, StyxWoW.Me.CurrentTarget.Location, Spell.MeleeRange + 5f);
if (Navigator.CanNavigateFully(StyxWoW.Me.Location, moveTo))
{
Navigator.MoveTo(moveTo);
return RunStatus.Success;
}
return RunStatus.Failure;
}));
}