Overview
Keybinding dodge and disabling double-tap dodging
Introduction
Quick rundown on how to fix the dodging mechanics.
Source of this information:
HOW TO TURN OFF DOUBLE-TAP TO DODGE (M/KB) from cyberpunkgame
Preparations
First go to the game’s config folder, this is where the configuration files will be and the work will be done. I suggest you backup the files just in case any mistakes or issues arise.
Example of directory:
F:Steam GamessteamappscommonCyberpunk 2077r6config
Add or change key for dodging
Open the file “inputUserMappings.xml”
Find the section
If you don’t want your crouch keys to be used for dodging, remove the following ones.
I added mouse 4 because that’s what I wanted to dodge with. I’m not sure what all key IDs are but if you do a search (Ctrl+F) you can search for “lshift” if you want to know what the Left Shift line looks like.
The following code is what I currently have in my section.
For this to work, check the section where information regarding “Dodge count=’2′” is explained.
Disable double-tap
Open the file “inputContexts.xml” and find the following section
Here we change the “count=’2′” to a higher number. What this number represents is how many key inputs you need to press for the game to activate dodge. uptime and downtime is how long between each key press you may have for them to count. Because of this we want the number to be high enough that we won’t reach it, I suggest having something above 10 just in case you’re trying to position yourself with precision.
The action=”Dodge” line is for double-tapping the crouch button to dodging, more information regarding that line is in the next section, changing that one to 1 without rebinding the double-tap dodge keybind will result in you not being able to crouh without dodging.
The following section is my current code (excluding the first dodge-line). What this does is that I have to press one of the WASD keys 20 times in a row with short downtime before dodge is activated.
Action=”Dodge” count=”1″
This is somewhat important to change if you want the previously bound key to be utilized for dodging. What this does is it decides how many times you need to press that key for it to activate dodge. Having it on 2 means that you have to double tap every time you want to dodge. If you have the key bound to Left Shift, this should stay at 2 because then you can still sprint without dodging first. I have it on 1 as I am using mouse 4, it won’t override any other actions.
The following line is my current code
Credits
Hopefully this will help someone!
For more information, ask or check the subreddit thread.
Once again, thanks to the folks on Reddit for bringing this information to my attention!
HOW TO TURN OFF DOUBLE-TAP TO DODGE (M/KB) from cyberpunkgame
In case of emergency and your files got messed up, here are my two files.
[link]