//================================================================
// SAMPLE SCRIPT FOR SPREADING FOUR TOONS OUT AROUND
// THEIR LEADER
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file.
// Load it into HotkeyNet.
//
// Requires HotkeyNet build 148 or higher.
//
// For more info, go to www.hotkeynet.com
//================================================================
//----------------------------------------------------------------
// DEFINE MAILING LABELS, ONE FOR EACH WOW
//----------------------------------------------------------------
<Label w1 IP_ADDRESS SendWinM wow1>
<Label w2 IP_ADDRESS SendWinM wow2>
<Label w3 IP_ADDRESS SendWinM wow3>
<Label w4 IP_ADDRESS SendWinM wow4>
<Label w5 IP_ADDRESS 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>
|