Hey JT do you have a X64 machine? If you do can u run this bit of code on it and see if it works in game. Basically is slowly moves the mouse down to the right. I hear the HS has problems hooking the APIs on X64!!
Func _MouseMovePlus($X = "", $Y = "")
Local $MOUSEEVENTF_MOVE = 0x1
DllCall("user32.dll", "none", "mouse_event", _
"long", $MOUSEEVENTF_MOVE, _
"long", $X, _
"long", $Y, _
"long", 5, _
"long", 0)
EndFunc
Func Load()
EndFunc ;==>Load
Func Start()
Do
_MouseMovePlus(1, 1)
sleep(2000)
_MouseMovePlus(10, 10)
sleep(2000)
Until _IsPressed("7A")
EndFunc ;==>Start