Jump to content
BadContrakt

DayZ Autorun Tutorial

Recommended Posts

Download AutoHotkey and use the script below. Keep in mind this will hold down both W and Shift until you press them again. This is pretty useful because you can toggle run/walk as well as autorun. If your run isn't set to Shift+W it will not work. Replace "b" with whatever key you want your autorun set to. I use "=".

 

#IfWinActive, DayZ
b::
Send {w Down}
Send {lshift Down}
W::Sleep
return
 

Edited by albinoclock

Share this post


Link to post
Share on other sites

If any of you have a throttle control on a joy stick or for racing games, you can also bind the run to that.

Then you can use the throttle to move forward and it will stay like that till you throttle back.

Share this post


Link to post
Share on other sites

For some reason this was working for awhile, but now when I press it, my guy just auto walks not runs. When I look back at the setup, only W is defined and not shift + w. I don't even know how it was running in the first place with only W.

Share this post


Link to post
Share on other sites

For some reason this was working for awhile, but now when I press it, my guy just auto walks not runs. When I look back at the setup, only W is defined and not shift + w. I don't even know how it was running in the first place with only W.

You probably had the script set to toggle the W key, e.g: toggle W every 0.25 seconds which would still make you run.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×