Wow, great thread, thanks for making me aware of this one.
I got a few questions though, as I understand it, you would have to have an alternative (hidden) macro for each button that you want to use.
Casting a lightning bolt on your main will hit the macro to assist whoever is your main and cast a lightning bolt at his target.
That's an awful lot of hidden macros to me. I'm used to (I started with ahk) hitting an assist button before casting the normal spell. Isn't it just easier to have an assist macro and call upon it for every button you use, this will leave you with only one hidden macro (or 2 if you want a follow one).
Something like what you suggested:
Code:
/assist
[mod:rctrl,mod:rshift,nomod:ralt]ToonA;
[mod:rctrl,mod:ralt,nomod:rshift]ToonB;
[mod:ralt,mod:rshift,nomod:rctrl]ToonC;
[mod:rctrl,mod:ralt,mod:rshift]ToonD;
[mod:rctrl,nomod:ralt,nomod:rshift]ToonE
would be the 'assist macro' say you put this under T.
And then your hotkeynet file would look like this:
Code:
<Hotkey 1>
<Passthrough>
<If ActiveWinIs wow1>
<SendLabel Alt1, Alt2, Alt3, Alt4>
<Key %Trigger%><Key rctrl rshift T>
<Else If ActiveWinIs wow2>
<SendLabel Main, Alt2, Alt3, Alt4>
<Key %Trigger%><Key rctrl ralt T>
<Else If ActiveWinIs wow3>
<SendLabel Main, Alt1, Alt3, Alt4>
<Key %Trigger%><Key ralt rshift T>
<Else If ActiveWinIs wow4>
<SendLabel Main, Alt1, Alt2, Alt4>
<Key %Trigger%><Key rctrl ralt rshift T>
<Else If ActiveWinIs wow5>
<SendLabel Main, Alt1, Alt2, Alt3>
<Key %Trigger%><Key rctrl T>
Or maybe better would be to put an /assist toon1 under t, /assist toon2 under y, /assist toon3 under u etc.. you'd get this:
Code:
<Hotkey 1>
<Passthrough>
<If ActiveWinIs wow1>
<SendLabel Alt1, Alt2, Alt3, Alt4>
<Key %Trigger%><Key T>
<Else If ActiveWinIs wow2>
<SendLabel Main, Alt2, Alt3, Alt4>
<Key %Trigger%><Key Y>
<Else If ActiveWinIs wow3>
<SendLabel Main, Alt1, Alt3, Alt4>
<Key %Trigger%><Key U>
<Else If ActiveWinIs wow4>
<SendLabel Main, Alt1, Alt2, Alt4>
<Key %Trigger%><Key I>
<Else If ActiveWinIs wow5>
<SendLabel Main, Alt1, Alt2, Alt3>
<Key %Trigger%><Key O>
The last one will leave you open to use alt/shift/ctrl (one w/e side you want) as you please. But yea..it'll require 5 hidden macros (10 if you include follow).
Connect With Us