Job2k9
New Member
- Joined
- Feb 11, 2010
- Messages
- 841
- Reaction score
- 3
Code:
public static bool CanUseFuriousCharge
{
get
{
if (UseOOCBuff)
return false;
var bestTarget = TargetUtil.GetBestPierceTarget(35f);
int unitsInFrontOfBestTarget = 0;
if (bestTarget != null)
unitsInFrontOfBestTarget = bestTarget.CountUnitsInFront();
bool currentEliteTargetInRange = CurrentTarget.RadiusDistance > 7f && CurrentTarget.IsBossOrEliteRareUnique && CurrentTarget.RadiusDistance <= 35f;
return
!UseOOCBuff &&
CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) &&
(currentEliteTargetInRange || [COLOR="#FF0000"]unitsInFrontOfBestTarget >= 1[/COLOR]);
}
}
Changing this from 3 to 1 made for a lot more furious charging spam. Cheers
