• Visit Rebornbuddy
  • Does it work on Windows 10?

    Discussion in 'Buddy Wing Forum' started by Ksexasiaris, Oct 12, 2015.

    1. Ksexasiaris

      Ksexasiaris Member

      Joined:
      Nov 10, 2014
      Messages:
      183
      Likes Received:
      3
      Trophy Points:
      18
      In the buy page it say "works on Win XP-8"...but I have used lot of win7 programms in Win10 with no problem. I just need a confirmation before I buy :) Thanks
       
    2. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      I use it on Windows 10 with no problem (other than the speeder/transport crash).
       
    3. Ksexasiaris

      Ksexasiaris Member

      Joined:
      Nov 10, 2014
      Messages:
      183
      Likes Received:
      3
      Trophy Points:
      18
      Thanks you Alltrueist..no problem I only use it to do the combat for me, not have it afk botting. So the travelling bug on win10 does not affect me.

      Also something else please, since I lost my notes and want to make some adjustments to the cr, what is the syntax parameter to use for strong targets and also the parameter to use a spell only if I am not moving..

      Example (probably wrong)

      Me.CurrentTarget.StrongOrGreater (this is if I remember correct)
      !Me.IsMoving ( I want to use this for channeling spells with cooldowns, like master strike, to avoid waste them)

      Thanks
       
    4. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      !Me.IsMoving is correct
      I can't remember the StrongorGreater, or if we even kept it for DefaultCombat, but I'll check when I get home.
       
    5. TeraBotter

      TeraBotter New Member

      Joined:
      Oct 12, 2015
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0

      public static bool BossOrGreater(this TorCharacter unit)
      {
      if (unit != null) if (unit.Toughness >= CombatToughness.Boss1) return true;
      return false;
      }

      public static bool StrongOrGreater(this TorCharacter unit)
      {
      if (unit != null) if (unit.Toughness >= CombatToughness.Strong) return true;
      return false;
      }

      Its located in the Extensions.CS file.
       
    6. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      Well there you go :D
       

    Share This Page