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

Demon Hunter Companion suggestion

Synth

New Member
Joined
Oct 21, 2013
Messages
29
Reaction score
0
Would love to see an option to either use companion on cooldown, or save for elites/bosses.
 
Would love to see an option to either use companion on cooldown, or save for elites/bosses.
open DHC.cs with notepad, find and try replace
// Use Wolf Howl
if (hasWolf && CombatBase.CanCast(SNOPower.X1_DemonHunter_Compani on, CombatBase.CanCastFlags.NoTimer) && CurrentTarget.RadiusDistance < 25f)
{
return new TrinityPower(SNOPower.X1_DemonHunter_Companion);
}
Should work.
 
Do you mean in Trinity > Combat > Abilities? Or did I replace the wrong thing... Because that stopped DB from functioning

in DemonHunterCombat.cs I replaced

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 (Runes.DemonHunter.WolfCompanion.IsActive && CanCast(SNOPower.X1_DemonHunter_Companion) &&
                    ((CurrentTarget.IsBossOrEliteRareUnique || TargetUtil.AnyMobsInRange(40, 10)) && CurrentTarget.RadiusDistance < 25f))
                {
                    return new TrinityPower(SNOPower.X1_DemonHunter_Companion);
                }

With your snippet.
 
Back
Top