Skip to content

Instantly share code, notes, and snippets.

@sean-clayton
Created April 1, 2014 04:02
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 sean-clayton/9907475 to your computer and use it in GitHub Desktop.
Save sean-clayton/9907475 to your computer and use it in GitHub Desktop.
My autoexec
//Credits to "ISleepTheDayAway" for the basic autoexec, edited and tweaked by me
//bhop mode switcher thing - optional, can remove
bind "MWHEELUP" "+jump"
bind "MWHEELDOWN" "+jump"
bind "space" "+back"
// bind mouse3 "bhopon" // toggle scroll wheel bhop
// alias bhopon "bind MWHEELDOWN +jump;bind MWHEELUP +jump;bind mouse3 bhopoff;"
// alias bhopoff "bind MWHEELDOWN invnext;bind MWHEELUP invprev;bind mouse3 bhopon;"
//Weapon-Knife Easy Switcher - optional, really, but i like easy knife access
bind "q" "knife"
alias "knife" "slot3; bind q primary"
alias "primary" "lastinv; bind q knife"
bind "1" "slot1; bind q knife"
bind "2" "slot2; bind q knife"
bind "3" "slot3; bind q primary"
bind "4" "slot4; bind q knife"
bind "5" "slot5; bind q knife"
bind "mouse4" "slot4"
//Auto Weapon Switch
cl_autowepswitch "0" // we dont want to pick up & switch to a rifle up if we're in the middle of firing our pistol
//Bobbing and Movement Shifting - remove all the dumb view bob
cl_viewmodel_shift_left_amt "0"
cl_viewmodel_shift_right_amt "0"
cl_bob_lower_amt "0"
cl_bobamt_lat "0"
cl_bobamt_vert "0"
cl_showloadout "1"
cl_bobcycle "1"
//Bypass OS Interface & Acceleration - yes
m_rawinput "1"
m_mouseaccel1 "0"
m_mouseaccel2 "0"
//Crosshair - adjust for preference or make your own, i just like this one, looks a bit like this: http://i.imgur.com/AKlyekd.png
cl_crosshairalpha "255"
cl_crosshaircolor "1"
cl_crosshaircolor_b "0"
cl_crosshaircolor_r "0"
cl_crosshaircolor_g "0"
cl_crosshairdot "1"
cl_crosshairgap "-1"
cl_crosshairsize "3"
cl_crosshairstyle "3"
cl_crosshairusealpha "1"
cl_crosshairthickness "1"
cl_fixedcrosshairgap "-1"
cl_crosshair_drawoutline "1"
cl_crosshair_outlinethickness "1"
//Deathcam - optional again
cl_disablefreezecam "1"
//Gun Tracers - these are bad, really misleading
r_drawtracers_firstperson "0"
//Help Messages - you dont need these pussy
gameinstructor_enable "0"
cl_autohelp "0"
cl_showhelp "0"
//HUD - adjust for preference i guess
hud_scaling ".95"
hud_showtargetid "1"
cl_radar_scale "0.5"
bind "TAB" "+ng"; //
alias "+ng" "+showscores; net_graph 1" // these 3 = onyl show netgraph when tab/scoreboard is held
alias "-ng" "-showscores; net_graph 0" //
//Max Ping - adjust for preference
mm_dedicated_search_maxping "100" // we dont wanna get put in a server where we have 200 ping
//MOTD - because fuck pinion
cl_disablehtmlmotd "0"
cl_downloadfilter "nosounds"
//Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
cl_forcepreload "1"
cl_interp "0"
cl_interp_ratio "1"
cl_cmdrate "128"
cl_updaterate "128"
rate "128000"
cl_updaterate "128"
cl_allowdownload "1"
cl_downloadfilter "0"
ds_get_newest_subscribed_files
//Radar - radar settings + adjustment on numpad enter
cl_radar_scale "0.3"
cl_radar_rotate "0"
cl_radar_always_centered "0"
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
//Sound - less delayed, better sound
windows_speaker_config "1"
snd_mixahead "0.05"
snd_musicvolume "0"
snd_headphone_pan_exponent "2"
snd_headphone_pan_radial_weight "1"
snd_rear_headphone_position "90"
bind "kp_minus" "toggle voice_enable 1 0" // this lets you turn voice on and off on numpad minus
echo "Autoexec Config loaded" // make sure this autoexec does its fine
host_writeconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment