Miss the cs2 keybind feel or hate valve for ruining double keybinding?
Ever wanna crouch jump and don't know or too lazy to learn? Here is the guide for you.
I personally would only recommend doing this on community servers because i dunno the risks in non community servers
here is your local third party software (autohotkey) guide
download and install (V1!!! NOT V2!!! v2 will not work because i'm too lazy to look at the v2 docs and make it work there) this yes it's legit and open source and pretty popular
https://www.autohotkey.com/
after installed make a new file on your desktop with the given feature of right clicking > new > autohotkey script
or
create a new text file and make sure it has the file extension ahk (ex.. crouch_jump.ahk)
or
open autohotkey dash via start menu and create a new script there
after you create the file or script open it with a text editor or your local one notepad lmao
paste this code
save the file
run the file and enjoy
if you wanna close it go to your tray on your taskbar and right click autohotkey and click close
yes code is messy and i don't care because it works
p.s you cant use the key you set while chatting in cs2 but you can use capital F or whatever you set it to
Ever wanna crouch jump and don't know or too lazy to learn? Here is the guide for you.
I personally would only recommend doing this on community servers because i dunno the risks in non community servers
here is your local third party software (autohotkey) guide
download and install (V1!!! NOT V2!!! v2 will not work because i'm too lazy to look at the v2 docs and make it work there) this yes it's legit and open source and pretty popular
https://www.autohotkey.com/
after installed make a new file on your desktop with the given feature of right clicking > new > autohotkey script
or
create a new text file and make sure it has the file extension ahk (ex.. crouch_jump.ahk)
or
open autohotkey dash via start menu and create a new script there
after you create the file or script open it with a text editor or your local one notepad lmao
paste this code
Code:
#IfWinActive, Counter-Strike 2
f:: ; your choice of key
Send {control down} ; sets control down (duck)
Send {space} ; jump
sleep 400 ; delay or else control wont register for crouch jump
Send {control up} ; sets control back to up since it was down
return
save the file
run the file and enjoy
if you wanna close it go to your tray on your taskbar and right click autohotkey and click close
yes code is messy and i don't care because it works
p.s you cant use the key you set while chatting in cs2 but you can use capital F or whatever you set it to
Last edited: