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

Focusing elites while in a group of trash. getting stuck due to enemies

Joined
Sep 5, 2015
Messages
61
Reaction score
1
Hey there,

Using the latest DB and Adventurer, I've noticed that my Hota barb, once he encounters an elite pack, he will focus them and them only.

This is an issue, as using furious charge, my barb will occasionally charge away from them to proc knockback and focus and Restraint combo.

But, if he charges into a mob of enemies, he will still try and hota the elites, and get blocked in by the trash mobs he just charged into.

Is there anyway to set the bot to just focus and hit the nearest enemy to him? Without causing too much disruption to the bot's general settings, such as focus goblins etc.
 
I had the same issue, but I changed the BarbarianCombat.cs file to only charge current target. Works really good, clearing GR57 with 4-5 minutes left and 30-40 billion xp/h :)

Change line 631-640 in BarbarianCombat.cs from this:
Code:
        public static TrinityPower PowerFuriousCharge
        {
            get
            {
                var bestTarget = TargetUtil.GetBestPierceTarget(MaxFuriousChargeDistance);

                if (bestTarget != null)
                    return new TrinityPower(SNOPower.Barbarian_FuriousCharge, V.F("Barbarian.FuriousCharge.UseRange"), bestTarget.Position);
                return new TrinityPower(SNOPower.Barbarian_FuriousCharge, V.F("Barbarian.FuriousCharge.UseRange"), CurrentTarget.Position);
            }
To this:
Code:
        public static TrinityPower PowerFuriousCharge
        {
            get
            {
//                var bestTarget = TargetUtil.GetBestPierceTarget(MaxFuriousChargeDistance);

//                if (bestTarget != null)
//                    return new TrinityPower(SNOPower.Barbarian_FuriousCharge, V.F("Barbarian.FuriousCharge.UseRange"), bestTarget.Position);
                return new TrinityPower(SNOPower.Barbarian_FuriousCharge, V.F("Barbarian.FuriousCharge.UseRange"), CurrentTarget.Position);
            }

You find the file here under "Demonbuddy\Plugins\Trinity\Combat\Abilities\BarbarianCombat.cs"
 
Back
Top