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

Spell Priority? or make it a "buff"

Fox4lif3

New Member
Joined
Dec 19, 2013
Messages
36
Reaction score
1
Doing T6 Ghom runs on my WD and im trying to summon my fetish army before my garg, possible?

Or heck while im asking, is there any way to make fetish army and garg like a buff (aka wizard armors) so it casts in town?
 

yes there is and its kind of easy! :)

you must use Zunimassa set for this else your fetishes will probobly die before you get to Ghom since it summons them in town


in the file \Plugins\Trinity\Combat\Abilities\WitchDoctorCombat.cs

Find:
Code:
            // Buffs
            if (UseOOCBuff)
            {
and under that ADD: the stuff below do not remove anything in old code

For fetishes in town use this and also you MUST tick Use Fetishes off cooldown in trinity settings under witch doctor
Code:
                // Fetish Army, elites only
                if (CanCast(SNOPower.Witchdoctor_FetishArmy) && Settings.Combat.WitchDoctor.UseFetishArmyOffCooldown)
                {
                    return new TrinityPower(SNOPower.Witchdoctor_FetishArmy);
                }
 
Last edited:
yes there is and its kind of easy! :)

you must use Zunimassa set for this else your fetishes will probobly die before you get to Ghom since it summons them in town


in the file \Plugins\Trinity\Combat\Abilities\WitchDoctorCombat.cs

Find:
Code:
            // Buffs
            if (UseOOCBuff)
            {
and under that ADD: the stuff below do not remove anything in old code

For fetishes in town use this and also you MUST tick Use Fetishes off cooldown in trinity settings under witch doctor
Code:
                // Fetish Army, elites only
                if (CanCast(SNOPower.Witchdoctor_FetishArmy) && Settings.Combat.WitchDoctor.UseFetishArmyOffCooldown)
                {
                    return new TrinityPower(SNOPower.Witchdoctor_FetishArmy);
                }

ty I love you.
 
Back
Top