• Visit Rebornbuddy
  • Plans for more CR options?

    Discussion in 'Buddy Wing Forum' started by exaccuss, Feb 14, 2017.

    1. exaccuss

      exaccuss Active Member

      Joined:
      Nov 10, 2013
      Messages:
      1,021
      Likes Received:
      6
      Trophy Points:
      38
      Are there ANY plans at all to add options for the CR's? Mainly some toggles for aoe etc. I get that the BW community is quite small, but it would be a pretty good function to have. I'm quite surprised there aren't options in already.
       
    2. Logandros

      Logandros Moderator Moderator

      Joined:
      Nov 20, 2012
      Messages:
      370
      Likes Received:
      21
      Trophy Points:
      18
      Code:
      Hotkeys.RegisterHotkey("Toggle AOE (F7)", ChangeAoe, Keys.F7);
      			Logger.Write("[Hot Key][F7] Toggle AOE");
      
      			Hotkeys.RegisterHotkey("Pause Rotation (F8)", ChangePause, Keys.F8);
      			Logger.Write("[Hot Key][F8] Pause Rotation");
      
      			Hotkeys.RegisterHotkey("Set Tank (F12)", Targeting.SetTank, Keys.F12);
      			Logger.Write("[Hot Key][F12] Set Tank");
       
    3. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      All you'd have to do is add the Hotkey call to the AoE rotation. So where it says "ShouldAoE" or whatever, you'd do something like Should AoE || Toggle AOE
       
    4. Logandros

      Logandros Moderator Moderator

      Joined:
      Nov 20, 2012
      Messages:
      370
      Likes Received:
      21
      Trophy Points:
      18
      The F key commands I referenced are already in Default Combat. I just pasted the code because I was too lazy to re-type what I was reading
       

    Share This Page