ofwill
New Member
- Joined
- Apr 30, 2014
- Messages
- 19
- Reaction score
- 0
I have 5pc Raekor's and I also use sprint. I'd rather not have my bot waste charge as a dash.
Would changing the method to this work:
Ideally, I want him to always cast it as an attack.
With Wrath up and the buff from Strongarm bracers, for 5 seconds after I hit something with Furious charge my HotA crits upwards of 40m. Needless to say, improving the constraints on Furious Charge is a big deal, especially since the combat profile currently prefers to use it as a pointless form of mobility.
Any other Raekor barbs have tweaks they'd like to share? I'd really appreciate any assistance and input.
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 || unitsInFrontOfBestTarget >= 3);
}
Would changing the method to this work:
Code:
public static bool CanUseFuriousCharge {
get {
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
CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) &&
(currentEliteTargetInRange || unitsInFrontOfBestTarget >= 1);
}
Ideally, I want him to always cast it as an attack.
With Wrath up and the buff from Strongarm bracers, for 5 seconds after I hit something with Furious charge my HotA crits upwards of 40m. Needless to say, improving the constraints on Furious Charge is a big deal, especially since the combat profile currently prefers to use it as a pointless form of mobility.
Any other Raekor barbs have tweaks they'd like to share? I'd really appreciate any assistance and input.