• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Durid - Quick, Simple, Fast Feral CC

    Discussion in 'Archives' started by Apoc, Dec 31, 2010.

    1. Apoc

      Apoc Moderator Staff Member Moderator

      Joined:
      Jan 16, 2010
      Messages:
      2,790
      Likes Received:
      94
      Trophy Points:
      48
      Yup. It's incredibly simple. No config. No support. Feral only.

      It should work fine in PvE (I'm running it now on my questing druid). And should work great in PvP.

      Major kudos to regecksqt, as I basically ripped his kitty logic.

      I will not be supporting this CC

      If I make changes for my own usage, I'll post it, but don't expect me to come to your every beck and call to resolve issues. It works for me, and that's really all I'm concerned about.

      It does not use bear form. Nor is it written to support lower levels.

      If it does, great, but it's not an intended behavior.

      This CC is in response to an absolute lack of *decent* feral CCs. Especially in PVP. (Sorry fpsware, but your CC just doesn't cut it for me, it's too slow, and too stupid about rotations)

      http://dl.dropbox.com/u/2068143/Durid.7z

      Enjoy.
       
      madman likes this.
    2. papathick

      papathick New Member

      Joined:
      Dec 29, 2010
      Messages:
      89
      Likes Received:
      0
      Trophy Points:
      0
      ok so I downloaded it, now how do I get it to work?
       
    3. nlr

      nlr New Member

      Joined:
      Feb 24, 2010
      Messages:
      252
      Likes Received:
      0
      Trophy Points:
      0
      I hope you're joking, what bit didn't you understand?

      Extract the folder and put it in your CustomClasses folder which is located in your HonorBuddy Directory.

      Regards,
      Nick.
       
      Last edited: Dec 31, 2010
    4. papathick

      papathick New Member

      Joined:
      Dec 29, 2010
      Messages:
      89
      Likes Received:
      0
      Trophy Points:
      0
      I wasn't necessarily asking him, I'm asking anyone willing to answer, but thanks for your constructive post.
       
    5. Apoc

      Apoc Moderator Staff Member Moderator

      Joined:
      Jan 16, 2010
      Messages:
      2,790
      Likes Received:
      94
      Trophy Points:
      48
      Put the folder in the CustomClasses folder of your HB install.
       
    6. Cracktomte

      Cracktomte Member

      Joined:
      Mar 7, 2010
      Messages:
      430
      Likes Received:
      13
      Trophy Points:
      18
      To clarify, it's compressed using 7-zip. :)

      Edit: If someone doesn't know about the extension.
       
    7. Kickazz006

      Kickazz006 Well-Known Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      20,567
      Likes Received:
      302
      Trophy Points:
      83
      I tested it w/ feral druid, works great.

      Apoc, if you disapprove of the below text, feel free to edit / delete

      If you guys are using it for pve and you don't want it to cast (or sometimes attempt to cast) Shred, clear out line 109 or // it out of the DuridRoutine.Combat file

      Code:
      CreateCast("Shred", ret => IsBehind(Me.CurrentTarget)),
      to:
      //CreateCast("Shred", ret => IsBehind(Me.CurrentTarget)),
      
      I did notice it try to cast it a couple of times in pve with the target facing me, not a big deal to simply disable it :)
       
    8. gimik

      gimik New Member

      Joined:
      Jul 18, 2010
      Messages:
      1,326
      Likes Received:
      5
      Trophy Points:
      0
      Anyone know how to make it cast Ravage after it uses Feral Charge (cat)? Cause it will leap towards them, then i get the stampede buff where my Ravage requires no stealth and the CC never casts it = (
       
    9. darkwing

      darkwing New Member

      Joined:
      Oct 30, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      at last no INVIS yay! fast pulling combat. ty mate
       
      Last edited: Jan 3, 2011
    10. tjea

      tjea New Member

      Joined:
      Dec 30, 2010
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      I'd love this as well. It seems to be in the code, but I googled and found some code from Ensemble, in which it was commented that it's bugged and that you have to do it in some other way. However, I'm not skilled enough to get it to work.

      C# | using System; using System.Collections.Generic; us
       
    11. Apoc

      Apoc Moderator Staff Member Moderator

      Joined:
      Jan 16, 2010
      Messages:
      2,790
      Likes Received:
      94
      Trophy Points:
      48
      You may be able to change the spell to "Ravage!" and have it work. I can't test atm, so don't take my word for it. The spells are different though.

      Code:
                              new Decorator(
                                  ret => IsBehind(Me.CurrentTarget) && Me.HasAura("Stampede"),
                                  CreateCast("Ravage")),
      Becomes

      Code:
                              new Decorator(
                                  ret => IsBehind(Me.CurrentTarget) && Me.HasAura("Stampede"),
                                  CreateCast("Ravage!")),
       
    12. gimik

      gimik New Member

      Joined:
      Jul 18, 2010
      Messages:
      1,326
      Likes Received:
      5
      Trophy Points:
      0
      Huh, i tried this fix and still nothing. I mean its not a big deal, my druid still tears through mobs in 5 seconds so no biggie, just weird its not working. Great CC Apoc!
       
    13. aquad

      aquad New Member

      Joined:
      Dec 30, 2010
      Messages:
      29
      Likes Received:
      2
      Trophy Points:
      0
      I added using Healing Touch if Predator's Swiftness is up.

      Code:
       new PrioritySelector(
                          CreateSelfBuff("Regrowth", ret => Me.HealthPercent < 50),
                          CreateSelfBuff("Rejuvenation", ret => Me.HealthPercent <= 60),
      
                          // War stomp for healing touch. Kthx.
                          new Decorator(
                              ret => Me.HealthPercent < 40,
                              new PrioritySelector(
                                  CreateCast("War Stomp"),
                                  CreateSelfBuff("Healing Touch", ret => Me.HealthPercent < 40))),
      
                          CreateSelfBuff("Innervate", ret => Me.ManaPercent < 30)
                          ));
      to
      Code:
       new PrioritySelector(
                          CreateSelfBuff("Healing Touch", ret => Me.HealthPercent < 45 && Me.HasAura("Predator's Swiftness")),
                          CreateSelfBuff("Regrowth", ret => Me.HealthPercent < 50),
                          CreateSelfBuff("Rejuvenation", ret => Me.HealthPercent <= 60),
      
                          // War stomp for healing touch. Kthx.
                          new Decorator(
                              ret => Me.HealthPercent < 40,
                              new PrioritySelector(
                                  CreateCast("War Stomp"),
                                  CreateSelfBuff("Healing Touch", ret => Me.HealthPercent < 40))),
      
                          CreateSelfBuff("Innervate", ret => Me.ManaPercent < 30)
                          ));
       
    14. tjea

      tjea New Member

      Joined:
      Dec 30, 2010
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Can't get it to work. :(
       
    15. Hi on Helium

      Hi on Helium New Member

      Joined:
      Jan 22, 2010
      Messages:
      252
      Likes Received:
      3
      Trophy Points:
      0
      note: if you're using the for PvE it probably won't work most of the time(atleast when facing aggresive mobs) because you aren't stealth so as soon as your go behind them with feral charge they will face you. the code says: ret => IsBehind(Me.CurrentTarget) && Me.HasAura("Stampede") so you must be behind the target otherwise it won't use the spell. I'm no coder so I'm not sure what you would change it too but that looks to be the problem.

      Thanks Apoc! I look forward to using this CC if I ever choose to respec to feral =)
      -HoHv2
       
    16. tjea

      tjea New Member

      Joined:
      Dec 30, 2010
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Yeah, I know. I tried removing the "IsBehind(Me.CurrentTarget) &&"-part just to see if it works, and it still doesn't.

      although I've noticed that when I have the Stampede buff, I can use Ravage from the front. Try it if it's the same for you.
       
    17. regecksqt

      regecksqt New Member

      Joined:
      Dec 19, 2010
      Messages:
      49
      Likes Received:
      4
      Trophy Points:
      0
      instead of CreateCast(Ravage!) you need to do
      Code:
      new TreeSharp.Action(a => WoWSpell.FromId(81170).Cast())
      or similar, its a bug with spells.bin
       
    18. Apoc

      Apoc Moderator Staff Member Moderator

      Joined:
      Jan 16, 2010
      Messages:
      2,790
      Likes Received:
      94
      Trophy Points:
      48
      The spell exists in Spells.bin, it's just a weird spell. (You only 'know' it when its context is valid, then you 'unlearn' it)
       
    19. atg68

      atg68 New Member

      Joined:
      Oct 19, 2010
      Messages:
      933
      Likes Received:
      6
      Trophy Points:
      0
      i was using fpsware's druid.. and i have to say this one is so much better.. it actually uses all the cat skills... thanks for the hassle free CC
       
    20. Hi on Helium

      Hi on Helium New Member

      Joined:
      Jan 22, 2010
      Messages:
      252
      Likes Received:
      3
      Trophy Points:
      0
      this is making me really want to respec feral on my balance level 72 druid...I might just do the howling forge quests to get a feral gear set since I got balance at Borean Tundra.

      Looking great and I hope to use this soon!
      -HoHv2
       

    Share This Page