..on another thought, if you use Hotkeynet (or IS) as your broadcasting system an you could live with a seperate follow key, you could also do this like the following:
I assume the following scenario:
1. you have '/follow Test' bound to 'f', which you broadcast to your Toons
2. you have your attack
Code:
/assist Test
/cast Wrath
bound to '2'
know, your Hotkey for 'F' would look like this:
Code:
<Hotkey f>
<SetVar following true>
<Sendlabel w1,w2,w3,w4,w5>
<Key f>
this simply would broadcast 'f' to the labels defined by w1,... and in addition set the variable 'following' to true.
In the HKN-definition of '2' you know simply check, if the variable 'following' is true, if so you broadcast a 'step back'(down) which will lead to your toons not following. If 'following' isn't true, than '2' was pressed before, and should be broadcasted.
This could be done by the follwoing HKN-Code:
Code:
<Hotkey 2>
<If following is true>
<SetVar following false>
<Sendlabel w1,w2,w3,w4,w5>
<Key down>
<Else>
<Sendlabel w1,w2,w3,w4,w5>
<Key 2>
With this setup, yout toons would, if they are following (and you used 'f' to make them follow) step a step back with the first press of '2' and cast Wrath with the next presses of '2' until you order your toons to follow again with 'f'.
Connect With Us