Hi,
i'm currently using:
http://www.diablofans.com/builds/57383-grift-75-hota-barb-group-build
Problem is that my toon keeps spamming Charge instead of using HotA (that should be primary dmg source..)
I tried adding this code (the commented part), but it seems db didn't compiled trinity:
Suggestions?
tnx in advance
i'm currently using:
http://www.diablofans.com/builds/57383-grift-75-hota-barb-group-build
Problem is that my toon keeps spamming Charge instead of using HotA (that should be primary dmg source..)
I tried adding this code (the commented part), but it seems db didn't compiled trinity:
Code:
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;
if (Sets.BastionsOfWill.IsFullyEquipped && !Sets.TheLegacyOfRaekor.IsFullyEquipped)
return CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) && !IsCurrentlyAvoiding &&
Skills.Barbarian.FuriousCharge.Charges > 0 &&
(TimeSincePowerUse(SNOPower.Barbarian_FuriousCharge) > 4000 || !CurrentTarget.IsInLineOfSight());
return CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) && !IsCurrentlyAvoiding &&
Skills.Barbarian.FuriousCharge.Charges > 0 &&
[COLOR="#FF0000"] //(TimeSincePowerUse(SNOPower.Barbarian_FuriousCharge) > 4000 && [/COLOR]
(currentEliteTargetInRange || unitsInFrontOfBestTarget >= 3 || Sets.TheLegacyOfRaekor.IsFullyEquipped);
}
}
Suggestions?
tnx in advance