Kingdom Come: Deliverance II

Kingdom Come: Deliverance II

View Stats:
Any auto run/auto walk mods available?
I've been doing a ton of walking through the countryside during the first few hours, andy carpal tunnel is starting to act up.

Are there any alternatives to holding down "W" for minutes at a time?

Thanks
< >
Showing 1-13 of 13 comments
Rigor Feb 10 @ 5:19am 
Yes, you can use a simple AHK 2.0 script for this.
When in-game, use F4 as toggle, and W can also be used to stop it again.

#Requires AutoHotkey v2.0 ; ------------------------------------------------------------------------------------ TrayTip "F4: Toggle Auto Walk`nF7: Terminate Script`nF8: Reload Script", "AutoHotkey", 1 Sleep 5000 ; ------------------------------------------------------------------------------------ ; Toggle W ON/OFF with F4 F4:: { If GetKeyState("w") Send "{w up}" Else Send "{w down}" Return } ; ------------------------------------------------------------------------------------ ; Terminate the script F7:: { ExitApp } ; ------------------------------------------------------------------------------------ ; Reload the script F8:: { Reload Sleep 1000 }
Last edited by Rigor; Feb 11 @ 4:02am
get a horse and you can auto follow roads

and on missions u can auto follow someone
Last edited by travsticles88; Feb 10 @ 5:28am
On your horse just double tap shift a few times and when the yellow bar below the green bar runs out you will need to double tap shift a few more times, the. You don’t have to hold W, just A and D to turn
gandalf Feb 10 @ 6:03am 
Rigor: I tried this. Doesnt seem to work. Pressing F4 in game nothing happens.
alka Feb 10 @ 6:05am 
Originally posted by travsticles88:
get a horse and you can auto follow roads

and on missions u can auto follow someone
x2 to this.

The horse riding seems improved over KCD1 to me, at least as far as I can remember. I've only had a horse for a few hours but seems better so far.

You can set the horse to follow a road, set the speed, and sit back and look around with the mouse and the horse keeps following the road.
Last edited by alka; Feb 10 @ 6:06am
Rigor Feb 10 @ 6:27am 
Originally posted by gandalf:
Rigor: I tried this. Doesnt seem to work. Pressing F4 in game nothing happens.

Well, you will have to download AHK 2.0 and make a new script (Use the AHK Dash after install), then copy/paste my script and save. Run the script and then run the game. Enjoy

Edit: You could use Notepad++ when copy/paste into your newly created AHK script.
Last edited by Rigor; Feb 10 @ 6:29am
Sandsifter Feb 10 @ 10:03am 
I've never used AHK, but will give it a shot. I managed to briefly use my Razer Synapse software to map a macro to a key, but it started getting a bit shaky at one point.

Thanks
Morgan Feb 10 @ 10:09am 
Originally posted by Sandsifter:
I've been doing a ton of walking through the countryside during the first few hours, andy carpal tunnel is starting to act up.

Are there any alternatives to holding down "W" for minutes at a time?

Thanks

It's less of an issue once you get a horse. Until then I made a macro on my keyboard.
Rigor Feb 10 @ 10:44am 
Originally posted by Sandsifter:
I've never used AHK, but will give it a shot. I managed to briefly use my Razer Synapse software to map a macro to a key, but it started getting a bit shaky at one point.

Thanks

Yeah, it is nice to have in some situations, mostly on foot.
Really good when overloaded, and wanting to gain some xp.
Last edited by Rigor; Feb 10 @ 5:13pm
gandalf Feb 10 @ 9:51pm 
Rigor: Yes got autohotkey 2 installed. Yes got your script in a file. Mine is called HoldWKey.ahk. I see the notification at near system tray bottom right. Yet, when I alt tab back into my game pressing F4 just dont seem to work.
Rigor Feb 11 @ 3:50am 
Originally posted by gandalf:
Rigor: Yes got autohotkey 2 installed. Yes got your script in a file. Mine is called HoldWKey.ahk. I see the notification at near system tray bottom right. Yet, when I alt tab back into my game pressing F4 just dont seem to work.

Yeah, that sounds strange. I can confirm that it is working on my end, and im using it when I play.
It sure sounds like you did the right thing, but have you tried:

1. Running the script as admin?
2. Is F7 (Terminate) and F8 (Reload) working as they should?
3. Testing the script with notepad to see if it inputs the "w" when hitting F4, and then inputs nothing when hitting it again?
4. Try using "*~F4::" (* is a wildcard, and will fire the hotkey even if modifiers are being held, and the ~ will have the native function not blocked)
5. Testing the send command without the use of GetKeyState() and in Notepad to see if send command is sending "w" correctly?

; For testing the send command in notepad without GetKeyState() ; Should output "w" and then "w" after sleeping for 500ms, in notepad F4:: { Send "{w}" Sleep 500 Send "{w down}" Sleep 100 Send "{w up}" ; Commenting out the GetKeyState() ;If GetKeyState("w") ; Send "{w up}" ;Else ; Send "{w down}" }



Without the GetKeyState(), we can try using global variable.

; Toggle W ON/OFF with F4 ; For use without GetKeyState() ToggleAutoW := 0 F4:: { global ToggleAutoW := !ToggleAutoW If ToggleAutoW Send "{w down}" Else Send "{w up}" Return } ; set the variable when pressing "w" key, so we will be able to stop the toggle on "w", and not only F4. *~w:: { If ToggleAutoW global ToggleAutoW := 0 }

I really cant see a reason why it would work on my end and not your end, unless you have some software that prevent AHK from working properly.
I truly hope this helps, unless it is the send command, then the new code wont work either.

Edit: Added a new step 4 above, worth a try in your case.
Last edited by Rigor; Feb 11 @ 4:47am
Maxtorym Feb 27 @ 10:37am 
You don't need a script for auto walk it's allready in the game. Allso for on foot
Rigor Mar 2 @ 11:16am 
Originally posted by Maxtorym:
You don't need a script for auto walk it's allready in the game. Allso for on foot

How on foot, without using a bug/glitch ?
< >
Showing 1-13 of 13 comments
Per page: 1530 50

Date Posted: Feb 7 @ 10:31am
Posts: 13