Skip to content

Instantly share code, notes, and snippets.

@kyledj
Last active September 13, 2015 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyledj/355b0adee8a4713450c2 to your computer and use it in GitHub Desktop.
Save kyledj/355b0adee8a4713450c2 to your computer and use it in GitHub Desktop.
My CS:GO autoexec, with pieces stripped from various sources
// Mouse
sensitivity "0.8"
m_rawinput "1"
m_customaccel "0"
m_mouseaccel1 "0"
m_mouseaccel2 "0"
// Full map radar
cl_radar_always_centered "0"
cl_radar_scale "0.3"
cl_hud_radar_scale "1.15"
cl_radar_icon_scale_min "0.7"
cl_radar_rotate "1"
//Radar zoom in-out script
bind "KP_plus" "incrementvar cl_radar_scale 0.25 1.0 0.05";
bind "KP_minus" "incrementvar cl_radar_scale 0.25 1.0 -0.05";
//HUD
hud_scaling "0.80" // CS:S sized HUD
hud_showtargetid "1"
r_drawtracers_firstperson "0"
// MOTD
cl_disablehtmlmotd "1"
cl_downloadfilter "nosounds"
// Crosshair
cl_crosshair_drawoutline "0"
cl_crosshairalpha "200"
cl_crosshaircolor "1"
cl_crosshairdot "0"
cl_crosshairgap "-1"
cl_crosshairgap_useweaponvalue "0"
cl_crosshairsize "4"
cl_crosshairstyle "4"
cl_crosshairthickness "1"
cl_crosshairusealpha "1"
// Misc
developer "0"
con_enable "1"
con_filter_enable "2" // print console on screen
con_filter_text "Damage " // highlight damage in console
player_nevershow_communityservermessage "1"
closeonbuy "0"
cl_autowepswitch "0" // auto weapon switch on pickup
cl_use_opens_buy_menu "0" // E opening buy menu
// Keybinds
unbind "c"
unbind "f"
bind w "+forward"
bind a "+moveleft"
bind s "+back"
bind d "+moveright"
bind MWHEELDOWN "invnext"
bind MWHEELUP "invprev"
bind home "spectate"
bind mouse1 "+attack"
bind mouse2 "+attack2"
bind "f" "use weapon_flashbang"
bind "v" "use weapon_hegrenade"
bind shift "+speed" // default
bind n "+lookatweapon" // default
bind g "drop" // default
alias "+jumpthrow" "+forward;+jump;-attack"
alias "-jumpthrow" "-jump;-forward"
bind "c" "+jumpthrow"
// Keypad buy binds
bind kp_ins "buy vesthelm" // 0
bind kp_del "buy vest" // .
bind kp_enter "buy defuser" // Enter
bind kp_end "buy hegrenade;give weapon_hegrenade" // 1
bind kp_downarrow "buy flashbang;give weapon_flashbang" // 2
bind kp_pgdn "buy smokegrenade;give weapon_smokegrenade" // 3
bind kp_leftarrow "buy m4a1;buy ak47;give weapon_m4a1_silencer;give weapon_ak47;" // 8
bind kp_rightarrow "buy fn57;give weapon_fn57;buy tec9;give weapon_tec9" // +
host_writeconfig // write settings to config.cfg
echo ""
echo ""
echo "autoexec.cfg executed"
echo ""
echo ""
echo ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment