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

WitchDoctor keeps recasting Gargantuan if you use Short Mans Fingers (3x mini garg)

jadan93k

New Member
Joined
Jan 16, 2016
Messages
17
Reaction score
0
All in title :p

I use short mans finger in cube, dont know if it matters.

Bot recast garg always.
 
not a bad thing, really... you want gargs centered on you to keep them from hitting strays
 
It can be shitty because if you die and the CD isn't up (and they are your main source of damage) you're probably going to die a couple more times until the CD comes up.
 
not a bad thing, really... you want gargs centered on you to keep them from hitting strays
It's a terrible thing actually, your main source of damage having downtime is bad
having them "centered" is a complete waste of time when they would have killed the "strays" in the time it takes to resummon them
someone please fix this
 
Ok, what rune are guys using? Does it change behavior if you change runes? Is this for a specific build? If yes, which one?
 
may be Trinity can add an option for recasting gargantuan in a crowd

Code:
// Gargantuan should be cast ASAP.           
if (CanCast(SNOPower.Witchdoctor_Gargantuan)) {
    var hasAllGargs = Trinity.PlayerOwnedGargantuanCount != 0 && (!Legendary.TheShortMansFinger.IsEquipped || Trinity.PlayerOwnedGargantuanCount >= 2);
    if(!hasAllGargs) {
        return new TrinityPower(SNOPower.Witchdoctor_Gargantuan); 
    }
    if([COLOR="#FF0000"]Settings.Combat.WitchDoctor.RecastingGargantuanInACrowd[/COLOR] && Player.CurrentHealthPct > 0.6) {                     
        if(TargetUtil.AnyMobsInRange(25, 8) || TargetUtil.IsEliteTargetInRange(25f)) {
            return new TrinityPower(SNOPower.Witchdoctor_Gargantuan, 25f, TargetUtil.GetBestClusterPoint());
        }
    }
}
 
Ok, so this is a bug. I'm looking at the code and it should only recast Gargantuan with TMF if one of them dies. I'll see if I can fix it.

edit: actually, all the SNOs are there. IIRC xzjv already fixed this. Are you guys sure you have the latest version of trinity?

edit2: i'm testing it now and it's not recasting Gargantuan. Just make sure you upgrade to the latest version.This has been fixed.
 
Last edited:
yes it was my error
I needed to delete the folder entirely and extract the new version for it to work
my mistake, sorry for wasting your time and thanks for helping me
works beautifully now
 
Back
Top