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

Big Bad Voodoo on trash moobs help !!

bleander

New Member
Joined
Nov 23, 2013
Messages
53
Reaction score
0
Is there a way to put bot using the skill big bad voodoo on trash mobs ?
The reason is that Kukri weapon cooldown on big bad voodoo will help alot on trash mobs to and atm bot only using it on elites .

Thx in advance for any help !!
 
I need that options too.. still im searcn way for bbv for all mobs
 
Is there a way to put bot using the skill big bad voodoo on trash mobs ?
The reason is that Kukri weapon cooldown on big bad voodoo will help alot on trash mobs to and atm bot only using it on elites .

Thx in advance for any help !!

Replace the Big Bad Voodoo code from WitchDoctorCombat.cs with this and change the colored number (# of trash mobs) to one you like:

Code:
if (CanCast(SNOPower.Witchdoctor_BigBadVoodoo) &&
                    (TargetUtil.AnyMobsInRange(30, [COLOR="#FF0000"]8[/COLOR]) || TargetUtil.EliteOrTrashInRange(25f) || (CurrentTarget.IsBoss && CurrentTarget.Distance <= 30f)))
                {
                    return new TrinityPower(SNOPower.Witchdoctor_BigBadVoodoo);
                }
 
Replace the Big Bad Voodoo code from WitchDoctorCombat.cs with this and change the colored number (# of trash mobs) to one you like:

Code:
if (CanCast(SNOPower.Witchdoctor_BigBadVoodoo) &&
                    (TargetUtil.AnyMobsInRange(30, [COLOR="#FF0000"]8[/COLOR]) || TargetUtil.EliteOrTrashInRange(25f) || (CurrentTarget.IsBoss && CurrentTarget.Distance <= 30f)))
                {
                    return new TrinityPower(SNOPower.Witchdoctor_BigBadVoodoo);
                }
Thx alot man :) its working like a charm now :P
 
Back
Top