Skip to content

Instantly share code, notes, and snippets.

@jaasonw
Last active September 2, 2023 04:59
Show Gist options
  • Save jaasonw/c58a2acf75016b09d0fe5f1864fd2db5 to your computer and use it in GitHub Desktop.
Save jaasonw/c58a2acf75016b09d0fe5f1864fd2db5 to your computer and use it in GitHub Desktop.
// original + previous versions
// https://gist.github.com/jaasonw/c58a2acf75016b09d0fe5f1864fd2db5
// Mouse Settings
// 800dpi
m_rawinput 1
sensitivity 0.668
zoom_sensitivity_ratio_mouse 1
//misc settings
voice_enable 1
lobby_voice_chat_enabled "0"
cl_use_opens_buy_menu "0"
mm_dedicated_search_maxping "25"
cl_autowepswitch "0"
cl_crosshair_sniper_show_normal_inaccuracy "1"
cl_showloadout "1"
cl_teamid_overhead_always 1
+cl_show_team_equipment
//SCRIPTS
///////////////////////////////////////////////////////////////////////////////////////////
// Mute players
alias "muteon" "voice_enable 0;playvol buttons\blip1 0.5;bind LEFTARROW muteoff"
alias "muteoff" "voice_enable 1;playvol buttons\blip2 0.5;bind LEFTARROW muteon"
// Quickswitch Script
alias +knife slot3
alias -knife lastinv
// toggle netgraph
alias +netgraph "net_graph 1;+showscores;r_cleardecals"
alias -netgraph "net_graph 0;-showscores;r_cleardecals"
// drop c4
alias "dropc4" "use weapon_c4;drop"
//Show crosshair Settings
alias "a1" clear
alias "a5" developer 2
alias "a6" con_filter_enable 1
alias "a7" con_filter_text cl_crosshair
alias "a8" host_writeconfig //
alias "a9" con_filter_text cl_fix
alias "a10" host_writeconfig //
alias "a11" developer 0
alias "a12" con_filter_enable 0
alias "a13" showconsole
alias "showcrosshair" "a1;a2;a3;a4;a5;a6;a7;a8;a9;a10;a11;a12;a13"
///////////////////////////////////////////////////////////////////////////////////////////
// BINDS
bind LEFTARROW "muteon"
bind TAB "+netgraph"
bind "5" "dropc4"
bind f8 disconnect
bind MOUSE4 "+voicerecord"
bind v "+voicerecord"
bind f "use weapon_flashbang"
bind n "-attack"
bind mwheelup +jump
bind mwheeldown +jump
// buy binds
bind "F1" "buy ak47; buy m4a1;"
bind "F2" "buy flashbang;buy smokegrenade;buy flashbang"
bind "F3" "buy vest;"
bind "F4" "buy vesthelm;"
bind "F5" "buy defuser;"
cl_crosshairsize 4
cl_crosshairgap -4
cl_crosshairthickness 1
cl_crosshaircolor 5
cl_crosshair_drawoutline 0
cl_crosshairdot 0
cl_crosshairstyle 4
//damage display
alias showdamage "displaydamage_on"
alias displaydamage_on "con_filter_text Damage Given To; con_filter_text_out Player:; con_filter_enable 2; developer 1; playvol buttons\blip1 0.5; alias displaydamage "displaydamage_off""
alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttons\blip2 0.5; alias displaydamage "displaydamage_on""
showdamage 1
// radar
cl_radar_always_centered "0"
cl_radar_icon_scale_min "0.7"
cl_radar_rotate "1"
cl_radar_scale "0.2"
cl_radar_square_with_scoreboard "1"
cl_hud_radar_scale "1"
// sound things from reddit or some shit
windows_speaker_config "1"
snd_front_headphone_position "53.2"
snd_rear_headphone_position "90.0"
snd_headphone_pan_exponent "1.2"
snd_headphone_pan_radial_weight "0.5"
voice_scale "1"
voice_forcemicrecord "1"
voice_mixer_boost "0"
voice_mixer_mute "0"
voice_modenable "1"
voice_threshold "2000"
snd_ducktovolume "0.55"
//FPS
fps_max "0"
fps_max_menu "0"
mat_monitorgamma "1.6"
// rates n shit
rate "786432"
cl_cmdrate "128"
cl_updaterate "128"
cl_interp_ratio "2"
cl_interp "0.03"
cl_lagcompensation "1"
cl_predict "1"
cl_predictweapons "1"
// cl_disablehtmlmotd "1"
net_client_steamdatagram_enable_override 0
host_writeconfig
echo "====================================================="
echo "[ ]"
echo "[ AUTOEXEC LOADED ]"
echo "[ ]"
echo "====================================================="
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment