Skip to content

Instantly share code, notes, and snippets.

@iiiGerardoiii
Last active December 10, 2017 07:11
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 iiiGerardoiii/8f6dbb938ddeecc5c6198c88206fe35c to your computer and use it in GitHub Desktop.
Save iiiGerardoiii/8f6dbb938ddeecc5c6198c88206fe35c to your computer and use it in GitHub Desktop.
for csgo
//Don't autoswitch weapon when picking it up
cl_autowepswitch 0
//Show netgraph when checking scoreboard
net_graph "1"
net_graphheight "9999"
alias "+scorenet" "+showscores; net_graphheight 0"
alias "-scorenet" "-showscores; net_graphheight 9999"
bind "TAB" "+scorenet"
//Display Given Damage
alias displaydamage "displaydamage_on"
alias displaydamage_on "con_filter_text Damage Given To; con_filter_text_out Player:; con_filter_enable 2; developer 1; alias displaydamage "displaydamage_off""
alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttons\blip2 0.5; alias displaydamage "displaydamage_on""
con_filter_text damage given;con_filter_text_out Player:; con_filter_enable 2;
"displaydamage"
//No Help Messages
gameinstructor_enable "0"
cl_autohelp "0"
cl_showhelp "0"
//MOTD - because no
cl_disablehtmlmotd "1"
cl_downloadfilter "nosounds"
//Radar - radar settings + adjustment on numpad enter
cl_radar_scale "0.3"
cl_radar_rotate "1"
cl_radar_always_centered "1"
cl_radar_scale "0.32"
cl_radar_icon_scale_min ".5"
bind "kp_enter" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
//The objectively greatest crosshair of All-Time (rain 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 "1"
cl_crosshair_sniper_show_normal_inaccuracy "0"
cl_crosshair_sniper_width "1"
cl_crosshairalpha "250"
cl_crosshaircolor "1"
cl_crosshaircolor_b "50"
cl_crosshaircolor_g "250"
cl_crosshaircolor_r "50"
cl_crosshairdot "0"
cl_crosshairgap "-2"
cl_crosshairgap_useweaponvalue "0"
cl_crosshairscale "0"
cl_crosshairsize "2"
cl_crosshairstyle "4"
cl_crosshairthickness "0"
cl_crosshairusealpha "1"
cl_fixedcrosshairgap "3"
//Jumpthrow
alias +jumpthrow "+jump;-attack"
alias -jumpthrow "-jump"
bind v +jumpthrow
//Hold Q for knife (for sprinting and AWPing)
alias +knife "slot3"
alias -knife "slot2; slot1"
bind q +knife
//Hold key for higher sens
alias +sens "sensitivity 8"
alias -sens "sensitivity 1.7"
bind c +sens
//Some numpad binds
bind "kp_end" "sensitivity 1.7"
bind "kp_downarrow" "sensitivity 8"
bind "kp_pgdn" "sensitivity 100"
bind "kp_del" "disconnect"
//Mute everyone (and unmute)
bind F1 "toggle voice_scale 0 0.2"
//
echo "Autoexec Config loaded"
host_writeconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment