What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Superbad (Druid CC)

Status
Not open for further replies.
I've read on fluiddruid forums that its a ~300dps gain. :)

But actually i am not sure how it fits into our priority list.

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
 
AW: Superbad

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

Leafkiller / aegixx allready confirmed that.
Leafkiller's ovale script also misses their newest simcraft additions. The update was not pushed to curse yet.
 
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.
 
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. :'(
 
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.
 
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.

:-) Trinkets will be added! Yiiihaa
 
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)
 
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. :'(
I agree with you on that, PvP... nah useless :)
 
Status
Not open for further replies.
Back
Top