Jump to content

Recommended Posts

Hi

I want the bot to only cast Bloodrage if he is in combat. however, even with these 2 options. "combat only = true" and a spell condition of "me in combat = true" he still casts it when he's running around and ready to engage. 

This hinders the warriors ooc healing ability and stops him using charge. 

Am i missing something here?

Thanks

 

 

image.png.5b8935a7514855f2c1bdef2e4a27654a.png

In Combat for wRobot means flagged for combat or even just starting a fight.
Use C#  => ObjectManager.Me.InCombatFlagOnly
Which is just combat flag, or
ObjectManager.GetObjectWoWUnit().Any(u => u.IsTargetingMe) 

  On 7/16/2018 at 5:37 PM, Matenia said:

In Combat for wRobot means flagged for combat or even just starting a fight.
Use C#  => ObjectManager.Me.InCombatFlagOnly
Which is just combat flag, or
ObjectManager.GetObjectWoWUnit().Any(u => u.IsTargetingMe) 

Expand  

Thanks @matenia I'll give that a whirl! So neither of the 2 options i linked are actually "in combat"? they are both referring to in combat or "about to be in combat"? strange. 

  On 7/16/2018 at 6:29 PM, KDiddy said:

Try using Target in Combat Range = True

Expand  

I dont want them in range though, i want to be physically in combat before using it ? could try some kind of <10 yrd range though

  On 7/16/2018 at 8:54 PM, KDiddy said:

It works perfectly for me on that setting ?

I have it prioritised just after a charge check, so I don't lose the option to close in quick if needed.

Expand  

Thanks, this does indeed work. The Target in combat range must mean target in melee range. He now only does the range if he is in combat and already charged or unable to charge. ?

 

Thanks

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...