Created
June 24, 2016 14:28
-
-
Save EmperorEarth/02d0e593f3239f054b679519e2501d7c to your computer and use it in GitHub Desktop.
Kevin's autoexec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// voice toggle for clutching | |
alias "clutchtoggle" "clutchon" | |
alias "clutchon" "voice_scale 0;cl_showfps 0;alias clutchtoggle clutchoff" | |
alias "clutchoff" "voice_scale 0.1;cl_showfps 1;alias clutchtoggle clutchon" | |
bind "mouse3" "clutchtoggle" | |
alias "voicetoggle" "voiceon" | |
alias "voiceon" "voice_enable 1;say_team voice_enable 1;alias voicetoggle voiceoff" | |
alias "voiceoff" "voice_enable 0;say_team voice_enable 0;alias voicetoggle voiceon" | |
bind "u" "voicetoggle" | |
// minimap changes | |
cl_radar_always_centered 0 | |
cl_radar_scale 0.3 | |
cl_hud_radar_scale 1.15 | |
cl_radar_rotate 0 | |
// jumpthrow | |
alias +jumpthrow "+jump;-attack" | |
alias -jumpthrow "-jump" | |
bind o +jumpthrow | |
// buy binds | |
bind "kp_slash" "buy p90;" | |
bind "kp_multiply" "buy ump45;" | |
bind "kp_minus" "buy mac10;buy mp9;" | |
bind "kp_plus" "buy scar20;buy g3sg1;" | |
bind "kp_enter" "buy awp;" | |
bind "kp_leftarrow" " buy smokegrenade;" | |
bind "kp_del" " buy vest;" | |
bind "kp_ins" " buy vesthelm;" | |
bind "End" " buy defuser;" | |
bind "kp_end" "buy ak47;buy m4a1;" | |
bind "kp_downarrow" "buy galilar;buy famas;" | |
bind "kp_pgdn" "buy ssg08;" | |
bind "kp_5" " buy flashbang;" | |
bind "kp_rightarrow" " buy incgrenade;buy molotov;" | |
bind "kp_pgup" " buy hegrenade;" | |
bind "kp_home" "buy tec9;buy fiveseven;" | |
bind "kp_uparrow" "buy sawedoff;buy mag7;" | |
bind "Home" "buy sg556;buy aug;" | |
cl_forcepreload "1" | |
// Find Bomb | |
alias "+findbomb" "+use;gameinstructor_enable 1" | |
alias "-findbomb" "-use;gameinstructor_enable 0" | |
bind "E" "+findbomb" | |
// QoL | |
cl_disablehtmlmotd 1 | |
lobby_voice_chat_enabled "0" | |
bind "f12" "disconnect" | |
cl_allowdownload "0" | |
bind "k" "ignorerad" | |
// testing | |
bind "4" "r_cleardecals" | |
bind "6" noclip | |
alias "solidteammatestoggle" "solidteammateson" | |
alias "solidteammateson" "mp_solid_teammates 1;rcon mp_solid_teammates 1;say_team mp_solid_teammates 1;alias solidteammatestoggle solidteammatesoff" | |
alias "solidteammatesoff" "mp_solid_teammates 0;rcon mp_solid_teammates 0;say_team mp_solid_teammates 0;alias solidteammatestoggle solidteammateson" | |
bind "7" "solidteammatestoggle" | |
bind "8" "rcon_password --omitted--;say_team logged in" | |
bind "9" "mp_restartgame 1;rcon mp_restartgame 1;say_team mp_restartgame 1" | |
alias "bot_crouchtoggle" "bot_crouchon" | |
alias "bot_crouchon" "bot_crouch 1;rcon bot_crouch 1;say_team bot_crouch 1;alias bot_crouchtoggle bot_crouchoff" | |
alias "bot_crouchoff" "bot_crouch 0;rcon bot_crouch 0;say_team bot_crouch 0;alias bot_crouchtoggle bot_crouchon" | |
bind "0" "bot_crouchtoggle" | |
bind "-" "bot_add_t;rcon bot_add_t;say_team bot_add_t" | |
bind "=" "bot_add_ct;rcon bot_add_ct;say_team bot_add_ct" | |
bind "\" "bot_place;say_team bot_place" | |
bind "Backspace" "bot_kick;rcon bot_kick;say_team bot_kick" | |
bind "[" "cast_ray;say_team cast_ray" | |
bind "]" "gods;say gods" | |
host_writeconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment