• Visit Rebornbuddy
  • Operative -Help

    Discussion in 'Buddy Wing Support' started by Rhyseldian, Apr 22, 2017.

    1. Rhyseldian

      Rhyseldian New Member

      Joined:
      Mar 2, 2017
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      1
      For some reason the operative is not going in to stealth mode. I tried changing combat file - is there something I am missing?
       
    2. Logandros

      Logandros Moderator Moderator

      Joined:
      Nov 20, 2012
      Messages:
      370
      Likes Received:
      21
      Trophy Points:
      18
      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"))
                          );
                  }
              }
       
    3. Rhyseldian

      Rhyseldian New Member

      Joined:
      Mar 2, 2017
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      1
      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
       
    4. Praline

      Praline Member

      Joined:
      Aug 17, 2015
      Messages:
      150
      Likes Received:
      2
      Trophy Points:
      18
      In your
      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: Apr 26, 2017
    5. SirSik

      SirSik Member

      Joined:
      Jul 9, 2013
      Messages:
      173
      Likes Received:
      6
      Trophy Points:
      18
      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?
       
    6. Rhyseldian

      Rhyseldian New Member

      Joined:
      Mar 2, 2017
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      1
      Just grinding profiles - have not tried questing at all.
       

    Share This Page