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.
Does the CC support Frame Lock and what is the address for the public SVN?

Hello frc3260,
this Routine is not written with Behaviour Trees, so it does not use Frame Locks.
Nothing changed if you select / unselect it. (Most of the Routines you find here are written in Behaviour Trees, but i somehow do not like it. :)

There is no adress for a public SVN. The attached .zip file allready contains svn infos.
If you want to update on your own, just right click the Superbad folder.
 
awesome cc handnavi was wondering if perhaps you could make cc detect if your in pvp or bgs and use maim? but keep everything else the same. cc is doing huge damage in bgs and 1v1 just using raid rotation just need to use maim on players is all.

Yeah, but using Maim will have a big impact on our rotation.
So how should we use it?
With how many combo points?
Only if the target is casting?
 
Some pretty nice changes today:
I finally found a big bug if Auto Form was selected.
You can now use Autoform and the Bot wont stop to use any attacks. :)

If we need to rest, instant Healing Touch got now an higher priority then Rejuvenation.

Swipe / Thrash now check for targets within 8 yards. Our current target can be more away.
 
Burstkey is nice, but when you use it with questbot, he will never use it, or he will use it on regular mobs.
Why not adding just a combobox with choices when to use it ? Much easier. Combobox Berserk : Manual (burstkey), on cooldown, bosses. When Berserk active use Incarnation.

BTW : when tiger's fury is active, you can't use Berserk. When Berserk is active, you can activate Tiger's Fury.

Berserk, Tiger's Fury, Berserking and Lifeblood should not be activated when we have Bloodlust, Heroism, Time Warp, Ancient Hysteria.

The best way to use these cooldowns is to add comboxes instead of a burstkey. That way it's useable with all botbases. Trinkets have 1 min cooldown and best way is to use them on cooldwon. Overall dps is better that way. (most of the times after clearing thrash, they don't attack the boss at once, and trinket cooldown is reset).

Add a combobox for using symbiosis : manual, on cooldwon, bosses.

Sometimes you nees burst on not regular mobs. Add these to the bosslist. example what i'm using :

#region Kind of target
public bool IsBoss
{
get
{
if (Me.CurrentTarget != null
&& Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.WorldBoss)
{
return true;
}
else if (Me.CurrentTarget != null
&& Me.CurrentTarget.MaxHealth >= (65 * 1000000))
{
return true;
}
else if (Me.CurrentTarget != null
&& target.IsBoss(Me.CurrentTarget))
{
return true;
}
else if (Me.CurrentTarget != null
&& Me.Specialization == WoWSpec.DruidFeral
&& Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.Elite
&& Me.CurrentTarget.MaxHealth >= (Me.MaxHealth * FeralKittySettings.AllPrefs.EliteHealth)
&& !Me.IsInInstance
&& !Me.GroupInfo.IsInRaid)
{
return true;
}
else if (Me.CurrentTarget != null
&& Me.Specialization == WoWSpec.DruidFeral
&& Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.RareElite
&& Me.CurrentTarget.MaxHealth >= (Me.MaxHealth * FeralKittySettings.AllPrefs.EliteHealth)
&& !Me.IsInInstance
&& !Me.GroupInfo.IsInRaid)
{
return true;
}
else if (Me.CurrentTarget != null
&& Me.Specialization == WoWSpec.DruidFeral
&& Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.Rare
&& Me.CurrentTarget.MaxHealth >= (Me.MaxHealth * FeralKittySettings.AllPrefs.EliteHealth)
&& !Me.IsInInstance
&& !Me.GroupInfo.IsInRaid)
{
return true;
}
else if (Me.CurrentTarget != null
&& Me.Specialization == WoWSpec.DruidGuardian
&& Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.Elite
&& Me.CurrentTarget.MaxHealth >= (Me.MaxHealth * FeralKittySettings.AllPrefs.EliteHealthBear)
&& !Me.IsInInstance
&& !Me.GroupInfo.IsInRaid)
{
return true;
}
else if (Me.CurrentTarget != null
&& Me.CurrentTarget.Name.Contains("Training Dummy"))
{
return true;
}
else if (Me.CurrentTarget != null
&& Me.CurrentTarget.IsPlayer
&& !Me.CurrentTarget.IsFriendly)
{
return true;
}
return false;
}
}

#endregion Kind of Target

With this check he will use cooldowns when needed. Player = boss, dummy = boss, elites, rares with 4 times more hitpoints than ours = boss.

You also use the Target.cs. In the list remove Emperors Strenght in MSV section. We won't use our cooldowns on it.

Hope you have something on this post.
 
Yeah, but using Maim will have a big impact on our rotation.
So how should we use it?
With how many combo points?
Only if the target is casting?

Use if if your current target isplayer instead of rip with the same combopoints. !player = rip, player = maim.
 
just tried this for the first time at lvl 87 on a lvl 90 target dummy doin anywhere from 20k to 24k not to bad lol
 
View attachment 94661

All of a sudden I cant seem to load the routine right.
"Superbad.SuperbadSettings threw an exception"
Tried a fresh install
And both regular and beta HB
Deleted contents in all compiled as, and settings folders
Updated svn ect ect

Delete the Config folder in your Routines folder.
 
I can't get the burst key to work for the life of me.

I have it set to L-ALT and have it checked in last pane. In the lpog it tells me Burst Mode Activated but nothing goes on cooldown.
 
I can't get the burst key to work for the life of me.

I have it set to L-ALT and have it checked in last pane. In the lpog it tells me Burst Mode Activated but nothing goes on cooldown.

Did you configure it on gui page 3? :)
 
Well I mean I clicked the checkbox to turn it on. However the text below it seems like it's telling me if I click any of them that they will never be used.

Thanks for the quick reply by the way!
 
Well I mean I clicked the checkbox to turn it on. However the text below it seems like it's telling me if I click any of them that they will never be used.

Thanks for the quick reply by the way!

* never automatically. :D
 
Ohhh i thought it meant never automatically be used in the Burst Key setting. Just realized it meant without hitting the burstkey setting.

I see now, thanks!

I'll let you know if this fixes it.
 
Ehh, no. I guess I still don't understand. Can you take a screen shot of what a proper Burst Key setup would look like?
 
Status
Not open for further replies.
Back
Top