• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Superbad (Druid CC)

    Discussion in 'Archives' started by handnavi, Oct 13, 2012.

    Thread Status:
    Not open for further replies.
    1. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
      AW: Superbad

      Hmmm, did you update on your own?
      Try a new install please :/
       
    2. tsatsa

      tsatsa Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      596
      Likes Received:
      5
      Trophy Points:
      18
      It's not confirmed on any other theorycrafting site (mmo-champ, EJ, rawr) nor included in the leafkiller ovale script... I would wait a while for confirmations before including it into the CC
       
    3. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
      AW: Superbad

      Leafkiller / aegixx allready confirmed that.
      Leafkiller's ovale script also misses their newest simcraft additions. The update was not pushed to curse yet.
       
    4. tsatsa

      tsatsa Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      596
      Likes Received:
      5
      Trophy Points:
      18
      Excellent to know then :)
       
    5. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
      AW: Superbad

      Jup. :)

      Dont know what to do now... besides adding hotkeys.
      This seems to be pretty close to perfect now. :/
       
    6. rock2009

      rock2009 New Member

      Joined:
      Jun 18, 2012
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0
    7. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
    8. tsatsa

      tsatsa Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      596
      Likes Received:
      5
      Trophy Points:
      18
    9. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
    10. rock2009

      rock2009 New Member

      Joined:
      Jun 18, 2012
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0
      why? :( i dont find any plugin for War Stomp - Spell - World of Warcraft ... it really needed ;)
      can also add shapeshifting when rooted/slowed?

      I would like to see more options that was in old JungleBook :eek:
      Thank you for your amazing job ! :cool:
       
      Last edited: Oct 22, 2012
    11. judgedread

      judgedread New Member

      Joined:
      Sep 12, 2012
      Messages:
      152
      Likes Received:
      2
      Trophy Points:
      0
      Handnavi, I had these in the common.cs file for singulars cc (as their methods didn't work) and just called the methods in the Feral.cs file, seemed to work good in pvp.
      I'm sure you can implement a much more dynamic less repetitive design, but here's some code to copy and paste if it helps

      public static Composite CreateEscapeRooted()
      {
      return new Decorator(
      ret => !StyxWoW.Me.HasAura("Might of Ursoc") &&
      (StyxWoW.Me.HasAura("Entangling Roots") ||
      StyxWoW.Me.HasAura("Mass Entanglement") ||
      StyxWoW.Me.HasAura("Earthbind") ||
      StyxWoW.Me.HasAura("Frost Nova") ||
      StyxWoW.Me.HasAura("Ice Ward") ||
      StyxWoW.Me.HasAura("Frost Shock") ||
      StyxWoW.Me.HasAura("Ice Trap") ||
      StyxWoW.Me.HasAura("Entrapment") ||
      StyxWoW.Me.HasAura("Web") ||
      StyxWoW.Me.HasAura("Chains of Ice") ||
      StyxWoW.Me.HasAura("Void Tendril's Grasp") ||
      StyxWoW.Me.HasAura("Void Tendrils Grasp") ||
      StyxWoW.Me.HasAura("Remorseless Winter", 5) ||
      StyxWoW.Me.HasAura("Void Tendrils") ||
      StyxWoW.Me.HasAura("Freeze")),
      new Sequence(
      new Action(
      ret =>
      Lua.DoString("RunMacroText(\"/Cast !Cat Form\")")
      )
      )
      );
      }

      public static Composite CreateEscapeCc()
      {
      return new Decorator(
      ret => StyxWoW.Me.HasAura("Frozen") ||
      StyxWoW.Me.HasAura("Hammer of Justice") ||
      StyxWoW.Me.HasAura("Bear Hug") ||
      StyxWoW.Me.HasAura("Mighty Bash") ||
      StyxWoW.Me.HasAura("Hungering Cold") ||
      StyxWoW.Me.HasAura("Shockwave") ||
      StyxWoW.Me.HasAura("Howl of Terror") ||
      StyxWoW.Me.HasAura("Fear") ||
      StyxWoW.Me.HasAura("Psychic Scream") ||
      StyxWoW.Me.HasAura("Blood Fear") ||
      StyxWoW.Me.HasAura("Deep Freeze") ||
      StyxWoW.Me.HasAura("Asphyxiate") ||
      StyxWoW.Me.HasAura("Frostjaw") ||
      StyxWoW.Me.HasAura("Intimidating Shout") ||
      StyxWoW.Me.HasAura("Remorseless Winter", 5) ||
      StyxWoW.Me.HasAura("Fist of Justice"),
      new Sequence(
      new Action(
      ret =>
      Lua.DoString("RunMacroText(\"/Use Dreadful Gladiator's Medallion of Tenacity\")")
      )
      )
      );
      }

      You can replace the trinket name or add multiple trinket types, i just set it to the dreadful as that's what my druid has atm.
       
    12. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
      I just pushed 2 new versions.
      They include only fixes for Feral Cat dps.

      I added Ravage! on Stampede (4 x PVP set bonus) and added newest simcraft additions.


      I will think about the PvP stuff.
      Currently i am pretty sure, that i hate PvP. I have never done PvP and i sweared to myself that i wont do anything with it. :'(
       
    13. paaco1981

      paaco1981 New Member

      Joined:
      May 1, 2010
      Messages:
      102
      Likes Received:
      0
      Trophy Points:
      0
      Thanks for keeping this up and constantly making improvements Handnavi, loving it so far. Only thing I can think of right now that I would love to see is an option to use Trinkets :) Although this thing runs so well now that its really not something we have to have it could only make things better I would think.
       
    14. Danamian

      Danamian New Member

      Joined:
      Jan 15, 2010
      Messages:
      77
      Likes Received:
      0
      Trophy Points:
      0
      Thanks for this, its just good!

      Btw can you make it stop spam log in hb?
       
    15. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
      :) Trinkets will be added! Yiiihaa
       
    16. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
      Thanks for positive feedback! :]
      Dont know how to stop the spam - its just trying to push the buttons as hard as possible :D
       
    17. handnavi

      handnavi Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,489
      Likes Received:
      59
      Trophy Points:
      48
      AW: Superbad

      I have heard rumors about sublety. :confused:
       
    18. judgedread

      judgedread New Member

      Joined:
      Sep 12, 2012
      Messages:
      152
      Likes Received:
      2
      Trophy Points:
      0
      Without a pvp aspect to ur cc not as many ppl will use it, i would like to convert to it, however without pvp sequence i'll continue to edit singulars cc (for feral) because we need interupts on target casting, usage of stuns etc.. i can do everything i need in relation to this by altering Singulars feral.cs/common.cs files. Quite easy to add a GUI also.

      Just a few things need to be added and able to be customized to make it pvp friendly not many. :D

      Plugins like Ultimate PVP Suite will take care of the target priorities and trinkets etc... (for pvp that is)
       
    19. Soeski

      Soeski Member

      Joined:
      Jan 15, 2010
      Messages:
      971
      Likes Received:
      2
      Trophy Points:
      18
      I agree with you on that, PvP... nah useless :)
       
    20. rock2009

      rock2009 New Member

      Joined:
      Jun 18, 2012
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0
      what about shapeshifting when rooted? :confused:
       
    Thread Status:
    Not open for further replies.

    Share This Page