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

Witch Doctor - Angry Chicken doesn't work properly

qztr

Active Member
Joined
Mar 31, 2012
Messages
1,932
Reaction score
17
As reported @ Discord.

The WD is activating chicken form as it should, but it never explodes. It simply lets the chicken form expire before re-entering.
Obviously using Manajuamas.
 
mine was also throwing exceptions non-stop. the reason is HotbarCache.cs:96 (and 97) because it tries to add the chicken's skills which are the same for 1-4 => duplicate key in dictionary. fixed it by putting "if" in front:
Code:
				if (!_skillBySnoPower.ContainsKey(power))
					_skillBySnoPower.Add(power, hotbarskill);
				if (!_skillBySlot.ContainsKey((HotbarSlot) i))
					_skillBySlot.Add((HotbarSlot) i, hotbarskill);
now it works fine - bot uses chicken explosion
 
Thats exactly what it is supposed to do, people should learn how to play the game before botting it, Angry Chicken is only used for movespeed not for the damage it does.
 
Thats exactly what it is supposed to do, people should learn how to play the game before botting it, Angry Chicken is only used for movespeed not for the damage it does.

Except the chicken completely ignores everything and the player bypasses entire rifts.
 
mine was also throwing exceptions non-stop. the reason is HotbarCache.cs:96 (and 97) because it tries to add the chicken's skills which are the same for 1-4 => duplicate key in dictionary. fixed it by putting "if" in front:
Code:
				if (!_skillBySnoPower.ContainsKey(power))
					_skillBySnoPower.Add(power, hotbarskill);
				if (!_skillBySlot.ContainsKey((HotbarSlot) i))
					_skillBySlot.Add((HotbarSlot) i, hotbarskill);
now it works fine - bot uses chicken explosion

Where exactly do you put that? Or could you just provide a .txt file to use?
 
Back
Top