mausu: dpi xddddddd mantner clic? tuckaway? mayb OD?

This commit is contained in:
Hane 2023-04-23 23:58:02 +02:00
commit b95408abd0

View file

@ -1,4 +1,6 @@
#MaxThreadsPerHotkey 1 #MaxThreadsPerHotkey 1
;;WINDOOOOOOOOOOOOOOOOOOOOOOOOOOOOOWS y ahk unaware del futuro de los escritorios
DllCall("SetThreadDpiAwarenessContext", "ptr", -3, "ptr")
;;For debugging purposes, it controls nothing, as it happens to us all with the flow of our lives ;;For debugging purposes, it controls nothing, as it happens to us all with the flow of our lives
mouseActive := 0 mouseActive := 0
@ -12,6 +14,16 @@ mouseSpeed := 1
speedUp := 0 speedUp := 0
speedUpFactor := 20 speedUpFactor := 20
inputCleaning()
{
;;if (GetKeyState("RShift", "P") != 0) {
;; SendInput, {RShift Down}
;;}
if (GetKeyState("RCtrl", "P") != 0) {
SendInput, {RCtrl Down}
}
return
}
;;2 is default speed ;;2 is default speed
RCtrl & Left::lefMov := -1 RCtrl & Left::lefMov := -1
RCtrl & Left Up::lefMov := 0 RCtrl & Left Up::lefMov := 0
@ -50,18 +62,18 @@ RCtrl & RShift::
SendInput, {RCtrl Up} SendInput, {RCtrl Up}
SendInput, {RShift Up} SendInput, {RShift Up}
SendInput, {LButton} SendInput, {LButton}
SendInput, {RCtrl Down} inputCleaning()
return return
RCtrl & End:: RCtrl & End::
SendInput, {RCtrl Up} SendInput, {RCtrl Up}
SendInput, {End Up} SendInput, {End Up}
SendInput, {RButton} SendInput, {RButton}
SendInput, {RCtrl Down} inputCleaning()
return return
RCtrl & Enter:: RCtrl & Enter::
SendInput, {RCtrl Up} SendInput, {RCtrl Up}
SendInput, {Enter Up} SendInput, {Enter Up}
SendInput, {MButton} SendInput, {MButton}
SendInput, {RCtrl Down} inputCleaning()
return return