DBD (Dead by Daylight) Working Struggle and Wiggle Macros Topic is solved

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

DBD (Dead by Daylight) Working Struggle and Wiggle Macros  Topic is solved

18 Jan 2018, 02:43

Just change all "XButton1" and "XButton2" references to whichever key you want to bind it to and hold them down when you want to use them. DBD has a hard cap on fast you can struggle/wiggle so don't mind the delay that's just to make sure it registers properly.

Code: Select all

SetKeyDelay, 100

$XButton1::
Loop
{
	if not GetKeyState("XButton1", "P")
		break
	Send {space}
}
return

*XButton2::
Loop
{
	Send, {a Down}{a Up}
	Sleep, 75
	Send, {d Down}{d Up}
}until !GetKeyState("XButton2","P")
return
Cakes
Posts: 23
Joined: 23 Apr 2018, 09:56

Re: DBD (Dead by Daylight) Working Struggle and Wiggle Macros

28 Jul 2018, 12:29

You can turn toggle off by pressing either key. You may need to edit group policy in windows to show balloon tool tips.

Code: Select all

global toggle
#MaxThreadsPerHotkey 2
*z::	
	toggle := !toggle
	if (toggle)
		ToolTip, Hook`nStruggle, 100, 150
	while (toggle)
	{
		Send {Space}
		Sleep, 50
	}
	ToolTip
return
*x:: 
	toggle := !toggle
	if (toggle)
		ToolTip, Carry`nStruggle, 100, 150
	while (toggle)
	{
		Send {a down} 
		Sleep, 50
		Send {a up}
		Sleep, 50
		Send {d down}
		Sleep, 50
		Send {d up}
		Sleep, 50
	}
	Tooltip
return
#MaxThreadsPerHotkey 1
Dakota Mike
Posts: 1
Joined: 24 Oct 2018, 13:40

Re: DBD (Dead by Daylight) Working Struggle and Wiggle Macros

24 Oct 2018, 13:42

This is awesome! Thanks for posting this Cakes. I'm a Disabled Vet, and this script really cuts down on hand-strain for me. I'm not trying to get an advantage, I just don't want to kill my injured hands to struggle on hook. Thanks again!

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: vikasgandhi and 70 guests