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

how to cast initial fetish army?

checkthis

New Member
Joined
Apr 8, 2014
Messages
26
Reaction score
0
hi guys,

i'm running a witchdoc with full zuni set, so my fetish army will stay until they die.
is there a way to cast them initial on beginning of each run? they are my main damage dealers and tanks and i struggle to get forward without them.
they will get casted at the first elite pack, but i often die before.
 
Have a look at Trinity 1.8.27, it has the added checkbox under WD settings that allows for that.
 
i upgraded to .27 and found the checkbox, but it still does not cast fetish army on the beginning of a run.
bot is still waiting for the first elite pack
 
hi guys,

i'm running a witchdoc with full zuni set, so my fetish army will stay until they die.
is there a way to cast them initial on beginning of each run? they are my main damage dealers and tanks and i struggle to get forward without them.
they will get casted at the first elite pack, but i often die before.

Go into the witch doctor combat.cs

Look for the Fetish Army block.

// Fetish Army, elites only
if (CanCast(SNOPower.Witchdoctor_FetishArmy) &&
(TargetUtil.EliteOrTrashInRange(30f) || TargetUtil.IsEliteTargetInRange(30f) || Settings.Combat.WitchDoctor.UseFetishArmyOffCooldown))
{
return new TrinityPower(SNOPower.Witchdoctor_FetishArmy);
}

Switch one of the elites in range to something like: TargetUtil.AnyMobsInRange(15, 1)

This will cast fetish army when any mob (not just elite) is within 15 yards
 
Back
Top