Sounds like a good idea.Quote:
Originally Posted by 'Anemo',index.php?page=Thread&postID=138235#post13 8235
It's my fault it's bloated because you asked me in the HotkeyNet forum if you could use If-statements with MovementHotkey and I said I couldn't remember. But I just tested, and yes you can. (My bad memory is due to the fact that I've changed the syntax of movement hotkeys twice during the beta and I forgot how I finalized it.) You can also use labels. So your movement hotkey could be condensed as shown below.Quote:
Originally Posted by 'Anemo',index.php?page=Thread&postID=138235#post13 8235
Btw I think you'd be an excellent programmer. Imho you have the knack. :)
Code:// DEFINE MAILING LABELS, ONE FOR EACH WOW
<Label w1 192.168.1.11 SendWinM wow1>
<Label w2 192.168.1.12 SendWinM wow2>
<Label w3 192.168.1.2 SendWinM wow3>
<Label w4 192.168.1.2 SendWinM wow4>
<Label w5 192.168.1.2 SendWinM wow5>
// DEFINE A MOVEMENT HOTKEY FOR FORMATION
<MovementHotkey R>
<If ActiveWinIs wow1>
<SendLabel w2> <Key Left>
<SendLabel w3> <Key Right>
<SendLabel w4> <Key Up>
<SendLabel w5> <Key Down>
<Else If ActiveWinIs wow2>
<SendLabel w1> <Key Left>
<SendLabel w3> <Key Right>
<SendLabel w4> <Key Up>
<SendLabel w5> <Key Down>
<Else If ActiveWinIs wow3>
<SendLabel w1> <Key Left>
<SendLabel w2> <Key Right>
<SendLabel w4> <Key Up>
<SendLabel w5> <Key Down>
<Else If ActiveWinIs wow4>
<SendLabel w1> <Key Left>
<SendLabel w2> <Key Right>
<SendLabel w3> <Key Up>
<SendLabel w5> <Key Down>
<Else If ActiveWinIs wow5>
<SendLabel w1> <Key Left>
<SendLabel w2> <Key Right>
<SendLabel w3> <Key Up>
<SendLabel w4> <Key Down>