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

FelMaster - the anti-button-mashing CC for LazyRaider/Combat bots

The end game demo . seems 2 keep casting FELGUARD even on SINGLE TARGET Dummy no other dummies around could it be possible next time you open it up maybe add a option to not swap pets? cause the cc blows the meters up.. just that one bad thing that seems to hold it back imo keeping me around 22k dps in firelands
 

Attachments

froggystyle, what's your client language?

Don't use the pet swap one for grinding/questing, it's not really efficient on short fights.
 
ok i been tring 2 add bloodfury (orc racial) and soul casket ( soul power) to the end game demo cc .. and i cant get it to save my life can anyone throw out the proper code for these i can add to it?
 
could use some help troubleshooting this.

Hi and thank you for the cc.

Using a DK Frost DW.

DPS was very good on target dummies but i have a couple issues perhaps you can help with.

1. Wants to reapply horn of winter every 30 seconds. If i am on the ground mounted it will dismount me every 30 seconds to do so.

2. Also when I attempt to stop the bot it crashes every time when running this cc. Unsure as to what is causing that. As I don't get it with other cc's every time.

Thanks for the help and keep up the good work on the cc.

View attachment 9-18-2011_11_34 AM 6696 Log.txt
 
ok i been tring 2 add bloodfury (orc racial) and soul casket ( soul power) to the end game demo cc .. and i cant get it to save my life can anyone throw out the proper code for these i can add to it?

SC.UseTrinket(58183, a => true, "Casts Soul Casket whenever available CD"),

or

SC.UseTrinket(58183, a => SC.CanCast("Metamorphosis"), "Use Trinket if Metamorphosis is off CD"),
SC.CastBuff("Metamorphosis", a => SC.PlayerHasBuff("Soul Power"), "Cast Metamorphosis if you have soul casket buff"),


or

SC.UseEquippedItem(13 , a => true , "Use Trinket equipped in Slot 13 on CD"),
 
Hi and thank you for the cc.

Using a DK Frost DW.

DPS was very good on target dummies but i have a couple issues perhaps you can help with.

1. Wants to reapply horn of winter every 30 seconds. If i am on the ground mounted it will dismount me every 30 seconds to do so.

2. Also when I attempt to stop the bot it crashes every time when running this cc. Unsure as to what is causing that. As I don't get it with other cc's every time.

Thanks for the help and keep up the good work on the cc.

View attachment 27305


1. It's reapplying it when the spell is off cooldown not when the buff has run out so try.

SC.CastBuff("Horn of winter", a => true,"HOW"),

or

SC.CastSpell("Horn of Winter", a => !SC.PlayerHasBuff("Horn of Winter"),


2 Everyone has this issue i find staying out of combat for around 30 seconds to a minute before stopping or closing HB works best.
 
Disregard last post it didnt fix howl of winter. I launched another CC that it does work in. When I change those lines felmaster cc no longer shows up as an option.
 
Last edited:
Post the full cc and i'll have a look
Also post the HB Log.


public override Composite Buffs
{
get
{
return new PrioritySelector(
SC.CastBuff("Horn of Winter", a => true, "Horn of Winter")
);
}
}

Is what i'm using
 
Last edited:
thanks

What I did was replace the first line referencing horn of winter to the first line you suggested

SC.CastBuff("Horn of winter", a => true,"HOW").

That stops it from casting every 30 sec all the time. It still does it during combat. If i change all the lines that reference the first line in your suggestion it no longer casts at all. If i try the 2nd line suggested it no longer shows Felmaster as an option cc and kicks back a simcraft error when the bot loads.

View attachment 9-18-2011_4_29 PM 1968 Log.txt

Modified CC first reference of Horn of Winter
View attachment Frost.cs
 
What I did was replace the first line referencing horn of winter to the first line you suggested

SC.CastBuff("Horn of winter", a => true,"HOW").

That stops it from casting every 30 sec all the time. It still does it during combat. If i change all the lines that reference the first line in your suggestion it no longer casts at all. If i try the 2nd line suggested it no longer shows Felmaster as an option cc and kicks back a simcraft error when the bot loads.

View attachment 27314

Modified CC first reference of Horn of Winter
View attachment 27315



I only had to change a couple of lines but it works fine for me.
 
Have it check if you are missing the buff ? (Not 100% sure about the SimCraft-call as i am att work)

Should look something like.......

public override Composite Buffs
{
get
{
return new PrioritySelector(
SC.CastBuff("Horn of Winter", a => !Me.Combat && !SC.PlayerHasBuff("Horn of Winter"), "Horn of Winter"))
);
}
}
 
SC.UseTrinket(58183, a => true, "Casts Soul Casket whenever available CD"),

or

SC.UseTrinket(58183, a => SC.CanCast("Metamorphosis"), "Use Trinket if Metamorphosis is off CD"),
SC.CastBuff("Metamorphosis", a => SC.PlayerHasBuff("Soul Power"), "Cast Metamorphosis if you have soul casket buff"),


or

SC.UseEquippedItem(13 , a => true , "Use Trinket equipped in Slot 13 on CD"),

Thank you :) what about blood flury ? would it be like this
SC.CastBuff("Blood Flury", a => true,"HOW")
 
Have it check if you are missing the buff ? (Not 100% sure about the SimCraft-call as i am att work)

Should look something like.......

public override Composite Buffs
{
get
{
return new PrioritySelector(
SC.CastBuff("Horn of Winter", a => !Me.Combat && !SC.PlayerHasBuff("Horn of Winter"), "Horn of Winter"))
);
}
}

SC.CastBuff contains the condition !SC.PlayerHasBuff so the line
SC.CastBuff("Horn of Winter", a => !Me.Combat && !SC.PlayerHasBuff("Horn of Winter"), "Horn of Winter"))
is doing the same check twice.


SC.CastBuff("Horn of Winter", a => true,"Horn of Winter")
is all you need.
 
Hmm i got the twinket to work but blood fury isn't working gonna post my .cs file if someone would be so kind to look see what i did wrong
 

Attachments

Hmm i got the twinket to work but blood fury isn't working gonna post my .cs file if someone would be so kind to look see what i did wrong

You've spelt Blood fury wrong!

copy and paste

SC.CastBuff("Blood Fury", a => true ,"Blood Fury"),
 
Back
Top