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?
public override Composite Buffs
{
get
{
return new PrioritySelector(
Spell.Buff("Coordination"),
Spell.Cast("Stealth", ret => !DefaultCombat.MovementDisabled && !Me.InCombat && !Me.HasBuff("Coordination"))
);
}
}
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")) ); } }