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

WD not using garg unless surrounded by a million mobs + elite.

Sincerely

Member
Joined
Mar 30, 2014
Messages
473
Reaction score
0
How can I get it to cast the garb everytime its up from cooldown?

it dosent seem to use it against elites eve, unless its elite + lots of white mobs, the cooldown is so short it can be up a lot, anyone know how to fix this?
 
Code:
if (hasWrathfulProtector && TargetUtil.IsEliteTargetInRange(30f) || TargetUtil.AnyMobsInRange(30, 5))
                    {
                        return new TrinityPower(SNOPower.Witchdoctor_Gargantuan);
                    }

TargetUtil.AnyMobsInRange(30, 5) : 30 is the range, 5 is the minimum number of mobs. You can change this as you please. You would replace the block under the text "// Gargantuan Wrathful Protector, 15 seconds of smash, use sparingly!" in "WitchDoctorCombat.cs".

This is assuming you are using the Wrathful Protector rune?
 
yeah im using wrathful rune, but its still not cast everytime its off cooldown or even everytime I engage an elite, if that default is 5 mobs it should be getting cast fairly often and its not.

what do you mean replace the block of text?
 
yeah im using wrathful rune, but its still not cast everytime its off cooldown or even everytime I engage an elite, if that default is 5 mobs it should be getting cast fairly often and its not.

what do you mean replace the block of text?

In the file, find the text ""// Gargantuan Wrathful Protector, 15 seconds of smash, use sparingly!" and replace the block of text under it with the text I provided :)

Edit: And 5 is not default, I modified it to your needs.
 
With the latest trinity update, my bot started casting Wrathful protector at Ghom's portal....
I had to change the range of this to 20f instead of 30f to fix the problem.

Thanks
 
can anyone tell me what file I need to open to edit the settings people have listed above?
 
My cooldown very fast too, i like to use my Gargantuan and Big Bad VooDoo skill when come some mobs + elites and single boss too..

some help?

TKS..
 
My solution is like this

// Gargantuan Wrathful Protector, 15 seconds of smash, use sparingly!
//if (hasWrathfulProtector && TargetUtil.IsEliteTargetInRange(30f))
if (hasWrathfulProtector && (TargetUtil.AnyMobsInRange(30, 2)) || TargetUtil.IsEliteTargetInRange(30f))

{
return new TrinityPower(SNOPower.Witchdoctor_Gargantuan);
}
and it works fine for now
 
Back
Top