AUTOHOTKEY SCRIPT CODE TO BOOST YOUR MOUSE

Posts 14 of 4 · Page 1 of 1
AUTOHOTKEY SCRIPT CODE TO BOOST YOUR MOUSE



*HERE MY CODE! JUST PASTE IT IN AUTOHOTKEY SCRIPT JUST DOWNLOAD IN GOOGLE AND YOU CAN PASTE THIS IN MACRO SCRIPT TO BOOST YOUR MOUSE*


#SingleInstance
ActivateScript = 0

GroupAdd, ActiveWindow, ahk_class IW4

; Home key to activate the macro
~Home::
KeyWait, Home
GetKeyState, HomeState, Home, T
If HomeState = D
{
ActivateScript = 1

}
else
{
ActivateScript = 0

}
return

~LButton::
if ActivateScript = 1
{
Loop
{
;Make sure Blackshot window is the active window. Don't want weird mouse behaviour appearing at other window
IfWinActive, ahk_group ActiveWindow
{
GetKeyState, LButtonButtonState, LButton, P
If LButtonButtonState = D
{
Send, {LButton down}
Sleep, 71
Send, {LButton up}
}
If LButtonButtonState = U
{
;break the loop if physical state of LButton is up.
break
}
}
else
{
break
}
}

}
exit

return



*THAT IS MY SCRIPT CODE*

credit by devilaim so simple much better you learn c++ dude


---------- Post added at 11:36 AM ---------- Previous post was at 11:35 AM ----------

Quote Originally Posted by elimabiru View Post
no credits ?
Quote Originally Posted by devilaim View Post

credit by devilaim so simple much better you learn c++ dude


---------- Post added at 11:36 AM ---------- Previous post was at 11:35 AM ----------




i already learn ! and the source code you takes from the video
Posts 14 of 4 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?