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

WD - decrease corrupt growth attack range

lcatlas

Member
Joined
Nov 17, 2012
Messages
41
Reaction score
0
Is there any way to decrease attack range for corrupt growth at act 4 to melee combat for witch doctor? So the dog will kill it with a Burning rune. Takes alot of time with Rain of toads.

Thanks alot for your answer.
 
Is there any way to decrease attack range for corrupt growth at act 4 to melee combat for witch doctor? So the dog will kill it with a Burning rune. Takes alot of time with Rain of toads.

Thanks alot for your answer.

+1 for this

been wanting to change the attack distance of plague of toads for months now... seems to attack from to far away with any attack.
currently using addling toads and keeps attacking even when enemy's are almost out of strike zone... ..

tried changing
if (Hotbar.Contains(SNOPower.Witchdoctor_PlagueOfToads))
return new TrinityPower(SNOPower.Witchdoctor_PlagueOfToads, 12f, CurrentTarget.Position);

to

if (Hotbar.Contains(SNOPower.Witchdoctor_PlagueOfToads))
return new TrinityPower(SNOPower.Witchdoctor_PlagueOfToads, 6f, CurrentTarget.Position);

didnt do anything..
and its the only line in WDcombat with any kind of distance indication for this PlagueOfToads skill

any idea's how to change that attack distance?

greets lytylisius
 
open Plugins\Trinity\Combat\Abilities\WitchDoctorCombat.cs

find
Code:
// Plague Of Toads 
                    if (CanCast(SNOPower.Witchdoctor_PlagueOfToads))
                    {
                        WitchDoctorCombat.VisionQuestRefreshTimer.Restart();
                        return new TrinityPower(SNOPower.Witchdoctor_PlagueOfToads, basicAttackRange, CurrentTarget.ACDGuid);
                    }

change basicAttackRange to something you like (it's 35f the value of basicAttackRange)

HTH
 
Hello, thanks, is it
basicAttackRange == 5f
or basicAttackRange (5f)
 
Change it to 5f and that is all. I don't think this will work very well in combat though as he won't be using toads from any more than 5f away from anything.
 
Tried both - not working. Bot just standing and running, nothing more. And i don't want to decrease PlagueOfToads range to be honest, need to decrease corrupt growth attack range with any abilities.
 
Tried both - not working. Bot just standing and running, nothing more. And i don't want to decrease PlagueOfToads range to be honest, need to decrease corrupt growth attack range with any abilities.

Well, you need to change completely "basickAttackRange" with "5f" like:
Code:
// Plague Of Toads 
                    if (CanCast(SNOPower.Witchdoctor_PlagueOfToads))
                    {
                        WitchDoctorCombat.VisionQuestRefreshTimer.Restart();
                        return new TrinityPower(SNOPower.Witchdoctor_PlagueOfToads, [b]5f[/b], CurrentTarget.ACDGuid);
                    }

if you want to decrease the attack range for corrupt growth, you must find the SNO of that creature and add an if statement that lowers the basicAttackRange.
 
Thanks, but still not working, wd attacking with toads from 20-30f (
 
Back
Top