Quote Originally Posted by jazzymetal View Post
Q1: All I am really looking for is for a way to have hotkeynet send shift-1 or shift-2 etc (any combo of shift) to my 2nd wow client.
The easiest way is to change your key definition into a KeyList. Change this section -

Code:
//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT. 
//-----------------------------------------------------------
<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<SendLabel w1, w2>
<Key %Trigger%>
to this

Code:
//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT. 
//-----------------------------------------------------------
<KeyList MyList A-Z, 0-9, Plus, Minus, F1-F12, except W, A, S, D, Q, E>

<Hotkey ScrollLockOn MyList; ScrollLockOn Shift MyList>
<SendLabel w1, w2>
<Key %Trigger%>

This way you can continue to add modifiers by simply adding it to the keylist.

Code:
 <Hotkey ScrollLockOn MyList; ScrollLockOn Shift MyList; ScrollLockOn Alt MyList; ScrollLockOn Ctrl MyList; ScrollLockOn Ctrl Shift MyList>

also i have a mouse button 4 and 5 that solo, i use as keybindings ingame that i would like to have sent like i was hitting 1-0 or something. I am sure this is quite trivial to many of you, and your help is much appreciated
Add the mouse buttons to your KeyList just like any other button

Code:
<KeyList MyList A-Z, 0-9, Plus, Minus, F1-F12, Button4, Button5, except W, A, S, D, Q, E>
You can get key names by pressing the key and looking at what HotKeyNet reports in the "Last key press" window.



Q2: Also I am trying to box 2 fire mages, and one thing I noticed is Blastwave and blizzard (aoe spells that require to click on ground) are going to be a problem i think, how do you get around this, I'm assuming someone out there has figured this out...
You will need to make use of ClickMouse. You already have the basic version of it in your default script, all you have to do is press the key with the spell on it, press and hold OEM3 {the ` key} and click your mouse.

Or you can use an an All-in-one AOE where you trigger the spell on key press and the mouse passing on key release


Code:
//* 1-BUTTON AOE
<Hotkey NumpadPlus>
		<SendLabel w1, w2>
				<Key NumpadPlus>


<Hotkeyup NumpadPlus>
	<SaveMousePos>
		<SendLabel w1, w2>
			<Clickmouse LButton>
			<RestoreMousePos>

Q3: Besides some a macro to auto focus main toon and assist, do I need to make all my spells have a /assist [@focus] macro....and maybe some of you have boxed mages and have a good setup for it laying around?
I'd suggest you start reading the Newbie's Guides {part 1, part 2}, my HotKeyNet guide and the stickies in the Macro forum.