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

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

    1. maximo

      maximo New Member

      Joined:
      Jan 15, 2010
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      1
      Great CC, amazing work!

      I am also noticing that Remove Corruption seems to be not firing appropriately (no reference in the logs to RC and everything else is running swimmingly).
       
    2. Board25

      Board25 New Member

      Joined:
      May 14, 2011
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Hey I just got started with this and I've only been running bgs with your cc for a few hours but it's working better than I thought a bot would :p

      The only issue is it tries to target horde characters (I'm alliance) and at the bottom of honorbuddy it says POI: Kill. It looks like it's trying to focus and kill enemy healers.

      Is that from the cc or the bg bot profile?

      Anyway thanks! Keep up the good work
       
    3. umshakalaka

      umshakalaka Member

      Joined:
      Jan 10, 2011
      Messages:
      362
      Likes Received:
      3
      Trophy Points:
      18
      I don't recommend this profile, default hb profile works allot better.
      this profile wipe party almost always,this profile works only for heirloom users, otherwise it just sux.
      (tested on 3 druids 1-85, 1-60, 1-,70)
       
    4. Mazzyr

      Mazzyr Member

      Joined:
      Jan 15, 2010
      Messages:
      153
      Likes Received:
      3
      Trophy Points:
      18
      /palm

      Only one that sux here, is apparently you,
       
    5. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      If you took the time to read the first post you would know that this is for use with InstanceBuddy and to only be
      used at level 85 for dungeons and raids! Also that fact that this is a CC and not a PROFILE just shows you have not
      done any reading what so ever! I honestly don't see how you could of used this for levelling druids level 1-85 as the CC
      does not contain any attacking rotation as of yet?

      Well that is my rant over! Back to working on my project.
       
    6. kagekongen

      kagekongen Member

      Joined:
      Jun 4, 2010
      Messages:
      146
      Likes Received:
      2
      Trophy Points:
      18
      Just me or isn't it using swiftmend or regrowth?? Should really use swiftmend everytime its off cooldown atleast prio over healing touch.. And maybe even nourish when natures bounty procs and regrowth on clearcasting procs :p just throwing in my 2 cent.. Nice cc tho, nobody has died yet (except for the guy who stepped of the edge and fell in the lava >.<) and I'm crap geared :D Just a normal dungeon tho

      EDIT: or use nourish to refresh lifebloom if target is above X health to avoid it running out and heals a target with full hp (but not to avoid lifebloom from proccing if healt is lower thans like 80%) or just use it as said earlier with natures bounty for a short heal on a party member whos missing a little bit of hp.. As of now its just wasting clearcasting procs which makes me sad as my druid only has 70k mana and is running oom fast :p uuuuh and a dispel system...

      NOTE: I have not tested this for very long and if this is already implentet or I'm missing something then I'm sorry, I just want to help.
       
      Last edited: May 15, 2011
    7. hi1674

      hi1674 New Member

      Joined:
      Jan 15, 2010
      Messages:
      1,637
      Likes Received:
      5
      Trophy Points:
      0
      new Decorator(ret => !StyxWoW.Me.Combat && StyxWoW.Me.IsAlive,
      new PrioritySelector(
      new PrioritySelector(
      new Decorator(ctx => RoutineManager.Current.RestBehavior != null, RoutineManager.Current.RestBehavior),
      new Decorator(ctx => RoutineManager.Current.NeedRest,
      new Sequence(
      new Action(ret => TreeRoot.StatusText = "Resting"),
      new Action(ret => RoutineManager.Current.Rest())
      )
      )
      ),

      Will that make it not try to rest when dead ? (Code from LazyRaider)
       
    8. shrink1991

      shrink1991 Member

      Joined:
      Jan 15, 2010
      Messages:
      125
      Likes Received:
      0
      Trophy Points:
      16
      Oh my god! I wish I tried this CC out earlier. This is pure sexiness, people are like OMG your a pro healer lolol. while im youtubing^^
      Thanks alot hazard!
       
    9. nihon

      nihon Member

      Joined:
      Jan 15, 2010
      Messages:
      137
      Likes Received:
      0
      Trophy Points:
      16
      Heya , something I have noted that have caused some comments is that when the tank gets really low the CC starts to channel Tranq even if everybody else is at near max HP.

      Anyhow great CC keep up the good work :D
       
    10. shrink1991

      shrink1991 Member

      Joined:
      Jan 15, 2010
      Messages:
      125
      Likes Received:
      0
      Trophy Points:
      16
      Something I just came across, I am running your CC at the moment on a 65 dr00d. It's not letting people die that's not the problem it's doing excellent. Only thing I notice is that it doesn't use Swiftmend. Do you have it implemented? And under what conditions?

      Thanks for an answer.
       
    11. Truman422

      Truman422 Member

      Joined:
      Jan 10, 2011
      Messages:
      198
      Likes Received:
      14
      Trophy Points:
      18
      I added this myself to Hazard's code, and it seems to make swiftmend work a little more frequently.
      Code:
                          if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp > 70 && CC("Swiftmend"))
                          {
                              s = "Swiftmend";
                          }
                          else if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp > 50 && CC("Regrowth"))
                          {
                              s = "Regrowth";
                          }
                          else if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp < 50 && CC("Healing Touch"))
                          {
                              s = "Healing Touch";
                          }
                          else
                          {
                              if (Me.ActiveAuras.ContainsKey("Clearcasting") && !CC("Swiftmend"))
                              {
                                  s = "regrowth";
                              }
                          }
      
      I added this right above the code below
      Code:
                          if (s != null && CC(s, tar))
                          {
                              if (!C(s, tar))
                              {
                                  Logging.Write("castfail move to " + tar);
                              }
                              if (!needCast)
                              {
                              }
                              return true;
                          }
      
      Also, while in there, hazard has swiftmend working at 45% health or less, so you can look for the code that starts it out, right below
      Code:
      double hp = tar.HealthPercent;
      
      and change the hp < 45 to 85 or 90 or something, and that should also improve the useage.
       
    12. shrink1991

      shrink1991 Member

      Joined:
      Jan 15, 2010
      Messages:
      125
      Likes Received:
      0
      Trophy Points:
      16
      Thanks alot Truman422, will definately try this out! :D
       
    13. Innit

      Innit New Member

      Joined:
      Jan 15, 2010
      Messages:
      45
      Likes Received:
      0
      Trophy Points:
      0
      Works awesome! I even get comments such as ' Great Healer' Or 'n1 Healer don't know how we survived that'.

      I'm still mostly in feral gear :D

      One problem, it doesn't seem to want to cleanse is that normal or?
       
    14. froggystyle

      froggystyle New Member

      Joined:
      Jan 8, 2011
      Messages:
      305
      Likes Received:
      0
      Trophy Points:
      0
      very nice wish it wouldnt use rebirth when outta combat o_O
       
    15. btaddict

      btaddict New Member

      Joined:
      Mar 30, 2010
      Messages:
      301
      Likes Received:
      0
      Trophy Points:
      0
      I agree...plus it uses rebirth on weird group members...let's say tank and mage dps are both dead..it tries to brez the mage....
      granted the mage had more stamina than the tank....but still....it recognized the tank correctly when it joined the group.
       
    16. froggystyle

      froggystyle New Member

      Joined:
      Jan 8, 2011
      Messages:
      305
      Likes Received:
      0
      Trophy Points:
      0
      so i tried to use this both versions in TB under lazyraider didnt work also tried combat/healbot does anyone else have this problem?
       
    17. primo

      primo New Member

      Joined:
      Sep 19, 2010
      Messages:
      1,059
      Likes Received:
      0
      Trophy Points:
      0
      hazz i dont know but for some reason this version sucks for me the tank keep dying went back to the old one again and no trouble at all
       
    18. ryo129

      ryo129 New Member

      Joined:
      Dec 11, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      1
      Where can i find the older version of this CC? i've been having issues since i upgraded
       
    19. hazard

      hazard Well-Known Member Buddy Store Developer

      Joined:
      Sep 16, 2010
      Messages:
      1,854
      Likes Received:
      59
      Trophy Points:
      48
      Update: Version 1.1.5
      .Regrowth full fixed! (Tested)
      .Clearcasting aura now used (Tested)
      .New emergency heal rotation (Tested)

      We owe this marvellous update to shrink1991 who took
      the time to amend these issue wise I have been a little busy.
      I have already tried out the CC on several Dungeons and Raids
      and was very impressed with the outcome :)


      ALL CREDIT GOES TO shrink1991 FOR THIS UPDATE!
       
    20. kimaasen

      kimaasen Member

      Joined:
      Apr 26, 2011
      Messages:
      66
      Likes Received:
      0
      Trophy Points:
      6
      i've GOT to roll another druid so I can test this one out :-D
       

    Share This Page