[GUIDE] Setup your DH for high torment Ghom [AKA The three musketeers]
Have you ever wanted to run torments with these stats:
?
Well, with the following setup, I am able to run Ghom on T4, 50+ GPH!
Remember that gear also is crucial for this to work, but it should anyhow up your speed compared to the settings you have right now. Most of these changes are found by Morchel, so don't credit me for this.
Demon Hunter - Game Guide - Diablo III
You can switch out ambush to night stalker or archer, depending if you go OM (= out of hatred). You will need a templar with the relic that makes him invincible, aswell as the ring "Unity", equipped both on you and your templar for the 50 % dmg reduction. Learn the templar the skill that slows enemies. It will be used for the extra dmg increase on the passive "cull the weak".
Edit #1: You will also need to edit a few lines in the demonhunter.cs file. (Found in yourbotname/plugins/trinity/combat/abilites/demonhunter.cs)
Quote from Morchel:
"Select the Bat rune. That way, the bot should trigger it after you dropped the first 50 hatred.
It might be a good idea to change the bat trigger to 50 [ && Player.PrimaryResourceMissing >= 50 ], else he might use bat and punishment at the same time.
For example when you are at 58 hatred missing, you use a Cluster Arrow, and drop to 80 hatred missing. In that moment both triggers are activated, and he will overcap you with 125 hatred generated.
Marked for Death is set to 3 seconds in the trinity variables interface, you can change that to 30000 if you want.
I had to adjust a few things in the demonhunter.cs.
Preparation bug:
Code:
Range changes so wolf and vengeance gets triggered after i am in range for mark :
Code:
Code:
and finally a range change for cluster arrow so he walks into the room. Most of the time he walks top around the pillar, places turrets and starts the pain
Code:
"
I tweaked some things in his code because it didn't work properly. For example, the bot did not go close enough for the templar and other skills such as sentry turret to activate. I fixed it by changing up the cluster arrow distance from 50f to 25f. You might want to change the other skills aswell.
Edit 2# if you fixed all these settings, it then all comes down to gear. Since DH right now is about fire, stack as much as you can. Cindercoat, magefist, amulet with fire dmg, reaper's wraps(or any other bracers with fire dmg), SOJ is optimal for this build to work. The marauder's set combined with the listed items is also a high dps increase.
How to: CA Build with BiS list. - Forums - Diablo III - Use this guide to gear up. I am currently aiming for the "BIS MARAUDER'S 4SET + NAT'S 3SET". It might be optimal to stick with the BiS gear you already have and build up from there until you find other stuff. Note that the royal ring of grandeur is crucial in every BiS gear build. Can be found in Horadrich caches ACT 1.
Edit #3: A good rule is that if you don't kill him before you are totally out of hatred/vengeance you need to lower the difficulty. You can also check your games/hour. Lower the difficulty if you have less than 40 games/hour. It is not worth killing in higher torments in the long time.
Edit #4: Note that i just threw together this guide in a couple of minutes. Misleading information or hard times to understand what I've written might occur. Please inform me if this is the case and I will change it for the better.
If you have any further questions, user Morchel might come handy aswell. He seems to know one thing or another about DH's and Demonbuddy.
Have you ever wanted to run torments with these stats:

Well, with the following setup, I am able to run Ghom on T4, 50+ GPH!
Remember that gear also is crucial for this to work, but it should anyhow up your speed compared to the settings you have right now. Most of these changes are found by Morchel, so don't credit me for this.
Demon Hunter - Game Guide - Diablo III
You can switch out ambush to night stalker or archer, depending if you go OM (= out of hatred). You will need a templar with the relic that makes him invincible, aswell as the ring "Unity", equipped both on you and your templar for the 50 % dmg reduction. Learn the templar the skill that slows enemies. It will be used for the extra dmg increase on the passive "cull the weak".
Edit #1: You will also need to edit a few lines in the demonhunter.cs file. (Found in yourbotname/plugins/trinity/combat/abilites/demonhunter.cs)
Quote from Morchel:
"Select the Bat rune. That way, the bot should trigger it after you dropped the first 50 hatred.
It might be a good idea to change the bat trigger to 50 [ && Player.PrimaryResourceMissing >= 50 ], else he might use bat and punishment at the same time.
For example when you are at 58 hatred missing, you use a Cluster Arrow, and drop to 80 hatred missing. In that moment both triggers are activated, and he will overcap you with 125 hatred generated.
Marked for Death is set to 3 seconds in the trinity variables interface, you can change that to 30000 if you want.
I had to adjust a few things in the demonhunter.cs.
Preparation bug:
Code:
Code:
// Preperation w/ Punishment
if (hasPunishment && CombatBase.CanCast(SNOPower.DemonHunter_Preparation, CombatBase.CanCastFlags.NoTimer) && Player.SecondaryResource >= 15 && Player.PrimaryResourceMissing >= 75 && TimeSinceUse(SNOPower.DemonHunter_Preparation) >= 1000)
{
return new TrinityPower(SNOPower.DemonHunter_Preparation, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 1, 1, WAIT_FOR_ANIM);
}
Code:
Code:
// Use Wolf Howl on Unique/Elite/Champion - Would help for farming trash, but trash farming should not need this - Used on Elites to reduce Deaths per hour
if (hasWolf && CombatBase.CanCast(SNOPower.X1_DemonHunter_Companion) && CurrentTarget.IsEliteRareUnique && TargetUtil.EliteOrTrashInRange(40f))
{
return new TrinityPower(SNOPower.X1_DemonHunter_Companion);
}
Code:
// Vengeance
if (!IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.X1_DemonHunter_Vengeance, CombatBase.CanCastFlags.NoTimer) && (TargetUtil.EliteOrTrashInRange(40) || TargetUtil.AnyMobsInRange(40, 6)))
{
return new TrinityPower(SNOPower.X1_DemonHunter_Vengeance);
}
Code:
Code:
// Cluster Arrow
if (!UseOOCBuff && !IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.DemonHunter_ClusterArrow) && !Player.IsIncapacitated &&
Player.PrimaryResource >= 20)
{
return new TrinityPower(SNOPower.DemonHunter_ClusterArrow, 50f, Vector3.Zero, CurrentWorldDynamicId, CurrentTarget.ACDGuid, 1, 1, WAIT_FOR_ANIM);
}
"
I tweaked some things in his code because it didn't work properly. For example, the bot did not go close enough for the templar and other skills such as sentry turret to activate. I fixed it by changing up the cluster arrow distance from 50f to 25f. You might want to change the other skills aswell.
Edit 2# if you fixed all these settings, it then all comes down to gear. Since DH right now is about fire, stack as much as you can. Cindercoat, magefist, amulet with fire dmg, reaper's wraps(or any other bracers with fire dmg), SOJ is optimal for this build to work. The marauder's set combined with the listed items is also a high dps increase.
How to: CA Build with BiS list. - Forums - Diablo III - Use this guide to gear up. I am currently aiming for the "BIS MARAUDER'S 4SET + NAT'S 3SET". It might be optimal to stick with the BiS gear you already have and build up from there until you find other stuff. Note that the royal ring of grandeur is crucial in every BiS gear build. Can be found in Horadrich caches ACT 1.
Edit #3: A good rule is that if you don't kill him before you are totally out of hatred/vengeance you need to lower the difficulty. You can also check your games/hour. Lower the difficulty if you have less than 40 games/hour. It is not worth killing in higher torments in the long time.
Edit #4: Note that i just threw together this guide in a couple of minutes. Misleading information or hard times to understand what I've written might occur. Please inform me if this is the case and I will change it for the better.
If you have any further questions, user Morchel might come handy aswell. He seems to know one thing or another about DH's and Demonbuddy.
Last edited: