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

Searching for good DH Combat Routine (Unhallowed set with or without Krider)

Yamilee

New Member
Joined
May 20, 2015
Messages
4
Reaction score
0
I'm pretty new in this world and well the title says it all, sry for my bad english I'm looking for a good DH combat routine with this set.

Dont tell me about Trinity Fork cause actually doenst go with DB version.

Thanks
 
Just wait for the trinity fork to get updated and use the normal trinity meanwhile.
With the normal trinity I use this build:
Evasive Fire - Focus
Multishot - Arsenal
Smoke Screen - Lingering Fog
Vengeance - Seethe
Preperation - Invigoration
Companion - Wolf

Cull of the Weak
Awareness
Ballistics
Ambush

In the folder Plugins/Trinity/Combat/Abilities/DemonHunterCombat.cs I've made some alterations so the bot doesn't use up all the discipline:

Code:
/// <summary>
        /// When Smoke Screen should be cast
        /// </summary>
        private static bool SmokeScreenCondition(SkillMeta meta)
        {
            meta.CastFlags = CanCastFlags.NoTimer;

            // Buff Already Active
            if (GetHasBuff(SNOPower.DemonHunter_ShadowPower) && [COLOR="#FF0000"]Player.SecondaryResource >= 55[/COLOR])
                return false;

            // Mobs in range
            if [COLOR="#FF0000"]([/COLOR](TargetUtil.AnyMobsInRange(15) || (Legendary.MeticulousBolts.IsEquipped && TargetUtil.AnyMobsInRange(60))) [COLOR="#FF0000"]&& Player.SecondaryResource >= 55)[/COLOR]
                return true;

            // Defensive Cast
            if [COLOR="#FF0000"]([/COLOR]((Player.CurrentHealthPct <= 0.50 || Player.IsRooted || Player.IsIncapacitated)) [COLOR="#FF0000"]&& Player.SecondaryResource >= 55)[/COLOR]
                return true;

            // Spam Setting
            if (Settings.Combat.DemonHunter.SpamSmokeScreen)
                return true;

            return false;
        }

Code:
/// <summary>
        /// When Preperation should be cast
        /// </summary>
        private static bool PreperationCondition(SkillMeta meta)
        {
            meta.ReUseDelay = Runes.DemonHunter.FocusedMind.IsActive ? 15000 : 500;
            meta.CastFlags = CanCastFlags.NoTimer;
            
            if (!Runes.DemonHunter.Punishment.IsActive && [COLOR="#FF0000"]Player.SecondaryResource <= 50[/COLOR])
                return true;

            if (Runes.DemonHunter.Punishment.IsActive && Player.PrimaryResource <= 75 && (TargetUtil.AnyElitesInRange(50f) || Enemies.Nearby.UnitCount > 5))
                return true;
	
            return false;
        }

The avoiding in normal trinity doesn't really work well, so just run on abit lower difficulty where the bot can actually survive.
 
I add this lines to code but she's still at 30% discipline :S Dunno if I did good the "codeing" and other things like avoidance to some skills, and she wait soo much to attack mobs xD sorry but I'm a bit newbie in this botworld

Edit1: Okay edit I delete other lines with same summary skils and trying now
 
Last edited:
Just to make sure we're on the same path -- you should only add the red text in the code I pasted. Remember the red left parentheses under "Mobs in range" and "Defensive cast".

Do you have spam smoke screen enabled in trinity settings? If so, disable it.
And yes, when I did a fresh install my DH would wait alot between each attack.
Instead I opened my old version (.404 you can find it somewhere on the front page) and updated it -- works again.

Edit: Also when you have saved the combat settings, you need to restart the bot. Did you do that?
 
Okay, I did it and edit to <60 to preparation and >90 to Smoke screen (Farm T6 is too easy dont need defensives). And what u mean with ur old version .404? DB Version? Or Trinity F?

Thanks for ur help anyway :P
 
Cool.
.404 is an older version of DB and it automatically prompts you to update, when you open it.
 
It runs ~40 with UE, however I run Nats as it runs 42+ with 5-10 min left on timer.
 
It runs ~40 with UE, however I run Nats as it runs 42+ with 5-10 min left on timer.

trinity is giving me fits as a N6 dh. i have the gear for GR 55 solo (full ancient gear, 17M toughness, etc.), but i can't bot GR 40+ without MANY deaths. Are you having a different experience?
 
Last edited:
Back
Top