I don't get it. It casts boulder toss to dump fury and to refresh the Bastions of Will spender buff. Other than that all it does is charge. Are you saying it casts Boulder Toss too much?
Mine will often be using autoattack when there are 3 charges of furious charge available. I'm guessing this is what he is referring to.
public static bool CanUseFuriousCharge
{
get
{
if (UseOOCBuff)
return false;
var bestTarget = TargetUtil.GetBestPierceTarget(MaxFuriousChargeDistance);
var unitsInFrontOfBestTarget = 0;
if (bestTarget != null)
unitsInFrontOfBestTarget = bestTarget.CountUnitsInFront();
var currentEliteTargetInRange = CurrentTarget.RadiusDistance > 7f && CurrentTarget.IsBossOrEliteRareUnique && CurrentTarget.RadiusDistance <= 35f;
var shouldRegenFury = CurrentTarget.NearbyUnitsWithinDistance(10) >= 3 && Player.PrimaryResource <= 40;
if ((Sets.BastionsOfWill.IsFullyEquipped || Legendary.StrongarmBracers.IsEquipped) && !Sets.TheLegacyOfRaekor.IsFullyEquipped)
return CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) && !IsCurrentlyAvoiding &&
Skills.Barbarian.FuriousCharge.Charges > 0 && (TimeSincePowerUse(SNOPower.Barbarian_FuriousCharge) > 4000 || shouldRegenFury);
return CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) && !IsCurrentlyAvoiding && Skills.Barbarian.FuriousCharge.Charges > 0 &&
(currentEliteTargetInRange || unitsInFrontOfBestTarget >= 3 || Sets.TheLegacyOfRaekor.IsFullyEquipped);
}
}
if ((Sets.BastionsOfWill.IsFullyEquipped || Legendary.StrongarmBracers.IsEquipped) && !Sets.TheLegacyOfRaekor.IsFullyEquipped)
return CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) && !IsCurrentlyAvoiding &&
Skills.Barbarian.FuriousCharge.Charges > 0 && (TimeSincePowerUse(SNOPower.Barbarian_FuriousCharge) > 4000 || shouldRegenFury);
Sets.BastionsOfWill.IsFullyEquipped || Legendary.StrongarmBracers.IsEquipped) && !Sets.TheLegacyOfRaekor.IsFullyEquipped
OK, I'll check.
CanCast works fine, believe me. If id didn't nothing at all would workI see boulder toss / ancient spear already has a setting for 80% or more fury so that's great.
just need it to charge like it does with Sets.BastionsOfWill.IsFullyEquipped || Legendary.StrongarmBracers.IsEquipped) && !Sets.TheLegacyOfRaekor.IsFullyEquipped when we have IK4+ and raek2+
With that equip it charges great. Without, it auto attacks a lot between charges.
Also, sprint before ancient spear for added damage. Sprint should be active before spear but that is less important.
I'm actually thinking it's soimnething with the cancast-method
CanCast works fine, believe me. If id didn't nothing at all would work.
That line you mention is always false in your case because that logic if for non-raekor FC. The lines bellow that are the one's that are actually used. Which makes it weird at first glance that you are having these issues, because it should always be true unless you're avoiding something.
That makes sense.
Sorry I am so bad at describing.
Avoid issue is possible but as far as I see even with nothing to avoid it still auto attacks mostly.
If anyone uses that and has some problem, please don't post about it in the trinity forums. We have nothing to do with that versionFYI - this works really well, https://www.thebuddyforum.com/demon...des/237183-guide-2-4-6ik-4rk-gr60-farm-4.html
Just download his zip, adjust as you like, and it furious charges like it should.
FYI - this works really well, https://www.thebuddyforum.com/demon...des/237183-guide-2-4-6ik-4rk-gr60-farm-4.html
Just download his zip, adjust as you like, and it furious charges like it should.






