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

Use zombiebears more often...

thatsmee

New Member
Joined
Mar 1, 2013
Messages
12
Reaction score
0
hey

how can i change the bot so that he uses zombiebears more frequently? he just keeps spamming poison dart until a mob comes at melee range, only then he uses zombiebears :mad:
the farming speed could be way higher if the bot would use zombiebears way more frequently


thank you
 
hey

how can i change the bot so that he uses zombiebears more frequently? he just keeps spamming poison dart until a mob comes at melee range, only then he uses zombiebears :mad:
the farming speed could be way higher if the bot would use zombiebears way more frequently


thank you

Try a different build - maybe without poison darts :)
 
you need change in WitchDoctor.cs radius you primary ability.
// Corpse Spiders fast-attacks Spams Spiders when mana is too low (to cast bears) @12yds or @10yds if Bears avialable
if (!UseOOCBuff && !IsCurrentlyAvoiding && Hotbar.Contains(SNOPower.Witchdoctor_CorpseSpider) && !PlayerStatus.IsIncapacitated && PlayerStatus.PrimaryResource <= 150)
{
// float fUseThisRange = 0f;
if (Hotbar.Contains(SNOPower.Witchdoctor_ZombieCharger) && PlayerStatus.PrimaryResource <= 150)
fUseThisRange = 50f;
return new TrinityPower(SNOPower.Witchdoctor_CorpseSpider, fUseThisRange, vNullLocation, -1, CurrentTarget.ACDGuid, 0, 1, WAIT_FOR_ANIM);
}
you bot will be use ability only mana is <= 150

and that
var zombieChargerRange = 8f;//hasGraveInjustice ? Math.Min(PlayerStatus.GoldPickupRadius + 8f, 20f) : 20f;

// Zombie Charger aka Zombie bears Spams Bears @ Everything from 11feet away
if (!UseOOCBuff && Hotbar.Contains(SNOPower.Witchdoctor_ZombieCharger) && !PlayerStatus.IsIncapacitated && PlayerStatus.PrimaryResource >= 134 &&
TargetUtil.AnyMobsInRange(zombieChargerRange) &&
PowerManager.CanCast(SNOPower.Witchdoctor_ZombieCharger))
{
return new TrinityPower(SNOPower.Witchdoctor_ZombieCharger, zombieChargerRange, CurrentTarget.Position, CurrentWorldDynamicId, -1, 0, 0, WAIT_FOR_ANIM);
}
 
Last edited:
Ls43w8G.jpg


Mother Russia will hear no more of this.
 
Back
Top