Quote Originally Posted by 'Anemo',index.php?page=Thread&postID=138235#post13 8235
I looks like I might have to get around to putting it on the wiki, I've exceeded the 10k character limit
Sounds like a good idea.

Quote Originally Posted by 'Anemo',index.php?page=Thread&postID=138235#post13 8235
A lot of my code may be a bit bloated but hopefully it is enough of an example for people with more experience to improve on (not hard since I have no coding knowledge at all)
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.

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>