Skip to content

Instantly share code, notes, and snippets.

@Tomblarom
Last active September 14, 2017 12:04
Show Gist options
  • Save Tomblarom/5dcc8fe7481478af2bc979267c92e819 to your computer and use it in GitHub Desktop.
Save Tomblarom/5dcc8fe7481478af2bc979267c92e819 to your computer and use it in GitHub Desktop.
CSGO: Clean and lightweight autoexec
// **AUTOEXEC**
// ------------
clear
unbindall
exec scripts
exec keymapping
exec binds
// - Game Settings
// - Crosshair
// - Viewmodels
// - Hud
// - Rates
// - Video
// - Tweaks
// - Music
// - Mouse
// - Net
// **SCRIPTS**
// -----------
// - Jumpthrow
// - Runthrow
// - Damage given
// - Scorenet
// - Crossaim
// - Show equipment
// - Knife Double Switch
// - Bombfinder
// - Volume Switcher
// **KEYMAPPING**
// --------------
// - Advanced Buyscript
// - Granade switcher
// **BINDS**
// ---------
// Bind 0-z
bind "0" "vol_up"
bind "1" "slot1"
..
bind "y" "impulse 100"
bind "z" "radio2"
// Bind Num Pad
bind "KP_INS" "d_ins"
bind "KP_END" "d_awp"
bind "-" "d_decoy"
bind "KP_DOWNARROW" "d_ump45"
bind "KP_PGDN" "d_mp7"
bind "KP_LEFTARROW" "d_full2"
bind "KP_5" "d_full1"
bind "KP_RIGHTARROW" "d_pistol"
bind "KP_HOME" "d_defuse"
bind "KP_UPARROW" "d_vest_h"
bind "KP_PGUP" "d_flash"
bind "KP_MULTIPLY" "d_fire"
bind "KP_MINUS" "d_he"
bind "KP_PLUS" "d_smoke"
bind "KP_ENTER" "d_enter"
bind "KP_DEL" "+autodrop" //MODKEY!
// Bind Function Keys
bind "F3" "scrollj"
..
bind "F11" "toggleconsole"
// Bind Mouse
bind "MOUSE1" "+attack"
bind "MOUSE2" "+attack2"
bind "MOUSE3" "use weapon_c4; drop"
bind "MWHEELUP" "+jump"
bind "MWHEELDOWN" "wchangerb"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment