Posted May 07, 2021
Just started a new playthrough using the GOG version for the first time (have played previously from retail CD). When the game gets started in the bank, my character is crouched and stays that way. When I press Jump, the character stands up, but when I release the Jump key, he's crouched again. Obviously this makes playing almost impossible and jumping totally impossible. Any ideas on how I can "uncrouch"?
Update: Figured it out. I use semicolon to crouch. The game stores that in the INI file as ";" which is the INI comment character. Somehow this makes the player character crouch constantly. The fix is to replace this
bind ; "+movedown"
with this
bind SEMICOLON "+movedown"
and make the file read-only.
Update: Figured it out. I use semicolon to crouch. The game stores that in the INI file as ";" which is the INI comment character. Somehow this makes the player character crouch constantly. The fix is to replace this
bind ; "+movedown"
with this
bind SEMICOLON "+movedown"
and make the file read-only.
Post edited May 07, 2021 by javic12