before the new version i did not have this problem, but now since i finally hit 68 im using the Howling Fjord profile 68-74 and new honorbuddy. Basically, when my toon use health funnel it stops working for 20-30 seconds and sometimes longer, some add can come and attack me and still won't move. this is my log
Update: I'm pretty sure this health funnel problem comes from this part: Code: while (Me.HealthPercent > 65 && Me.Pet.HealthPercent < 90) { Thread.Sleep(200); } Because he always stops working after health funnel exactly until the pet has gained 90% life, which can take some time if health funnel isnt up anymore Maybe someone here has a quick workaround for this, because its really annoying.
Sorry guys, found no edit button here but it seems I've found a fix by myself. The following code fixes the problem for me: Code: while (Me.HealthPercent > 65 && Me.Pet.HealthPercent < 90 && Me.Pet.Buffs.ContainsKey("Health Funnel")) { Thread.Sleep(200); }
I have the same problem he'll cast health funnel then just sit there until the voidwalker is at 100 percent health, which could be a minute or two. And even if the voidwalker is attacked he'll just wait until the void is dead to defend himself and actually do something. I'm using Mike's affliction warlock custom class 2.0, I also have the latest version of honor buddy. I went to edit what you suggested in the custom class, but the code wasn't exacly like yours, so I wanted to ask before I edit anything. Here is what I'm pretty sure I should edit, but did not yet because it's a little different then yours. if (SpellManager.KnownSpells.ContainsKey("Health Funnel") && Me.GotAlivePet && Me.Pet.HealthPercent < 50 && !Me.Pet.Buffs.ContainsKey("Health Funnel")) { slog("Heal the pet."); HealthFunnel(); Could you tell me exactly what to change? I have an idea but would like an okay first. Hope to hear from you soon and have a good one bud.
Nope, thats the wrong part. I just looked into that affliction CC. You can find the part I've posted above at line number 586.
This is a great fix. I can post this is in mikes affliciton warlock cc thread if you want me to. This is the biggest bug from what I can read.