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

[Request] S6 DH Impale Trinity settings?

peerlessii

New Member
Joined
Sep 20, 2015
Messages
17
Reaction score
0
Anyone been playing around with S6 DH with newest trinity on 2.4? Trying to get an idea of what are the optimal settings in combat -> misc and combat -> demon hunter
 
cant get impale to work properly. fi xfould be nice or some setting (cant find anything impale related in trinity)
 
Yeah I'm hoping there's one too.. it's not doing too great even though I have some decent gear. I myself manually can do TX just fine and pushed for grift 29 so far. But the bot itself can barely handle T6.
 
Isn't working for me too.

Seems to hardly use impale, while it is the only damaging skill equipped
 
impale works as soon as you have the full set and karlei's epic dagger. does not work without teh full set
 
Yes we should edit smth in the file so it doesn't only look if set active. Would make it a lot easier for starting characters and for us who are still leveling in season.
 
Impale does massive amounts of damage the moment you get 2 pieces and it indeed doesn't work at all atm...
 
Yeah, he isn't using chakram or any other spender if you got no set equipped
 
Got full set now , still not using impale :) I'm gonna check the combat rotation.
 
Odd thing is the longer the bot runs. The more it "learns" to use Impale.. o_O? Or is it just me.
 
Got full set now , still not using impale :) I'm gonna check the combat rotation.

i think you need teh dagger to "Karklei's Point". tried to remove it drom dh.cs but didnt work.

anyway even with flul set and dagger the combat is shite and only cool if you play manual. farming for anotehr set now ;)
 
I'm sure they'll update that set, its wayyyyy too good to not add it, you can get Grift 80+ in it lol, its so damn OP. My impale currently does 1.5BILLION damage without crit, oneshots rift bosses LOL

I've checked the combat rotation.cs and it seems to need the greenstone's fan dagger , I equipped it and it indeed works much better with that dagger equipped, sadly its still pretty shitty :)
 
I'm sure they'll update that set, its wayyyyy too good to not add it, you can get Grift 80+ in it lol, its so damn OP. My impale currently does 1.5BILLION damage without crit, oneshots rift bosses LOL

I've checked the combat rotation.cs and it seems to need the greenstone's fan dagger , I equipped it and it indeed works much better with that dagger equipped, sadly its still pretty shitty :)


Which exact impale build are we referring to here? I haven't heard of a build that can do 80 + that easily.. most of the highest ranks are not impale on NA SC servers
 
Last edited:
OK guys I did some testing with many settings and this is what I've changed for doing GR 60:

Combat -> Misc:
Change 'Ignore Trash further away than' to 65-70
Min trash mob pack: 1
Trash Pack cluster radius: 0 <- this is important
In Avoidance settings, uncheck path around AOE

Combat -> DH

Kiting: Elites Only
Kite trigger range 0
Stop Kiting at 100
Vault movement delay 1000-1500
Uncheck vengeance elites only (you want vengance up 100%)
 
I did a hack/fix in the code so it uses it as soon as possible. Use at own risk!
I have one Generator equipped and one spender, Impale.

Find in plugins\trinity\combat\abilities\DemonHunterCombat.cs and open it with an text editor
Copy this file first before you do anything to DemonHunterCombat.orig so you can always restore it.

Search for ImpaleCondition in the file
And make it as follows:

Code:
       private static bool ImpaleCondition(SkillMeta meta)
        {
            meta.CastRange = 80f;
			meta.TargetUnitSelector = ret => GetClusterTarget();

            // Not enough resource
            if (Player.PrimaryResource <= GetAdjustedCost(20))
                return false;
            
            return true;
        }
 
Back
Top