Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Not playing a game because no hold crouch, how sad.. your loss
ignorance and greed will deestroy mankind
I get where you are coming from, but you are massively exaggerating.
There are lots and lots of games out there that don't let you freely map your controls.
Sometimes it's missing toggle switches, other times some keys aren't usable or some functions in game are hardcoded.
Like I said, I understand where you are coming from. I play with the arrow keys and have to remap basically every function in every game I want to play that way. The amount of games that let me do that, without me having to use external programs or the config files, is small.
Yes, PC gaming always was about customization and doing things your way, but apparently not a lot of developers think the same.
From one old schooler to another: Jump over your shadow or take a look at Autohotkey to make your keys unsticky. It is worth it for this game alone.
And yes, I know. It shouldn't be that complicated, but sadly it is.
Edit: Changed sticky to unsticky.
Thanks for your thoughtful post.
You write little scripts that you start when playing your game.
A simple command would be A::Enter
This would make the key "A" behave like the "Enter" key every time you press it.
In your case you would want something that executes the crouch command on the button press and again on releasing the button. Which is possible with AHK and could look like this:
Ctrl Down::Send Ctrl
Ctrl Up::Send Ctrl
Here is a link to the keys you can use in AHK and their names:
https://autohotkey.com/docs/KeyList.htm
Toggle crouch is superior in a game like this though. In old games like Thief 2 I actually use both bound to Ctrl and the other to Z, with toggle crouch being used 90% of the time. That's hundreds of hours of contorting my smallest finger in a weird position that I've spared myself from.
We may quibble about what's superior, but I'm glad we agree this is a pretty basic option.
Sounds perfect, I'll try it. I'm a bit worried that it'd end up sending the commands in rapid succession and getting them reversed, but best not to worry about it until it happens!
I made a quick script and tested it, should work fine. The key actually got stuck one time, but jumping once helped. Couldn't reproduce that, so I don't know if it's the script or the game.
$Shift::Send {Shift}
$Shift up::Send {Shift}
This is a pretty simple solution. If there are problems you will have to dig deeper and write a more complex script, maybe with a while loop or something like that.
For some reason Bethesda just hates the concept, and it sucks because it's part of why I feel like their games are more annoying and stiff to play.