LPT You can manually set keybinds that would normally be incompatible

I'm more comfortable with hold to sprint/breath over toggle, and am used to both being bound to Left Shift simultaneously in various other games. Since the in-game keybind menu doesn't let you double up on binds, I figured I'd try it the ol' .ini way. Happy to know that it worked perfectly.

%appdata%Battlestate GamesEscape from TarkovSettingsControl.ini

Search for bind of choice (i.e. Sprint)

{
  "keyName": "Sprint",
  "variants": [
    {
      "keyCode": [
        "LeftShift"
      ]
    },
    {
      "keyCode": []
    }
  ],
  "pressType": "Toggle"
},

Set as desired

{
  "keyName": "Sprint",
  "variants": [
    {
      "keyCode": [
        "LeftShift"
      ]
    },
    {
      "keyCode": []
    }
  ],
  "pressType": "Continuous"
},
{
  "keyName": "Breath",
  "variants": [
    {
      "keyCode": [
        "LeftShift"
      ]
    },
    {
      "keyCode": []
    }
  ],
  "pressType": "Continuous"
},

Don't have any other similar binds in mind myself but I'm curious if it'll help anyone else with their QoL

Source: https://www.reddit.com/r/EscapefromTarkov/comments/102nho7/lpt_you_can_manually_set_keybinds_that_would/

leave a comment

Your email address will not be published. Required fields are marked *