Skip to content

Instantly share code, notes, and snippets.

@brownmike
Last active August 29, 2015 14:24
Show Gist options
  • Save brownmike/7487ca210298761f5809 to your computer and use it in GitHub Desktop.
Save brownmike/7487ca210298761f5809 to your computer and use it in GitHub Desktop.
CS:GO Config
// autoexec.cfg
// ============
// = Bindings =
// ============
bind "kp_end" "buy ak47; buy m4a1;"
bind "kp_downarrow" "buy galilar; buy famas;"
bind "kp_pgdn" "buy awp;"
bind "kp_leftarrow" "buy bizon;"
bind "kp_5" "buy sawedoff; buy mag7;"
bind "kp_rightarrow" "buy ssg08;"
bind "kp_home" "buy p250;"
bind "kp_uparrow" "buy tec9; buy fiveseven;"
bind "kp_pgup" "buy deagle;"
bind "kp_minus" "buy vest;"
bind "kp_plus" "buy vesthelm;"
bind "kp_enter" "buy ak47; buy m4a1; buy vesthelm; buy defuser; buy flashbang; buy smokegrenade;"
bind "kp_ins" "buy flashbang;"
bind "kp_del" "buy smokegrenade;"
bind "kp_slash" "buy molotov; buy incgrenade;"
bind "kp_multiply" "buy hegrenade;"
// Mouse Wheel Quickfire Toggle
bind "k" "quickfire"
alias "quickfire" "bind mwheeldown +attack;bind mwheelup +attack;bind k quickfireoff"
alias "quickfireoff" "bind mwheeldown +jump;bind mwheelup buymenu;bind k quickfire"
// =============
// = Crosshair =
// =============
cl_crosshair_drawoutline "0"
cl_crosshair_dynamic_maxdist_splitratio "0.35"
cl_crosshair_dynamic_splitalpha_innermod "1"
cl_crosshair_dynamic_splitalpha_outermod "0.5"
cl_crosshair_dynamic_splitdist "7"
cl_crosshair_outlinethickness "3.000000"
cl_crosshairalpha "255"
cl_crosshaircolor "4."
cl_crosshaircolor_b "147"
cl_crosshaircolor_g "20"
cl_crosshaircolor_r "255"
cl_crosshairdot "0"
cl_crosshairgap "-2.500000"
cl_crosshairgap_useweaponvalue "0"
cl_crosshairscale "1550"
cl_crosshairsize "2.300000"
cl_crosshairstyle "4"
cl_crosshairthickness "1.000000"
cl_crosshairusealpha "1"
// ===========
// = Network =
// ===========
cl_cmdrate 128
cl_interp 0
cl_interp_ratio 1
cl_updaterate 128
rate 128000
// ===============
// = Performance =
// ===============
cl_forcepreload 1 // Preload all map assets during load in
fps_max 150
fps_max_menu 50
// =============
// = Net Graph =
// =============
net_graph 1
net_graphheight 0 // Appear as close to bottom edge as possible
net_graphpos 1 // Display in lower right corner
net_graphproportionalfont 0 // Use smaller font for net graph
// ============
// = Gameplay =
// ============
cl_autohelp 0
cl_autowepswitch 0
cl_disablefreezecam 1 // Disable 'Save this moment.' message on death
cl_specmode 4 // Always spectate in first person upon death
gameinstructor_enable 0 // Disable game instruction
mat_monitorgamma 1.6 // Smaller = Brighter | 1.6 -> 2.6
mm_dedicated_search_maxping 120 // 50 - 350
safezonex 0.85 // Move hud elements away from edges of screen
// ========
// = Misc =
// ========
cl_disablehtmlmotd 1
engine_no_focus_sleep 10
player_nevershow_communityservermessage 1
snd_musicvolume 0
// Write settings
echo "autoexec Loaded"
host_writeconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment