Last active
April 18, 2021 08:28
-
-
Save bennycode/1e65a895596faed7505ab5904961b520 to your computer and use it in GitHub Desktop.
CS:GO Duck Jump Binding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Find the location where CS:GO is installed: | |
| # 1. Open your Steam Library | |
| # 2. Right-click on "Counter-Strike: Global Offensive" in your list of games | |
| # 3. Select "Properties..." | |
| # 4. Select "Local Files" | |
| # 5. Click on "Browse..." | |
| # 6. Open the following location: | |
| # ...\Counter-Strike Global Offensive\csgo\cfg\autoexec.cfg | |
| # 7. Save the entries below to your "autoexec.cfg": | |
| # This entry unbinds the "space" key | |
| unbind "space" | |
| # These entries define a "DJUMP" variable | |
| alias +DJUMP "+jump; +duck" | |
| alias -DJUMP "-jump; -duck" | |
| # This entry binds "DJUMP" to your "space" key | |
| bind space "+DJUMP" | |
| # This entry writes everything to your config (it overwrites from your in-game configs if needed) | |
| host_writeconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment