Skip to content

Instantly share code, notes, and snippets.

@rdkr
Created May 24, 2020 22:29
Show Gist options
  • Save rdkr/ff2af12d2f6fc3b7dc3df3c6b45bc828 to your computer and use it in GitHub Desktop.
Save rdkr/ff2af12d2f6fc3b7dc3df3c6b45bc828 to your computer and use it in GitHub Desktop.
// exec the joining config
exec autoexec_servers.cfg
////// crosshair http://csgocrosshairs.com/teams
cl_crosshair_drawoutline 0
cl_crosshairalpha 999
cl_crosshaircolor 1
cl_crosshairdot 0
cl_crosshairgap -1
cl_crosshairgap_useweaponvalue 0
cl_crosshairsize 6
cl_crosshairstyle 4
cl_crosshairthickness 1
cl_crosshairusealpha 1
////// rates
rate "786432" // for good connections
cl_interp "0"
cl_interp_ratio "1"
cl_cmdrate "128"
cl_updaterate "128"
cl_lagcompensation "1"
////// radar
cl_radar_always_centered "0"
cl_radar_rotate "1"
cl_hud_radar_scale "1.15"
cl_radar_scale "0.4"
cl_radar_icon_scale_min "1"
cl_radar_rotate "1"
cl_radar_square_with_scoreboard "1"
////// misc
cl_hud_bomb_under_radar "1"
cl_forcepreload "1"
developer "1"
net_graph "1"
cl_join_advertise "2"
cl_autowepswitch "0"
////// con filter
con_filter_enable "2"
con_filter_text "Damage given"
con_filter_text_out "Player:"
////// keybinds
// zxcv give utils
// f helps align smokes instead of weapon look
// holding q toggles noclip
// mousewheel is jump not change weapon
// mouse 1 also clears blood / bullet holes
// alt is jumpthrow (util must be cooking)
// shift is walk with boosted volume
//// noclip toggle
alias +noclip "noclip"
alias -noclip "noclip"
//// jumpthrow bind
alias "+jumpthrow" "+jump;-attack"
alias "-jumpthrow" "-jump"
//// sneaky beaky like
alias +sneaky "incrementvar volume 0 2 0.5;+speed"
alias -sneaky "incrementvar volume 0 2 -0.5;-speed"
//// smoke aligner
// make sure smaller cl_crosshairsize matches your
// preferred crosshair
alias +smokealign "cl_crosshairsize 9999"
alias -smokealign "cl_crosshairsize 6"
// remove defaults so we can set explicitly
unbindallmousekeyboard
bind "0" "slot10"
bind "1" "slot1"
bind "2" "slot2"
bind "3" "slot3"
bind "4" "slot4"
bind "5" "slot5"
bind "6" "slot6"
bind "7" "slot7"
bind "8" "slot8"
bind "9" "slot9"
bind "a" "+moveleft"
bind "b" "buymenu"
bind c "use weapon_hegrenade"
bind "d" "+moveright"
bind "e" "+use"
bind "f" "+smokealign"
bind "g" "drop"
bind "i" "show_loadout_toggle"
//j
//k
//l
bind "m" "teammenu"
//n
//o
//p
bind "q" "+noclip"
bind "r" "+reload"
bind "s" "+back"
//t
bind "u" "messagemode2"
bind v "use weapon_molotov;use weapon_incgrenade"
bind "w" "+forward"
bind x "use weapon_smokegrenade"
bind "y" "messagemode"
bind z "use weapon_flashbang"
bind "CTRL" "+duck"
bind "SHIFT" "+sneaky"
bind "INS" "radio1"
bind "DEL" "radio2"
bind "HOME" "radio3"
bind "PAUSE" "pause"
bind "DEL" "mute"
bind "MOUSE1" "+attack; r_cleardecals"
bind "MOUSE2" "+attack2;"
bind "MOUSE5" "+voicerecord"
bind "MWHEELUP" "+jump"
bind "MWHEELDOWN" "+jump"
bind "ESCAPE" "cancelselect"
bind "`" "toggleconsole"
bind "TAB" "+showscores"
bind "SPACE" "+jump"
bind "ALT" "+jumpthrow"
bind "F10" "exit"
// required to make the autoexec work
host_writeconfig
echo "AUTOEXEC COMPLETE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment