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

Superbad (Druid CC)

Status
Not open for further replies.
It works now thank you handnavi. How can i get more DPS on Horridon?
EDIT: The routine is not applying incarnation: king of the jungle cool down.
 
Last edited:
It works now thank you handnavi. How can i get more DPS on Horridon?
EDIT: The routine is not applying incarnation: king of the jungle cool down.

Yeah, i know about that problem.
You should anyway use other talents.

Try natures swiftness + dream of cenarius + soul of the forest
 
i tried to donwload the routine for the first post but its the same I downloaded one month ago, how can I update this? svn didnt work
 
Yeah, i know about that problem.
You should anyway use other talents.

Try natures swiftness + dream of cenarius + soul of the forest


Just use SpellManager.Cast("Incarnation"); and he cast it.

For the buff you need to specify : if (Me.HasAura("Incarnation: King of the Jungle") ......

And everything is working fine.
 
Just use SpellManager.Cast("Incarnation"); and he cast it.

For the buff you need to specify : if (Me.HasAura("Incarnation: King of the Jungle") ......

And everything is working fine.

Thats not enough. I want an cancast, too. :)
 
Ye Mirabis!! how can we show our love for your work?

Hey paveley.

Its better you ask this question in Mirabis thread.
I'm not Mirabis father, so i cannot properly answer your question. :)

In this thread i did the work. :-P
 
Thats not enough. I want an cancast, too. :)

I use it that way

...
public string Incarnation = "Incarnation";
public string Berserk = "Berserk";
....
if (Me.CurrentTarget != null
&& Me.CurrentTarget.IsAlive
&& SpellManager.HasSpell(Berserk)
&& BerserK
&& GetSpellCooldown(Berserk).TotalSeconds <= 0
&& GetSpellCooldown(Incarnation).TotalSeconds <= 0)
{
if (SpellManager.CanCast(Berserk))
{
SpellManager.Cast(Berserk);
LogMsg(Berserk, 3);
return;
}
}

if (Me.CurrentTarget != null
&& Me.CurrentTarget.IsAlive
&& Me.ActiveAuras.ContainsKey(Berserk)
&& GetSpellCooldown(Incarnation).TotalSeconds <= 0)
{
if (SpellManager.CanCast(Incarnation))
{
SpellManager.Cast(Incarnation);
LogMsg(Incarnation, 3);
return;
}
}

.....

#region BerserK
public bool BerserK
{
get
{
if (FeralKittySettings.AllPrefs.Berserk == 1 // only use berserk and incarnation on bosses
&& IsBoss)
{
return true;
}
if (FeralKittySettings.AllPrefs.Berserk == 2) // always use berserk and incarnation
{
return true;
}
return false; // don't use
}
}
#endregion BerserK
 
Last edited:
Hmmm.
Really?
The last time i tried it, Cancast("Incarnation") always returned false.:mad:

Try my CR, you will see that it works :)

I always used your CR, but when you let us know you don't update it further because problems in your country, I made 1 by myself :)

The problems with skills are in the overrides when you look in the logs.

Before it was Incarnation override Incarnation: King of the Jungle

Now it just says Incarnation override Incarnation

Same stuff for savageroar, and there you see that HB use 52610 for savage roar ID.
 
Last edited:
Like something you can improve the dps in Superbad?? Before the dps was much higher, and now always in the last place(
 
Status
Not open for further replies.
Back
Top