This is how you enable Toggle Crouch.
Posted: 2015-06-04 18:27
Crouching in PR can be a bit annoying after awhile because it's not togglable, you will be doing a lot of crouching if you value your virtual soldier's life and since i doubt it will be patched into the game i had to see if there was a work around for this.
And there is, here is how you can enable a almost perfect Togglable Crouch.
1. Download AutoHotkey: macro and automation Windows scripting language
2. Make a txt file and copy paste the the script below into the txt file. The txt file can be called whatever you want.
state:= false
$LControl::
KeyWait, LControl
Send, % "{LControl " ( (State:=!State) ? "Down" : "Up" ) "}" ;this is ternary that does the same thing as the if/else above
return
3. Exit and save the txt file.
4. Drag and drop the txt file onto the AutoHotKey.exe
5. Enjoy a much less tiring and annoying crouching!
Now this does come with a problem as when the script is enabled you can't type in game which is not really a problem if you have a mic. Your PC also thinks you are holding down crouch when the script is running so be sure to suspend the script by right clicking on it from the taskbar and clicking suspend or just close it when you are not playing anymore.
Once you get into the game it works great. If you want to name your squad something or you need to type you must remember to click left control once or whatever key you set it up with to be able to type ingame.
Other than that it works great and i can't play without it anymore.
And there is, here is how you can enable a almost perfect Togglable Crouch.
1. Download AutoHotkey: macro and automation Windows scripting language
2. Make a txt file and copy paste the the script below into the txt file. The txt file can be called whatever you want.
state:= false
$LControl::
KeyWait, LControl
Send, % "{LControl " ( (State:=!State) ? "Down" : "Up" ) "}" ;this is ternary that does the same thing as the if/else above
return
3. Exit and save the txt file.
4. Drag and drop the txt file onto the AutoHotKey.exe
5. Enjoy a much less tiring and annoying crouching!
Now this does come with a problem as when the script is enabled you can't type in game which is not really a problem if you have a mic. Your PC also thinks you are holding down crouch when the script is running so be sure to suspend the script by right clicking on it from the taskbar and clicking suspend or just close it when you are not playing anymore.
Once you get into the game it works great. If you want to name your squad something or you need to type you must remember to click left control once or whatever key you set it up with to be able to type ingame.
Other than that it works great and i can't play without it anymore.