Skip to content

Instantly share code, notes, and snippets.

@noahbkim
Created December 8, 2020 07:50
Show Gist options
  • Save noahbkim/90c3133b7d115f4ba72da98d67183a4a to your computer and use it in GitHub Desktop.
Save noahbkim/90c3133b7d115f4ba72da98d67183a4a to your computer and use it in GitHub Desktop.
// Kind of hacky? Find bomb with in-game help
alias +bombfind "+use;gameinstructor_enable 1;cl_clearhinthistory"
alias -bombfind "-use;gameinstructor_enable 0;cl_clearhinthistory"
// Jump and throw simultaneously
alias "+jumpthrow" "+jump; -attack"
alias "-jumpthrow" "-jump"
// Spin around
alias "+spin" "m_yaw 0.09"
alias "-spin" "m_yaw 0.022"
// Show net graph when tabbed
net_graph 1
net_graphheight 9999
alias "+scorenet" "+showscores; net_graphheight 0"
alias "-scorenet" "-showscores; net_graphheight 9999"
// Cycle only grenade and molotov
alias "cyclemollyheon" "use weapon_molotov; use weapon_incgrenade; alias cyclemollyhe cyclemollyheoff"
alias "cyclemollyheoff" "use weapon_hegrenade; alias cyclemollyhe cyclemollyheon"
alias "cyclemollyhe" "cyclemollyheon"
// Fast knife toggle
alias "+switch" "slot3"
alias "-switch" "lastinv"
// Bunny hopping
alias "bhopon" "bind MWHEELDOWN +jump;bind MWHEELUP +jump;bind mouse3 bhopoff"
alias "bhopoff" "bind MWHEELDOWN invnext;bind MWHEELUP invprev;bind mouse3 bhopon"
bhopon
// Gun side
bind "[" "cl_righthand 0"
bind "]" "cl_righthand 1"
// Viewmodel stuff
viewmodel_fov "68"
viewmodel_offset_x "2"
viewmodel_offset_y "2"
viewmodel_offset_z "-2"
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_bobcycle "2"
// Crosshair
cl_crosshairalpha "255"
// cl_crosshaircolor "4"
cl_crosshaircolor_b "255"
cl_crosshaircolor_r "255"
cl_crosshaircolor_g "255"
cl_crosshairdot "0"
cl_crosshairgap "-5"
cl_crosshairsize "2"
cl_crosshairstyle "4"
cl_crosshairusealpha "1"
cl_crosshairthickness "0.1"
cl_fixedcrosshairgap "-5"
cl_crosshair_outlinethickness "0"
cl_crosshair_drawoutline "0";
// Show damage in console
con_enable "1"
developer "0" // print console to screen
con_filter_enable "2"
con_filter_text "Damage "
// Movement
bind "e" "+forward"
bind "d" "+back"
bind "s" "+moveleft"
bind "f" "+moveright"
bind "SHIFT" "+speed"
bind "ENTER" "+jumpthrow"
bind "r" "+use"
bind "a" "+duck"
// Guns
bind "MOUSE1" "+attack"
bind "MOUSE2" "+attack2"
bind "MOUSE3" "slot1"
bind "MOUSE5" "slot2" // invnextnongrenade
bind "MOUSE4" "slot3"
// Equipment
bind "t" "+reload"
bind "w" "+switch"
bind "q" "use weapon_c4; drop"
bind "g" "drop"
bind "x" "use weapon_knife; use weapon_flashbang"
bind "v" "use weapon_knife; use weapon_smokegrenade"
bind "1" "+spray_menu"
bind "2" "use weapon_knife; use weapon_hegrenade"
bind "3" "use weapon_knife; use weapon_decoy"
bind "4" "use weapon_knife; use weapon_molotov; use weapon_incgrenade"
bind "5" "use weapon_c4"
bind "CTRL" "+spin"
bind "TAB" "+scorenet"
bind "CapsLock" "+bombfind"
bind "DEL" "buymenu"
bind "b" "toggle cl_crosshairsize 2 1000"
host_writeconfig
echo "Finished configuration!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment