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

Operative -Help

Rhyseldian

New Member
Joined
Mar 2, 2017
Messages
3
Reaction score
0
For some reason the operative is not going in to stealth mode. I tried changing combat file - is there something I am missing?
 
For some reason the operative is not going in to stealth mode. I tried changing combat file - is there something I am missing?

1. Which spec?
2. Can you confirm that Coordination is active (or even still the operative buff).

Code:
public override Composite Buffs
        {
            get
            {
                return new PrioritySelector(
                    Spell.Buff("Coordination"),
                    Spell.Cast("Stealth", ret => !DefaultCombat.MovementDisabled && !Me.InCombat && !Me.HasBuff("Coordination"))
                    );
            }
        }
 
Coordination is the Operative Buff - it is casting that with out a problem. It wont go in to "Stealth" - both concealment and Lethality
I looked at the Assassin's
get
{
return new PrioritySelector(
Spell.Buff("Mark of Power"),
Spell.Buff("Stealth", ret => !Rest.KeepResting() && !DefaultCombat.MovementDisabled && !Me.IsMounted)
);
}
and tried replacing it with that - but doesn't work
 
For some reason the operative is not going in to stealth mode. I tried changing combat file - is there something I am missing?

In your
1. Which spec?
2. Can you confirm that Coordination is active (or even still the operative buff).

Code:
public override Composite Buffs
        {
            get
            {
                return new PrioritySelector(
                    Spell.Buff("Coordination"),
                    Spell.Cast("Stealth", ret => !DefaultCombat.MovementDisabled && !Me.InCombat && !Me.HasBuff("Coordination"))
                    );
            }
        }

Change that Spell.Buff("Coordination"), to Spell.Buff("Stealth"),

Not sure if you need all this, but this is what I use:

Spell.Buff("Stealth"),
Spell.Cast("Stealth", ret => !Rest.KeepResting())
 
Last edited:
Think it may be something to do with the "Buff" region in Spell.cs

I've never had a Buff cast, even with my fixes, on about 3 different versions of BW.

Is this using Combat bot or a questing/grinding profile?
 
Back
Top