Can you add an auto-walk button to the game?

By-SbF

New member
Hello
Can you add an auto-walk button to the game?
It can be a bit boring to press the same button all the time

 
Last edited by a moderator:
I don't know about boring, but it can be a complication for some individuals who have hand-related issues, such as repetitive stress. I agree a feature like this would be appreciated.

I'd also point out that external software, such as AutoHotkey, can provide this feature. I use the following AutoHotkey config to give me ALT-R for autorun (or walk) and ALT-M for times when I'm doing a lot of mining, or breaking into a safe with a pick.

Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


;************************************************************
; ONLY FOR 7D2D
;************************************************************
#IfWinActive, 7 Days To Die

;************************************************************
; ALT-R is autorun. W to stop.
;************************************************************
!r::
Send {w up}{w down}
return

;************************************************************
; ALT-M - Hold Down Left Mouse Button. Left Mouse Button to stop.
;************************************************************
!m::
Click, Down
return
 
Last edited by a moderator:
This topic comes up over and over again, and i agree, a way to toggle would be very nice to see , and even nicer to play with.

Not just for autowalk/run, but also for actions.

IE , doubleclick/double key for continuous action , or a key(alt/ctrl/shift)+whatever action you choose. Not sure which one is best , nor what will be the

best if including console setup.

But having it in the game itself, and not depending on third party would be nice.

 
Back
Top