Forums
Games
Cyberpunk 2077 Thronebreaker: The Witcher Tales GWENT®: The Witcher Card Game The Witcher 3: Wild Hunt The Witcher 2: Assassins of Kings The Witcher The Witcher Adventure Game
Jobs Store Support Log in Register
Forums - CD PROJEKT RED
Menu
Forums - CD PROJEKT RED
  • Hot Topics
  • NEWS
  • GENERAL
    SUGGESTIONS
  • STORY
    MAIN JOBS SIDE JOBS GIGS
  • GAMEPLAY
  • TECHNICAL
    PC XBOX PLAYSTATION
  • COMMUNITY
    FAN ART (THE WITCHER UNIVERSE) FAN ART (CYBERPUNK UNIVERSE) OTHER GAMES
  • RED Tracker
    The Witcher Series Cyberpunk GWENT
PC
XBOX
PLAYSTATION
Menu

Register

Key Remapping

+
Prev
  • 1
  • …

    Go to page

  • 20
  • 21
  • 22
  • 23
  • 24
  • …

    Go to page

  • 37
Next
First Prev 22 of 37

Go to page

Next Last
Bellator Pius Gratus

Bellator Pius Gratus

Forum veteran
#421
Dec 11, 2020
I love you devs, I really do! Thank you for releasing this awesome game!
Not that I've managed to go check the engine of my car in the garage, yet(Nomad).

You see, I will not go ahead until my keyboard keys are customised as I want them to be.
I remember this issue five years back, playing Witcher 3.
But that was not as bad as Cyberpunk 2077 and locking certain keys.
Witcher 3, well, it could be circumvented.
But I shouldn't have to do that, should I?

First they piss(NOT CDPR, but the industry as a whole) on players having a preference(not playing with controllers), then they piss on lefties assuming WASD is the norm. It may be, but I know am NOT alone shunning WASD.
Shit, I played the original Doom using arrow keys, so, let me use arrow keys however I want!
As of now, I cannot jump and I cannot crouch in Cyberpunk. Not to mention the horrible F-key.
Is that F as in **** you I wonder? :(

supernatural u think.gif


Sure feels like it. :rolleyes:
I'm a leftie and I have a preference to customise my keyboard keys in a setup suitable to me.
This as I wasn't born with ten fingers.

WHY lock the keys? Shouldn't this procedure be extinct by now?
 
  • RED Point
Reactions: xfugazix, elite72, catawaul and 5 others
Dusty_Srb

Dusty_Srb

Fresh user
#422
Dec 11, 2020
How can I remap all keys that suit lefthanders. I use the numeric keyboard for navigation and interaction, but some essential keys I can't bind. I can't get past the Combat training because of prebound keys!
 
  • RED Point
Reactions: xfugazix, catawaul and WilliamSternritter
ArcticUnicorn

ArcticUnicorn

Fresh user
#423
Dec 11, 2020
I would like to be able to change controller button layout - in particular, changing melee with crouch. Very surprised the PC version doesn't allow controller button layout reconfiguring without messing with file settings etc.
 
  • RED Point
Reactions: elite72 and Chambers35
XenoHQ

XenoHQ

Rookie
#424
Dec 11, 2020
Please allow me to change the Interact key from "F". It's killing my vibe for the game.
 
  • RED Point
Reactions: xfugazix
4evercrisp

4evercrisp

Rookie
#425
Dec 11, 2020
Please consider adding different controller button schemes to the game, for example being able to use the right analog click for crouching and moving melee to B.
 
  • RED Point
Reactions: catawaul
S

shinodem

Fresh user
#426
Dec 11, 2020
I am wondering why they do this Pick up body - R, drop Body - E.
Why???
Very strange keymap.
Why two buttons for toggle and not toggle, to crouch and scan? This should be in options for one button.
Who did this?
 
  • RED Point
Reactions: xfugazix, WilliamSternritter and Tiberiosity
M

mekilgore

Fresh user
#427
Dec 11, 2020
I'm just going to post this as I don't have the time to read through this thread

How to change key bindings:

There are two configuration files you need to edit.

...\Cyberpunk 2077\r6\config\inputUserMappings.xml
...\AppData\Local\CD Projekt Red\Cyberpunk 2077\UserSettings.json

I recommend opening these two files with Notepad++

Make sure you backup these two files before you edit them.

The file UserSettings.json contains all the key binds you would find in the game's settings menu. You can assign whichever key you want. Only change the key under "value" not "default value."

The key or mouse button must be in quotes and prefixed with IK_

Aside from the number keys and letters, some keys require the word name for the character on the key.

Such as:

Up
Down
Left
Right
Enter
Delete
End
Home
PageDown
PageUp
RShift
RControl
RightBracket
LeftBracket
Backspace
NumPad0...NumPad9
NumPeriod
Mouse4
Mouse5

Now lets take a look at inputUserMappings.xml

Entries (with a few exceptions, see below) in this file that contains the variable "overridableUI=" is found in UserSettings.json.

In other words, the key for each action listed in inputUserMappings.xml will be overridden by the key for that action found in UserSettings.json

Now there are a few entries in inputUserMappings.xml that contain an "overridableUI="
that is not found in UserSettings.json (don't try to add these to UserSettings.json), such as:

(Do not change these entries to match what is listed below, I edited these for the sake of space. Also, I copied these entries from the file I edited, so the keys won't match the defaults.)

<mapping name="CancelCharging_Button" type="Button">
<button id="IK_Delete" overridableUI="cancelCharge"/>
</mapping>

<mapping name="ApplyAndCloseQHackWidget" type="Button" >
<button id="IK_End" overridableUI="selectChoice"/>
</mapping>

<mapping name="PickUpBodyFromTakedown_Button" type="Button">
<button id="IK_End" overridableUI="dropCarriedObject"/>
</mapping>

<mapping name="BodyDrop_Button" type="Button">
<button id="IK_End" overridableUI="dropCarriedObject"/>
</mapping>

<mapping name="UI_MoveUp" type="Button" >
<button id="IK_Up" overridableUI="selectUpSecondary"/>
</mapping>

<mapping name="UI_MoveDown" type="Button" >
<button id="IK_Down" overridableUI="selectDownSecondary"/>
</mapping>

<mapping name="Apply_Button" type="Button" SIEJADependent="true" >
<button id="IK_End" overridableUI="selectChoice"/>
</mapping>

<mapping name="Cancel_Button" type="Button" SIEJADependent="true" >
<button id="IK_Delete" overridableUI="cancelSelection"/>

</mapping>
<mapping name="ExitWheel_Button" type="Button" SIEJADependent="true" >
<button id="IK_RightMouse" overridableUI="exitRadial"/>

</mapping>
<mapping name="SelectWheelItem_Button" type="Button" SIEJADependent="true" >
<button id="IK_LeftMouse" overridableUI="selectInRadial"/>

</mapping>
<mapping name="StopDeviceControl_Button" type="Button" >
<button id="IK_Delete" overridableUI="stopDeviceControl"/>

<mapping name="Choice1" type="Button" >
<button id="IK_NumPad1" overridableUI="choice1"/>

<mapping name="Choice2" type="Button" >
<button id="IK_NumPad2" overridableUI="choice2"/>

<mapping name="Choice3" type="Button" >
<button id="IK_NumPad3" overridableUI="choice3"/>

<mapping name="Choice4" type="Button" >
<button id="IK_NumPad4" overridableUI="choice4"/>


The "overridableUI=" for these actions are not found in the UserSettings.json. So whichever key you change them to will be the key the game will use.

It is worth noting that whichever keys are assigned to the last four; Choice1 thru Choice4, will be the key you will be prompted to press to perform most actions (the "Use" or "Action" key as it is in most other games in this genre).
 
Last edited: Dec 12, 2020
  • RED Point
Reactions: catawaul and TZODnmr2k5
Crypticgate

Crypticgate

Fresh user
#428
Dec 11, 2020
I completely agree we need this. Of course cars and people glitching out is more important, but unlimited key binding access should be as standard as the option screen itself.

In my case I've been using the same keyboard setup for 20 years. I use the entire NUMBpad for movement and internation, and pinky and ring finger to operate the rest of what I can reach. I've never used WASD once in my life. lol
We should be able to bind ANY button to ANY other button (with the exception of your ESC button for the menu).
Please let us rebind ALL the keys... especially F.
THANK YOU CDPR for all your hard work. I just wanted to add this to the forum to back up everyone else.
 
  • RED Point
Reactions: Dusty_Srb, xfugazix, catawaul and 2 others
Arrtee

Arrtee

Fresh user
#429
Dec 11, 2020
The recent patch doesn't address rebinding. Bloody 'ell...

Update 1.04
Quests

  1. Fixed an issue with completing the final objective in Gig: Freedom of the Press.
  2. Fixed an issue with starting conversation with Johnny at the end in Life During Wartime.
  3. Corrected a rare issue with NPCs no longer calling V if A Like Supreme quest was abandoned mid-way.
  4. Fixed an issue with Nix not going into his default state in Spellbound and KOLD MIRAGE.
  5. Fixed issues blocking progress in I Fought The Law if the quest area is left.
  6. Fixed inability to find Delamain in Epistrophy.
  7. Fixed issues related to remaining in the second phase of the quest after finishing Pacifica fight with Ozob if played after Finals.
  8. Fixed an issue with Nomads no longer present if V leaves the quest area mid-combat in With a Little Help from My Friends/Queen of the Highway.
  9. Adjusted mappings and re-enabled quest tracker in M’ap Tann Pèlen/I Walk the Line/Transmission.
  10. Fixed constraints on freedom to get up and sit down if neither blueline condition is met in Violence.
  11. Fixed issues with time and space resulting from leaving the quest area or abandoning the quest in Following the River.
  12. Fixed an issue with conversation with Johnny not starting after leaving the hotel in Tapeworm.
  13. Fixed an issue with quest being blocked upon leaving the quest area before climbing the hill in Following the River.
  14. Fixed the objective "Go into booth 9" not completing if the room’s entered too fast in Automatic Love.
  15. Fixed Jackie’s issues with sitting still in The Ripperdoc.
Other quest fixes
Gameplay


  1. Fixed the preview in weapon crafting.
Visual

  1. Reduced vehicle appearance pop-in.
  2. Speeded up switching first person perspective to third person perspective in a vehicle.
  3. Fixed issues with animations missing from important quest NPCs during cinematics.
Performance & Stability

  1. Improved stability, including various crash fixes.
Miscellaneous

  1. Modified the flashing effect on braindances to reduce the risk of inducing epileptic symptoms. The effect has been smoothed out and the flashes reduced in frequency and magnitude.
  2. Removed copyrighted songs incorrectly present in the game with "Disable Copyrighted Music" feature toggled on.
PC-specific

  1. Switching language to default in the in-game settings now correctly sets it to the language of your Steam client.
Console-specific

  1. Improved reflections quality on Xbox One and PlayStation 4 to eliminate the smudge effect.
  2. Fixed "The Wasteland" achievement being stuck on 97% after completing all relevant missions in The Badlands on Xbox.
  3. Fixed an issue with missing PT-BR VO for Xbox players in Americas
 
  • RED Point
Reactions: xfugazix, catawaul, TZODnmr2k5 and 1 other person
Jayshua_Lyn

Jayshua_Lyn

Senior user
#430
Dec 11, 2020
Yeah. New Hotfix 1.04 does nothing to fix our issue!

And we still have NO response on this!

Has anyone in this thread put in tickets referencing this thread? Maybe enough of us can maybe it known? :(
 
  • RED Point
Reactions: xfugazix, catawaul, ZverX and 1 other person
TJXXX

TJXXX

Fresh user
#431
Dec 11, 2020
Jayshua_Lyn said:
Yeah. New Hotfix 1.04 does nothing to fix our issue!

And we still have NO response on this!

Has anyone in this thread put in tickets referencing this thread? Maybe enough of us can maybe it known? :(
Click to expand...
I've checked the tech support page and there does not seem to be any way to send a support ticket request.
 
  • RED Point
Reactions: elite72, burglady and catawaul
M

mnoyes

Rookie
#432
Dec 11, 2020
Allow remapping keys for esdf. You should not need to be told this.

Huge disappointment, and haven't even started playing. Simply shocked such a huge oversight.
 
  • RED Point
Reactions: xfugazix and catawaul
K

Kirill79

Forum regular
#433
Dec 11, 2020
casedistorted said:
I did indeed figure out how to change Inventory open to mouse5. My only problem is you can't use mouse4 button to close the inventory screen again, it will only open it. Seems like a massive oversight by CDPR and I hope they fix it. Maybe for now I'll just create a custom mouse profile using Razer's software to change Mouse5 or Mouse4 button to the i/inventory key so I can open and close using the same key. This seems like an easier solution if you have mouse button editing software for the time being. It seems that Inventory screen and Open Inventory are two separate key bindings (I and O keys respectively) so you can change the O key binding but you cannot change the I key from what I've found.

I typed up my methods in a post on page 17.
Click to expand...
In inputUserMappings.xml find OpenHubMenu_Button. In the line below <button id = "IK_I" /> put your key. I have a tilde here. Now for me this button opens the menu and closes everything (map, inventory, journal, etc.).
 
  • RED Point
Reactions: catawaul
BlackAngus_Brad

BlackAngus_Brad

Fresh user
#434
Dec 11, 2020
I'm in a very similar situation to you guys. I'm an old-school gamer that uses ESCF to move instead of WASD, and I always use D for my use/interact. I even went so far to try to do a key assignment swapper, and it doesn't work in the game, and I do not feel like changing the registry (and reboot) to change 2 keys every time I play. I'm just baffled that in 2020 from a studio that made phenomenal games in the past that they couldn't manage to code this in. And why F of all keys? My understanding is that E is the traditional WASD interact button. Just... hard to grab. And it's ruining my gameplay experience. I've got 30 years of muscle memory to strafe right with F, and here I am trying to jank with the D key, making fights that much harder. SMH
 
  • RED Point
Reactions: xfugazix, elite72, catawaul and 1 other person
MiAwelito

MiAwelito

Fresh user
#435
Dec 11, 2020
I hope they adress these problems soon, because it's unplayeable for me
 
  • RED Point
Reactions: xfugazix and Tiberiosity
spitfire122

spitfire122

Fresh user
#436
Dec 11, 2020
This better be addressed in the FIRST PATCH. I use ESDF, this is absolutely retarded. This and the insane red interface are my only problems with this game. Other than that, it is truly epic
 
  • RED Point
Reactions: xfugazix and catawaul
ulderik

ulderik

Fresh user
#437
Dec 11, 2020
This is the most discussed topic after the bugs one......

It's definitely a MUST for the next patch (tomorrow? :) )

Ah and add also a natural color for nails!
 
  • RED Point
Reactions: xfugazix and catawaul
Chambers35

Chambers35

Rookie
#438
Dec 11, 2020
ArcticUnicorn said:
I would like to be able to change controller button layout - in particular, changing melee with crouch. Very surprised the PC version doesn't allow controller button layout reconfiguring without messing with file settings etc.
Click to expand...
This is something I desperately need! I hate not being able to aim and control my crouching at the same time. Really don't know why they haven't added this.

On the PS4 version playing on PS5.
 
kiesus

kiesus

Fresh user
#439
Dec 11, 2020
Truly need a dedicated button for dodging.
I have "dodged" myself off of buildings multiple times now, while attempting to tippytoe on the edge or around an item.
 
  • RED Point
Reactions: catawaul and Arrtee
R_Mutt

R_Mutt

Fresh user
#440
Dec 11, 2020
key hacks have not worked for me - game says files are corrupted - so sadly, the game remains unplayable, which is a pity as it looks great. thought today's patch would address this, but no, so i've reluctantly submitted a refund request. will gladly repurchase whenever this issue is addressed by CDPR...
 
  • RED Point
Reactions: WilliamSternritter, catawaul and Tiberiosity
Prev
  • 1
  • …

    Go to page

  • 20
  • 21
  • 22
  • 23
  • 24
  • …

    Go to page

  • 37
Next
First Prev 22 of 37

Go to page

Next Last
Share:
Facebook Twitter Reddit Pinterest Tumblr WhatsApp Email Link
  • English
    English Polski (Polish) Deutsch (German) Русский (Russian) Français (French) Português brasileiro (Brazilian Portuguese) Italiano (Italian) 日本語 (Japanese) Español (Spanish)

STAY CONNECTED

Facebook Twitter YouTube
CDProjekt RED
  • Contact administration
  • User agreement
  • Privacy policy
  • Cookie policy
  • Press Center
© 2018 CD PROJEKT S.A. ALL RIGHTS RESERVED

CD PROJEKT®, Cyberpunk®, Cyberpunk 2077® are registered trademarks of CD PROJEKT S.A. © 2018 CD PROJEKT S.A. All rights reserved. All other copyrights and trademarks are the property of their respective owners.

Forum software by XenForo® © 2010-2020 XenForo Ltd.