Need just a script

06/10/2017 15:23 xDomination#1
Hello guys, someone have a good script for a flash step with LShift?
06/11/2017 20:00 GalaxyCMS123#2
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
$*LShift::
Loop
{
if not GetKeyState("LShift","P")
break
SendInput {W Down}
Sleep 010
SendInput {W Up}
Sleep 010
SendInput {Space Down}
Sleep 001
SendInput {Space Up}
Sleep 020
SendInput {W Down}
Sleep 140
SendInput {W Up}
}
Return


this is the code save it as an .ahk file and compile installing autohotkey.
06/12/2017 13:38 xDomination#3
Quote:
Originally Posted by GalaxyCMS123 View Post
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
$*LShift::
Loop
{
if not GetKeyState("LShift","P")
break
SendInput {W Down}
Sleep 010
SendInput {W Up}
Sleep 010
SendInput {Space Down}
Sleep 001
SendInput {Space Up}
Sleep 020
SendInput {W Down}
Sleep 140
SendInput {W Up}
}
Return


this is the code save it as an .ahk file and compile installing autohotkey.
Thanksss!
06/12/2017 16:01 0N1K4G3#4
Quote:
Originally Posted by GalaxyCMS123 View Post
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
$*LShift::
Loop
{
if not GetKeyState("LShift","P")
break
SendInput {W Down}
Sleep 010
SendInput {W Up}
Sleep 010
SendInput {Space Down}
Sleep 001
SendInput {Space Up}
Sleep 020
SendInput {W Down}
Sleep 140
SendInput {W Up}
}
Return


this is the code save it as an .ahk file and compile installing autohotkey.
I tried, great timing.