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

WD Spaming Wall of zombie help

KingTrololol

New Member
Joined
May 4, 2014
Messages
26
Reaction score
0
Hey i was wondering if anyone can tell me or help me with changing the WD combat so that it's spaming wall of zombie all the time in the fight. I changed the # of units to 1 and it's still not spaming it. It's using it more often but it's not using it like a primary skill.

This is what I have so far.

// Wall of Zombies
if (CanCast(SNOPower.Witchdoctor_WallOfZombies) &&
(TargetUtil.AnyElitesInRange(25, 1) || TargetUtil.AnyMobsInRange(25, 1) ||
((CurrentTarget.IsEliteRareUnique || CurrentTarget.IsTreasureGoblin || CurrentTarget.IsBoss) && CurrentTarget.RadiusDistance <= 25f)))
{
return new TrinityPower(SNOPower.Witchdoctor_WallOfZombies, 25f, CurrentTarget.Position);
}
 
Hey i was wondering if anyone can tell me or help me with changing the WD combat so that it's spaming wall of zombie all the time in the fight. I changed the # of units to 1 and it's still not spaming it. It's using it more often but it's not using it like a primary skill.

This is what I have so far.

Hey,

can you try this?

Code:
if (CanCast(SNOPower.Witchdoctor_WallOfZombies))
{
WitchDoctorCombat.VisionQuestRefreshTimer.Restart();
return new TrinityPower(SNOPower.Witchdoctor_WallOfZombies, 25f, CurrentTarget.Position);
}

greetings letsid
 
Back
Top