Hello!
As you can see from my post count I'm new to this and I'm having some trouble on configuring the script to work as i want, i dont know if what i want is possible so I'm going to ask for help, since i've been searching and searchin and can't find a way to make this work.

So what i want to make is a script which i cant use mouse click combinations such as Shift MButton, Alt MButton, Ctrl MButton, MButton.
The far i could go was making Ctrl MButton work and MButton too but something was wrong because when i clicked Ctrl MButton sometimes it would use the correct spell but sometimes it would use the MButton Spell. can you tell me whats wrong :?: :?: :?:

This is all so i can make Heals with my background character using Grid+customlayouts+clique.

here is my atm script.

//================================================== ==============
// SAMPLE SCRIPT FOR FOUR WOW'S ON TWO PCs
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file.
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You
// can change this if you want, just like you can change
// everything else with HotkeyNet.)
//
// Requires HotkeyNet build 147 or higher.
//
// For more info, go to http://www.hotkeynet.com
//================================================== ==============

//-----------------------------------------------------------
// CTRL R WILL RENAME WOWS AFTER MANUAL LAUNCH
//-----------------------------------------------------------
//<Hotkey CapsLockOn Ctrl R>
// <SendPC local>
// <RenameWin "World of Warcraft" WoW1>
// <RenameWin "World of Warcraft" WoW2>
// <RenameWin "World of Warcraft" WoW3>
// <RenameWin "World of Warcraft" WoW4>
// <RenameWin "World of Warcraft" WoW5>

//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
//-----------------------------------------------------------
<Hotkey Ctrl PrintScreen>

<SendPC Local>

<Run "C:\Users\Public\Games\World of Warcraft\Wow.exe">
<RenameTargetWin WoW1>

<Run "C:\Users\Public\Games\World of Warcraft1\Wow.exe">
<RenameTargetWin WoW2>

<Run "C:\Users\Public\Games\World of Warcraft2\Wow.exe">
<RenameTargetWin WoW3>

<Run "C:\Users\Public\Games\World of Warcraft3\Wow.exe">
<RenameTargetWin WoW4>

<Run "C:\Users\Public\Games\World of Warcraft4\Wow.exe">
<RenameTargetWin WoW5>

//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME THE WOW WINDOWS.
//-----------------------------------------------------------
//<Hotkey CapsLockOn Alt Ctrl L>
// <LaunchAndRename Local WoW1>
// <LaunchAndRename Local WoW2>
// <LaunchAndRename Local WoW3>
// <LaunchAndRename Local WoW4>
// <LaunchAndRename Local WoW5>

//-----------------------------------------------------------
// DEFINE A MAIL LABEL FOR EACH WOW
//-----------------------------------------------------------
<Label w1 Local SendWinM WoW1>
<Label w2 Local SendWinM WoW2>
<Label w3 Local SendWinM WoW3>
<Label w4 Local SendWinM WoW4>
<Label w5 Local SendWinM WoW5>

//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO ALL FOUR WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
//-----------------------------------------------------------
<KeyList MyKeys A-Z, 0-9, Plus, Minus, F2-F12 except W, A, S, D, Q, E, M, L>
<Hotkey CapsLockOn MyKeys; CapsLockOn Alt MyKeys; CapsLockOn Shift MyKeys >
<SendLabel w1, w2, w3, w4, w5>
<Key %Trigger%>

//-----------------------------------------------------------
// DEFINE MOVEMENT KEYS THAT WILL GET SENT TO ALL FOUR WOW'S.
// ADD MORE KEYS IF YOU WANT.
//-----------------------------------------------------------
<MovementHotkey CapsLockOn up, down, right, left>
<SendLabel w1, w2, w3, w4, w5>
<Key %TriggerMainKey%>



//-----------------------------------------------------------
// BROADCAST MOUSE CLICKS. HOLD DOWN OEM3 (ON U.S. KEYBOARDS,
// THAT'S THE SQUIGGLE KEY IN UPPPER LEFT CORNER) WHEN YOU
// WANT TO BROADCAST.
//-----------------------------------------------------------
//<UseKeyAsModifier oem3>
//<Hotkey CapsLockOn oem3 LButton, MButton, RButton, Button4, Button5>
// <SendLabel w1, w2, w3, w4, w5>
// <ClickMouse %TriggerMainKey%>

//----------------------------------------------------------
//heal click
//----------------------------------------------------------
<Hotkey CapsLockOn Ctrl MButton >
<If MouseIsOverWindowRect WoW1 816 522 200 82 >
<SendLabel w1, w2>
<KeyDown Ctrl>
<Clickmouse MButton>
<KeyUp Ctrl>
<RestoreMousePos>
<Else>
<SendFocusWin>
<KeyDown Ctrl>
<Clickmouse MButton>
<KeyUp Ctrl>
<ClickMouse %TriggerMainKey%>

<Hotkey CapsLockOn MButton >
<If MouseIsOverWindowRect WoW1 816 522 200 82 >
<SendLabel w1, w2>
<Clickmouse MButton>
<RestoreMousePos>
<Else>
<SendFocusWin>
<Clickmouse MButton>
<ClickMouse %TriggerMainKey%>

Thanks 8-)