continuous walk keybinding


piddy3825

Recommended Posts

Posted

sure would be nice to be able to hit a key that allows me to do some continuous walking without having to constantly keep the "w" key depressed. sometime when walking encumbered it would be nice not to have to constantly keep my left hand on the keyboard... hard for me to enjoy my legal Marijuana here in Washington State when I constantly have to stop walking so I can fire up my waterpipe while I am playing. lol

Posted
...hard for me to enjoy my legal Marijuana here in Washington State when I constantly have to stop walking so I can fire up my waterpipe while I am playing. lol

Well...just do only one thing at a time...just stop playing while consuming your drugs...lol :roll:

Posted

Loool...

But yea I'm actually for this. There was the continuous walk button in Morrowind that just made the long travels that little bit easier on my cheap and nasty keyboards.

Posted

Before Desolation Point landed I would've said this would've been really welcomed (due to to slow slow walking speed) but since the walk speed has had a much much needed boost, personally I don't need this now but if it's our choice to use it, then sure, why not :)

Posted

Simple autohotkey script for the time being :)

; --------------------------------------------------------------------------------
; --- The Long Dark Continuous Walking ---
; --------------------------------------------------------------------------------

SetTitleMatchMode, 1

walk = false


#IfWinActive The Long Dark


q:: ; set walking key to Q
if walk=false
{
walk=true
SendInput {w Down}
} else
{
walk=false
SendInput {w Up}
}
return


; for proper interaction with ordinary bck/fwd walking keys
~$w:: walk=false
~$s::
if walk=true
{
walk=false
SendInput {w Up}
}
return


~i:: ; stop walking process when a menu is being opened
~Tab::
~Escape::
if walk=true
{
walk=false
SendInput {w Up}
}
return

Archived

This topic is now archived and is closed to further replies.