Last active
December 16, 2015 22:59
-
-
Save pmrowla/5510735 to your computer and use it in GitHub Desktop.
numpad
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
// Author: Peter "Astroman" Rowlands | |
// 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 KP_INS "buy vesthelm; buy vest" | |
bind KP_DEL "buy defuser" | |
bind KP_END "buy p250" | |
bind KP_DOWNARROW "buy m4a1; buy ak47" | |
bind KP_PGDN "buy awp" | |
bind KP_LEFTARROW "buy bizon" | |
bind KP_5 "buy famas; buy galilar" | |
bind KP_RIGHTARROW "buy scar20; buy g3sg1" // for bad players | |
bind KP_HOME "buy flashbang" | |
bind KP_UPARROW "buy smokegrenade" | |
bind KP_PGUP "buy hegrenade" | |
bind KP_ENTER "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