Need help with A+D button spam [ dead by daylight ] Topic is solved

Ask gaming related questions (AHK v1.1 and older)
Badboyy

Need help with A+D button spam [ dead by daylight ]  Topic is solved

29 Dec 2017, 18:54

hey guys. so im looking for help with spamming A+D by holding down the button LEFT CNTRL now the game im using it [ DEAD BY DAYLIGHT ] for basically it works for around a few seconds , stops for a second , then continues.
im not sure if the sleep is too big or too small. but again dont want the sleep to be 0 because i dont want it to skip the input by being too fast.
here is what i have so far , it works but again for the sleep not sure what to do.

Code: Select all

*Lctrl::
Loop
{
Send, {a Down}{a Up}
Sleep, 50
Send, {d Down}{d Up}
}until !GetKeyState("F","P")
return
thanks!
TygerByte
Posts: 96
Joined: 12 Aug 2016, 05:22

Re: Need help with A+D button spam [ dead by daylight ]

29 Dec 2017, 21:32

You may be sending the down and up too fast try placing a sleep in it.

Something like the following. With this setup you can just change the Sleep time once at the beginning of the script if you're still experimenting. GL

Code: Select all

SleepDelay := 30

*LCtrl::
Loop
{
	Send, {a Down}
	Sleep, %SleepDelay%
	Send, {a Up}
	Sleep, %SleepDelay%
	Send, {d Down}
	Sleep, %SleepDelay%
	Send, {d Up}
	Sleep, %SleepDelay%
} Until !GetKeyState("F","P")
Return

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 99 guests