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

Plans for more CR options?

exaccuss

Active Member
Joined
Nov 10, 2013
Messages
1,021
Reaction score
6
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.
 
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.

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");
 
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");

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
 
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

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
 
Back
Top