Created
February 24, 2022 12:47
-
-
Save pmrowla/81d8a871a5755b3bec1182326cf7b3e9 to your computer and use it in GitHub Desktop.
CS:GO autoexec
This file contains 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
// CS:GO autoexec.cfg | |
// misc junk | |
cl_autowepswitch "0" // don't use autoswitch! | |
hud_showtargetid "1" | |
cl_autohelp "0" | |
cl_showhelp "0" | |
cl_disablefreezecam "1" | |
// turn this back on for esea stats | |
cl_disablehtmlmotd 1 | |
// net graph | |
net_graph "1" | |
net_graphpos "1" // bottom right | |
net_graphproportionalfont "0" // dont scale net_graph font size | |
// crosshair | |
// classic, static, cyan w/outline | |
cl_crosshairstyle "4" | |
cl_crosshairalpha "200" | |
cl_crosshaircolor "5" | |
cl_crosshaircolor_r "0" | |
cl_crosshaircolor_b "250" | |
cl_crosshaircolor_g "250" | |
cl_crosshairdot "0" | |
cl_crosshairgap "-1" | |
cl_crosshairsize "5" | |
cl_crosshairusealpha "1" | |
cl_crosshairthickness "1" | |
cl_fixedcrosshairgap "-1" | |
cl_crosshair_drawoutline "1" | |
cl_crosshair_outlinethickness "1" | |
// buy binds | |
bind F12 "buy vesthelm; buy vest" | |
bind F11 "buy defuser" | |
bind F1 "buy p250" | |
bind F4 "buy m4a1; buy ak47" | |
bind F5 "buy awp" | |
bind F2 "buy bizon" | |
bind F3 "buy famas; buy galilar" | |
//bind KP_RIGHTARROW "buy scar20; buy g3sg1" // for bad players | |
bind F7 "buy flashbang" | |
bind F8 "buy smokegrenade" | |
bind F9 "buy hegrenade" | |
bind F10 "buy molotov; buy incgrenade" | |
//bind KP_PLUS "buy decoy" | |
// rate stuff | |
rate 128000 | |
cl_updaterate 128 | |
cl_cmdrate 128 | |
cl_interp_ratio 1.0 | |
cl_interp 0.0 | |
// toggle voice mute | |
voice_enable 1 | |
bind PGDN "voice_t" | |
alias voice_t "voice_off" | |
alias voice_on "alias voice_t voice_off; voice_enable 1" | |
alias voice_off "alias voice_t voice_on; voice_enable 0" | |
// radar zoom toggle | |
// max value is actually 1 but I don't see the point in zooming in past .7 | |
cl_radar_scale .7 // start at radar_max | |
bind n "radar_t" | |
alias radar_t "radar_med" | |
alias radar_max "alias radar_t radar_med; cl_radar_scale .7" | |
alias radar_med "alias radar_t radar_min; cl_radar_scale .4" | |
alias radar_min "alias radar_t radar_max; cl_radar_scale .25" | |
// chat commands | |
bind l "say .ready" | |
//bind alt "say .noclip" | |
// default rcon password | |
rcon_password "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment