>>542345930
been using this autohotkey for over a year now, you can go lower but i decided to play safe

winmmHandle := DllCall("LoadLibrary", "Str", "winmm.dll", "Ptr")
timeBeginFuncAddress := DllCall("GetProcAddress", "Ptr", winmmHandle, "AStr", "timeBeginPeriod", "Ptr")
timeEndFuncAddress := DllCall("GetProcAddress", "Ptr", winmmHandle, "AStr", "timeEndPeriod", "Ptr")

keyDownTime := 212
keyUpTime := 45

#HotIf WinActive("NIKKE")
keyName := "8"
8::
{
DllCall(timeBeginFuncAddress, "UInt", 1)

While GetKeyState(keyName, "P")
{

Click "Down"
DllCall("Sleep", "UInt", keyDownTime)
Click "Up"
DllCall("Sleep", "UInt", keyUpTime)
}

DllCall(timeEndFuncAddress, "UInt", 1)
}