• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Honorbuddy stops working after health funnel

    Discussion in 'Archives' started by 98cwtyper, Feb 4, 2010.

    1. 98cwtyper

      98cwtyper New Member

      Joined:
      Jan 15, 2010
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      1
      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
       

      Attached Files:

      • log.txt
        File size:
        52.6 KB
        Views:
        33
    2. UeloHochZwei

      UeloHochZwei New Member

      Joined:
      Jan 29, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      Confirmed, same problem over here. Sometimes it even waits until AFK after health funnel.
       
    3. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      for a start update your HB and post back if you got the same issue
       
    4. UeloHochZwei

      UeloHochZwei New Member

      Joined:
      Jan 29, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      I'm already using HB Version 1.245. Here is a part of yesterdays log:
       

      Attached Files:

      • Log.txt
        File size:
        729.2 KB
        Views:
        44
    5. UeloHochZwei

      UeloHochZwei New Member

      Joined:
      Jan 29, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    6. UeloHochZwei

      UeloHochZwei New Member

      Joined:
      Jan 29, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      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);
          }
       
    7. mriley911

      mriley911 New Member

      Joined:
      Feb 12, 2010
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    8. UeloHochZwei

      UeloHochZwei New Member

      Joined:
      Jan 29, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    9. hokumera

      hokumera New Member

      Joined:
      Jan 18, 2010
      Messages:
      152
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    10. UeloHochZwei

      UeloHochZwei New Member

      Joined:
      Jan 29, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      Sure! Would be great if this helps someody else.
       

    Share This Page