Created
June 1, 2026 04:05
-
-
Save pietrocaselani/b078ee90f4a2a7cf4297f69f2fa3ef89 to your computer and use it in GitHub Desktop.
CS2 configs
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
| // CS2 | |
| // Launch options: +exec autoexec.cfg | |
| unbind alt | |
| unbind n | |
| sensitivity 1.25 | |
| // bind "`" "toggleconsole" | |
| bind "=" "toggleconsole" | |
| bind "mouse5" " switchhands" | |
| bind , "voice_modenable_toggle" | |
| // Select smoke | |
| bind z "slot8" | |
| // Select flashbang | |
| bind x "slot7" | |
| // Select Molotov/Incendiary | |
| bind c "slot10" | |
| // Select hegrenade | |
| bind v "slot6" | |
| bind "mwheelup" "" | |
| bind "mwheeldown" "" | |
| cl_radar_always_centered 0 | |
| cl_radar_square_always 0 | |
| cl_radar_scale 0.4 | |
| // 3x levels zoom radar | |
| bind "`" "incrementvar cl_radar_scale 0 1 0.25" | |
| // CapsLook toogle radar zoom | |
| bind capslock +radarzoom;alias +radarzoom "cl_radar_always_centered 0;cl_radar_scale 0";alias -radarzoom "cl_radar_always_centered 0;cl_radar_scale 0.4" | |
| // cl_radar_square_always 1 | |
| // Crosshairs | |
| // Azul pequena = CSGO-Jhfkc-4UpR6-DJftC-VfGek-pL3ED |
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
| bind "F5" "+fw" // fastforward | |
| alias "+fw" "demo_timescale 3" | |
| alias "-fw" "demo_timescale 1" | |
| bind "F6" "+fw2" // fastforward++ | |
| alias "+fw2" "demo_timescale 10" | |
| alias "-fw2" "demo_timescale 1" | |
| bind "F7" "demo_togglepause" // pause/play | |
| bind "F8" "demoui" | |
| bind "F9" "toggle spec_show_xray 1 0" |
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
| // CS2 | |
| // Launch options: +exec treino.cfg | |
| sv_cheats 1 | |
| bind o noclip | |
| bind "mouse5" noclip | |
| bind p "toggle sv_grenade_trajectory_prac_pipreview 1 0" | |
| mp_buy_anywhere 1 | |
| // Could not add bot to the game: Team is stacked (to disable this check, set mp_autoteambalance to zero, increase mp_limitteams, and restart the round). | |
| mp_autoteambalance false | |
| mp_limitteams 10 | |
| bind [ "sv_rethrow_last_grenade" | |
| bind ] "toggle host_timescale 1 10" | |
| // Save and Load Position Binds | |
| alias savepos "clear;getpos_exact;con_logfile cfg/position.log; say Position Saved" | |
| alias loadpos "exec cfg/position.log; say Position Loaded" | |
| bind k "savepos" // Bind K to save current position | |
| bind l "loadpos" // Bind L to load saved position |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment