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

(WD) Cast Slam dance+ Garg WP on Trash

77274

New Member
Joined
May 6, 2014
Messages
7
Reaction score
0
Hello, Im trying to edit trinity to cast slam dance+ Garg wp on trash pack sizes over 5. I've tried editing plugins/trinity/combat/abilities/WitchDoctorCombat. Using this guide. But each time I reload DB I receive multiple errors. I can attach my startup log if need be.

Gargantuan Default.
Code:
// Gargantuan Wrathful Protector, 15 seconds of smash, use sparingly!
                    if (hasWrathfulProtector && TargetUtil.IsEliteTargetInRange(30f))
                    {
                        return new TrinityPower(SNOPower.Witchdoctor_Gargantuan);
                    }

Slamdance Default
Code:
 // Big Bad Voodoo, elites and bosses only
                if (CanCast(SNOPower.Witchdoctor_BigBadVoodoo) &&
                    (TargetUtil.EliteOrTrashInRange(25f) || (CurrentTarget.IsBoss && CurrentTarget.Distance <= 30f)))
                {
                    return new TrinityPower(SNOPower.Witchdoctor_BigBadVoodoo);

The build im looking to achieve: https://www.youtube.com/watch?v=k9VU4V7rlTo

Any help would be muchly appreciated! Thank you!
 
Back
Top