What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Barb spamming Furious Charge instead of using HotA

arnadayn

Member
Joined
Sep 6, 2014
Messages
50
Reaction score
0
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:

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
 
I have zero clue about coding, so I took stamina over merciless assault, works a charm until it's sorted.
 
I'm using Cold Rush but it's inefficent with Focus & Restraint.
That's why i need a sort of 4sec of cooldown
 
solved.
Simply commenting:
if (Sets.BastionsOfWill.IsFullyEquipped && !Sets.TheLegacyOfRaekor.IsFullyEquipped)

To sleep helps..
 
solved.
Simply commenting:
if (Sets.BastionsOfWill.IsFullyEquipped && !Sets.TheLegacyOfRaekor.IsFullyEquipped)

To sleep helps..

Well done on finding the fix.

I can't seem to get this to work, could you explain what you did exactly?
 
Simply put '//' before the line 'if (Sets.BastionsOfWill.IsFullyEquipped && !Sets.TheLegacyOfRaekor.IsFullyEquipped)"

View attachment BarbarianCombat.cs


Worked like charm with trinity 2.13.5

It seems broken with 2.13.7 (barb just roam like an idiot and doesn't attack).

Currently i'm still using 2.13.5 (15B xp/hour on 45 GR)
 
Simply put '//' before the line 'if (Sets.BastionsOfWill.IsFullyEquipped && !Sets.TheLegacyOfRaekor.IsFullyEquipped)"

View attachment 186768


Worked like charm with trinity 2.13.5

It seems broken with 2.13.7 (barb just roam like an idiot and doesn't attack).

Currently i'm still using 2.13.5 (15B xp/hour on 45 GR)

You're a hero, works brilliant now.
 
Simply put '//' before the line 'if (Sets.BastionsOfWill.IsFullyEquipped && !Sets.TheLegacyOfRaekor.IsFullyEquipped)"

View attachment 186768


Worked like charm with trinity 2.13.5

It seems broken with 2.13.7 (barb just roam like an idiot and doesn't attack).

Currently i'm still using 2.13.5 (15B xp/hour on 45 GR)

Do you run with F&R on 45?
 
F&R
+ Unity on cube (not mandatory)

If RNG gods would bless me with an Ancient decent weapon I'd like to try GR 48/49
 
full wastes

passives: berzerk rage, rampage, ruthless, bloodthirst
I don't understand. Are your build Immortal King set or Waste set?
I am using Immortal King set for HotA build but I can not use Furious Charge because db spam Furious Charge instead of HotA. Can you send me you BarbarianCombat.cs and your trinity setting file?
and one more question, what version of db are you using? Beta or 425?
Thank you :)
 
Did you untick Furious Charge OOC in the barb tab of trinity ?
 
I'm sorry, i mean full IK set.

BarbarianCombat.cs -> page 1, post #6.
Db Beta.
Untick all OOC movements.
 
hi, thanks for the file !

i tried your barbariancombat.cs but i have an error saying an function is already in use in another file.

But i can't find trinity 2.13.5 .

so i use trinity 2.13.7 .

have you an idea ?

thanks
 
try this:
trinity configure variables
SpellDelayFuriousCharge
change to 4000

feedback appreciated
 
hmm dont work, it always use furious charge, instead of using HOTA, or he use hota on elite !

i use DB beta 556
trinity 1.13.7

and since he dont do GR ! if any1 have an idea too ?

thanks
 
I'm noticing my barb will not attack the targets my call of ancients are fighting and instead will stand there and die. Any ideas on how to fix this?

Using the new DB beta, trinity that comes with it ( I think 2.13.7) and the new adventure from SVN.
 
Back
Top