• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [PAID] HazzDruid [Premium Edition]

    Discussion in 'Druid' started by hazard, Feb 7, 2011.

    1. ShortRound

      ShortRound New Member

      Joined:
      Jun 14, 2011
      Messages:
      781
      Likes Received:
      14
      Trophy Points:
      0
      BG bear? Gimme gimme gimme.
       
    2. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      oops, forgot to put the priority's back in order from by debugging.
      give me a few minutes to change them and re-upload.
       
      Last edited: Feb 16, 2012
    3. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      Fixed. Sorry about that :eek:
       
    4. buzzerbeater

      buzzerbeater Well-Known Member

      Joined:
      Mar 21, 2011
      Messages:
      5,419
      Likes Received:
      28
      Trophy Points:
      48
    5. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      Try the 3.7 fix that I just re-uploaded 2 minutes ago. The talent trees can be found on the first post.
      Also un-tick the Self healing box under the Balance tab.
       
    6. domes

      domes New Member Legendary

      Joined:
      Aug 25, 2010
      Messages:
      68
      Likes Received:
      0
      Trophy Points:
      0
      Is the new feral cat/bear just for pve?
       
    7. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      No. PvP as well but if you want automated movement you need to use HazzFollow.
       
    8. killer20022

      killer20022 New Member

      Joined:
      Dec 29, 2011
      Messages:
      77
      Likes Received:
      0
      Trophy Points:
      0
      I've used this for like 2 days now and have NEVER seen it use Healing Touch for "oh shit" moments. It only spams Nourish. Is tthere a reeason?
       
    9. Krizid

      Krizid Member

      Joined:
      Jul 8, 2011
      Messages:
      93
      Likes Received:
      1
      Trophy Points:
      8
      i've noticed same problem. HB Log shows its casting HT but ingame its actually casting Nourish
       
    10. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      probably b/c this, but it seems like it should still cast healing touch. I dont know anything about druids. How long does nourish take to cast?


      PHP:
      if (tar.HealthPercent HazzDruidSettings.Instance.HealingTouchPercent && Me.ActiveAuras.ContainsKey("Harmony"))
                          {
                              
      Logging.Write("Healing Touch");
                              
      C("Nourish"tar);
                              
      C("Healing Touch"tar);
                              return 
      true;
                          }

       
      Last edited: Feb 18, 2012
    11. Goldz

      Goldz New Member

      Joined:
      Dec 16, 2010
      Messages:
      206
      Likes Received:
      2
      Trophy Points:
      0
      having problems, set up the cc, go to attack and nothing, just stands there auto attacking!
       

      Attached Files:

    12. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      Your using LazyRaider. You have to move the character wise using LazyRaider.
       
    13. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      Nourish is a 3 second cast and I have no idea why it will not cast straight after Nourish as it is set to in the CC.
       
    14. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      I would try breaking up this up a little more. Your logging statement doesn't really help you track what is going on very well. All it really confirms for you is that the targets healthpercent is below your setting and that the target has harmony. You dont really know much about the spells being cast. One thing you could do is put a logging statement in your cast method. This way you don't need to include it before each cast b/c it is part of your casting routine anyway.

      Also, I noticed you aren't using your cancast methods. They could be very useful here. So instead of telling your CC to cast nourish and then cast healing touch, you can say if it can cast nourish, do it. Then if it can cast healing touch, do it. I would then put a logging statement in between so I could see, nourish was successfully cast for this situation, and then see if it was followed by a healing touch.

      I think this should help your debugging a bit.
       
    15. hurleyx10

      hurleyx10 New Member

      Joined:
      Feb 16, 2012
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      0
      I'm not using LazyRaider and this CC does not follow the target. Using it for BGBUddy

      I'm also using HazzFollow and that bot does not follow the target still. It will move, but if the target moves behind me, he will sit there saying I need to face my target.

      Do I need to modify the plugin?
       
    16. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      I have already tried breaking it up with the following statement but it still does not cast Healing Touch after Nourish.
      PHP:
                          if (tar.HealthPercent HazzDruidSettings.Instance.HealingTouchPercent && Me.ActiveAuras.ContainsKey("Harmony"))
                          {
                              
      Logging.Write("Nourish");
                              
      C("Nourish"tar);

                              if (
      tar.HealthPercent HazzDruidSettings.Instance.HealingTouchPercent && Me.ActiveAuras.ContainsKey("Harmony"))
                              {
                                  
      Logging.Write("Healing Touch");
                                  
      C("Healing Touch"tar);
                                  return 
      true;
                              }
                          }
       
    17. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Ohhh In your cast method, you return false if you are already casting. You could try sleeping for 3 seconds. Make sure you put some break conditions in so you dont make an infinite loop.

      something like...

      PHP:
      while(Me.IsAlive && Me.IsCasting){
          
      Threading.Sleep(100);
      }
      I did 100ms, so it should sleep 30 times. Im not a fan of telling something to sleep for long iterations.
       
      Last edited: Feb 18, 2012
    18. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      Thank you jasf10 I think it is working now but I would like to BETA test it some more. Is there anything else that needs fixing guys? I am trying to get all the bugs out before I release a final 3.8
       
    19. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      [​IMG]

      Item Level: 382
      Gems: None
      Enchants: None
       
    20. Obliv

      Obliv New Member

      Joined:
      Oct 18, 2011
      Messages:
      636
      Likes Received:
      6
      Trophy Points:
      0
      Haven't been able to test it yet, but just curious if you can manually switch forms and it continue the rotation in that form?

      Will be playing with it all day tomorrow if it does. :)
       

    Share This Page