Last active
July 11, 2019 15:16
-
-
Save riovv/4faba129d75cd18040a7 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
// CS:GO buynds | |
// Keeping it simple to avoid misbuys | |
// If I want to buy something else I first purchase armor, kit etc. then manually buy that weapon. | |
// | |
// Put this in your "csgo/cfg/autoexec.cfg" | |
// | |
// ======================= | |
// NUMPAD | |
// ======================= | |
// 0 = Vest+Helm or Vest only | |
// 1 = CZ75-Auto or Tec-9 | |
// 2 = P250 | |
// . = AWP | |
// ENTER = AK-47, M4A4 or M4A1-S | |
// + = Galil AR or FAMAS | |
// - = Defuse Kit | |
// * = Decoy Grenade | |
// / = Molotov or Incendiary Grenade | |
// | |
// ======================= | |
// ARROWS | |
// ======================= | |
// UP = Full Grenades (Smoke Grenade, Flashbang, High Explosive Grenade, Flashbang) | |
// LEFT = Smoke Grenade | |
// DOWN = High Explosive Grenade | |
// RIGHT = Flashbang | |
bind "kp_ins" "buy vesthelm; buy vest;" | |
bind "kp_end" "buy tec9;" | |
bind "kp_downarrow" "buy p250;" | |
bind "kp_del" "buy awp;" | |
bind "kp_enter" "buy ak47; buy m4a1;" | |
bind "kp_plus" "buy galilar; buy famas;" | |
bind "kp_minus" "buy defuser;" | |
bind "kp_multiply" "buy decoy;" | |
bind "kp_slash" "buy molotov; buy incgrenade;" | |
bind "uparrow" "buy smokegrenade; buy flashbang; buy hegrenade; buy flashbang;" | |
bind "leftarrow" "buy smokegrenade;" | |
bind "downarrow" "buy hegrenade;" | |
bind "rightarrow" "buy flashbang;" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment