Created
December 1, 2012 08:23
-
-
Save k3n/4181083 to your computer and use it in GitHub Desktop.
buy binds for cs:go
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
// save as C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg\whatever.cfg | |
// then edit autoexec.cfg in that same directory and add: exec whatever.cfg | |
// for more info on what weps mean: http://www.hattongames.com/2012/06/how-to-create-custom-buy-binds-for-csgo/ | |
echo "running custom config..." | |
// voice_scale .5 (mute all = 0) | |
// mm aka. match-making | |
// min. 50.000000 max. 350.000000 - Longest preferred ping to dedicated servers for games | |
"mm_dedicated_search_maxping" = "100" | |
// binds | |
// spray (doesn't work) | |
// bind "t" "cl_playerspraydisable 0; impulse 201" | |
// top row: rifles | |
bind kp_home "buy ak47; buy m4a1" | |
bind kp_uparrow "buy sg556; buy aug" | |
bind kp_pgup "buy galilar; buy famas" | |
// middle: smg's | |
bind kp_leftarrow "buy mac10; buy mp9" | |
bind kp_5 "buy mp7" | |
bind kp_rightarrow "buy p90" | |
// bottom: pistols | |
bind kp_end "buy deagle" | |
bind kp_downarrow "buy fiveseven; buy tec9" | |
bind kp_pgdn "buy bizon" | |
// far right: tactical | |
bind kp_minus "buy nova" | |
bind kp_plus "buy defuser" | |
bind kp_enter "buy vest; buy vesthelm" | |
// very bottom: more weps | |
bind kp_ins "buy sawedoff; buy mag7" | |
bind kp_del "buy elite" | |
// function keys: throwables | |
bind f5 "buy hegrenade" | |
bind f6 "buy flashbang" | |
bind f7 "buy smokegrenade" | |
bind f8 "buy molotov; buy incgrenade" | |
// arrow keys: sniper rifles | |
bind uparrow "buy ssg08" | |
bind downarrow "buy awp" | |
// these are the OP machine guns and auto-snipers | |
bind kp_multiply "buy negev" | |
bind kp_slash "buy g3sg1; buy scar20" | |
// end binds | |
// default old reticle | |
// cl_crosshaircolor_r 50 | |
// cl_crosshaircolor_g 250 | |
// cl_crosshaircolor_b 50 | |
//cl_crosshairthickness 200 | |
//cl_crosshairgap 0 | |
//cl_crosshairdot 0 | |
//cl_crosshairalpha 200 | |
// new reticle | |
// https://www.youtube.com/watch?v=pDMH7CSdiAE | |
// http://www.reddit.com/r/GlobalOffensive/comments/yegjt/cant_get_my_cosshair_color_red/ | |
//cl_crosshaircolor_r 255 | |
//cl_crosshaircolor_g 0 | |
//cl_crosshaircolor_b 255 | |
//cl_crosshairthickness 1 | |
//cl_crosshairgap 0 | |
//cl_crosshairdot 1 | |
//cl_crosshairalpha 255 | |
echo "custom config done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment