Skip to content

Instantly share code, notes, and snippets.

@oswaldoacauan
Last active October 1, 2022 09:23
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save oswaldoacauan/9b2663894235fa494a2c19f678a5fa3f to your computer and use it in GitHub Desktop.
Save oswaldoacauan/9b2663894235fa494a2c19f678a5fa3f to your computer and use it in GitHub Desktop.
CS:GO - Useful binds
// Some useful binds for CS:GO
// ===================
// Launch Options: -console -novid -high -tickrate 128 -freq 144 +exec autoexec.cfg
// by Lamarkz
// Show damage given in the console
// ===================
developer "1"
con_filter_text "Damage given"
con_filter_text_out "Player:"
con_filter_enable "2"
// Shortcuts for disconnect and quit
// ===================
alias q "quit"
alias dc "disconnect"
// Open scoreboard, show netgraph and clear bullets/blood
// ===================
net_graph "1"
net_graphheight "2000"
net_graphpos "2"
net_graphproportionalfont "0"
alias +scorenet "+showscores; net_graphheight 1;r_cleardecals;"
alias -scorenet "-showscores; net_graphheight 2000"
bind "TAB" "+scorenet"
// When walking reduce voice volume and scales down the radar
// ===================
alias +walkquiet "+speed; voice_scale .7; cl_radar_always_centered 0; cl_radar_scale .5"
alias -walkquiet "-speed; voice_scale 1; cl_radar_always_centered 1; cl_radar_scale .7"
bind "SHIFT" "+walkquiet"
// Perfect jump throw
// **CAUTION SOME LEAGUES DONT ALLOW THIS BIND**
// ===================
alias +jumpthrow "+jump; -attack"
alias -jumpthrow "-jump;"
bind "MOUSE3" "+jumpthrow"
// Jump on mouse wheel(up/down)
// ===================
bind "MWHEELUP" "+jump"
bind "MWHEELDOWN" "+jump"
// Quick granade throw
// ===================
bind "MOUSE4" "use weapon_knife; use weapon_flashbang"
bind "MOUSE5" "use weapon_knife; use weapon_smokegrenade"
// Cycle between molotov/he only
// ===================
alias "cyclemollyheon" "use weapon_molotov; use weapon_incgrenade; alias cyclemollyhe cyclemollyheoff"
alias "cyclemollyheoff" "use weapon_hegrenade; alias cyclemollyhe cyclemollyheon"
alias "cyclemollyhe" "cyclemollyheon"
bind "4" "use weapon_knife; cyclemollyhe"
// Buy Binds
//=====================================================
// Num Lock | / | * | - |
// | DEFUSER | SMOKE | FLASH |
//-------------|-------------|-------------|-----------|
// 7 | 8 | 9 | + |
// SCOUT | AWP | | HE |
//-------------|-------------|-------------| & |
// 4 | 5 | 6 | MOLOTOV |
// FAMAS/GALIL | M4A1/AK | | |
//-------------|-------------|-------------|-----------|
// 1 | 2 | 3 | Enter |
// | | | ARMOR |
//-------------|-------------|-------------| + |
// 0 | . | HELMET |
// DEAGLE | P250 | |
//=====================================================
// Aliases (Abbreviations for weapon combinations)
alias "m4a1/ak47" "give weapon_m4a1;give weapon_ak47;buy m4a1;buy ak47"
alias "aug/sg556" "give weapon_aug;buy sg556;give weapon_aug;buy sg556"
alias "galilar/famas" "give weapon_galilar;give weapon_famas;buy galilar;buy famas"
alias "g3sg1/scar20" "give weapon_g3sg1;give weapon_scar20;buy g3sg1;buy scar20"
alias "vesthelm/vest" "give weapon_vesthelm;give weapon_vest;buy vesthelm;buy vest"
alias "incgrenade/molotov" "give weapon_incgrenade;give weapon_molotov;buy incgrenade;buy molotov"
alias "awp" "give weapon_awp;buy awp"
alias "p250" "give weapon_p250;buy p250"
alias "p250" "give weapon_deagle;buy deagle"
alias "ssg08" "give weapon_ssg08;buy ssg08"
alias "smokegrenade" "give weapon_smokegrenade;buy smokegrenade"
alias "flashbang" "give weapon_flashbang;buy flashbang"
alias "hegrenade" "give weapon_hegrenade;buy hegrenade"
bind "KP_HOME" "ssg08; vesthelm/vest"
bind "KP_UPARROW" "awp; vesthelm/vest"
bind "KP_PGUP" ""
bind "KP_LEFTARROW" "galilar/famas; vesthelm/vest"
bind "KP_5" "m4a1/ak47; vesthelm/vest"
bind "KP_RIGHTARROW" ""
bind "KP_END" ""
bind "KP_DOWNARROW" ""
bind "KP_PGDN" ""
bind "KP_INS" "deagle"
bind "KP_DEL" "p250; vesthelm/vest"
bind "KP_SLASH" "buy defuser"
bind "KP_MULTIPLY" "smokegrenade"
bind "KP_MINUS" "flashbang"
bind "KP_PLUS" "incgrenade/molotov; hegrenade"
bind "KP_ENTER" "vesthelm/vest"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment