Counter-Strike 2

Counter-Strike 2

Not enough ratings
Advanced Buyscript v2.0
By TуρєC
Today we're bringing a guide for CS:GO to you, which makes it easier for you, to buy weapons for yourself or even for you teammates with only one keypress on your numpad section. This allows you to save up a whole decade of time before the round starts. Aswell, this guide is easy to read and customize, 'cause of its lovely written code.
   
Award
Favorite
Favorited
Unfavorite
Features
  • Buy weapons for yourself with only one keypress
  • Drop weapons to your teammates with one keypress aswell
  • Buy or drop weapons while walking
  • Code is easy readable
  • Easy customizeable code aswell

Script
keyboard-layout-editor.^com/#/gists/ab3bab7e48d0ab82e7a8e31a2881f971 (remove ^)

// Buyscript v2.0 // +=====================================================+ // | NUM | - | MULTIPLY | MINUS | // | PAD | decoy | fire | hegrenade | // |-------------|-------------|-------------|-----------| // | HOME | UPARROW | PGUP | | // | defuser | helm+kev | flash | PLUS | // |-------------|-------------|-------------| smoke | // | LEFTARROW | 5 | RIGHTARROW | | // | sg/aug* | ak/m4* | tec9/five7* | | // |-------------|-------------|-------------|-----------| // | END | DOWNARROW | PGDN | | // | awp* | UMP45* | MP7* | ENTER | // |-------------|-------------|-------------| X | // | INS | DEL | | // | X | dropmodif | | // +=====================================================+ // *droppable alias "d_vest_h" "buy vest; buy vesthelm" alias "d_vest" "buy vest" alias "d_pistol" "buy tec9; buy fiveseven" alias "d_full1" "buy ak47; buy m4a1" alias "d_full2" "buy sg556; buy aug" alias "d_smoke" "buy smokegrenade" alias "d_fire" "buy incgrenade; buy molotov" alias "d_flash" "buy flashbang" alias "d_he" "buy hegrenade" alias "d_decoy" "buy decoy" alias "d_defuse" "buy defuser" alias "d_deagle" "buy deagle" alias "d_awp" "buy awp" alias "d_mp7" "buy mp7" alias "d_ump45" "buy ump45" alias "d_ins" "" //X alias "d_enter" "unbind KP_ENTER" //X alias "s_awp" "slot1; d_awp; drop" alias "s_ump45" "slot1; d_ump45; drop" alias "s_mp7" "slot1; d_mp7; drop" alias "s_full2" "slot1; buy sg556; buy aug; drop" alias "s_full1" "slot1; d_full1; drop" alias "s_pistol" "slot2; d_pistol; drop" alias "def_INS" "bind KP_INS d_ins" alias "def_END" "bind KP_END d_awp" alias "def_SLASH" "bind - d_decoy" alias "def_DOAW" "bind KP_DOWNARROW d_ump45" alias "def_PGDN" "bind KP_PGDN d_mp7" alias "def_LEAW" "bind KP_LEFTARROW d_full2" alias "def_5" "bind KP_5 d_full1" alias "def_RIAW" "bind KP_RIGHTARROW d_pistol" alias "def_HOME" "bind KP_HOME d_defuse" alias "def_UPAW" "bind KP_UPARROW d_vest_h" alias "def_PGUP" "bind KP_PGUP d_flash" alias "def_MUTL" "bind KP_MULTIPLY d_fire" alias "def_MINU" "bind KP_MINUS d_he" alias "def_PLUS" "bind KP_PLUS d_smoke" alias "def_ENTER" "bind KP_ENTER d_enter" alias "sec_INS" "unbind KP_INS" alias "sec_END" "bind KP_END s_awp" alias "sec_SLASH" "unbind -" alias "sec_DOAW" "bind KP_DOWNARROW s_ump45" alias "sec_PGDN" "bind KP_PGDN s_mp7" alias "sec_LEAW" "bind KP_LEFTARROW s_full2" alias "sec_5" "bind KP_5 s_full1" alias "sec_RIAW" "bind KP_RIGHTARROW s_pistol" alias "sec_HOME" "unbind KP_HOME" alias "sec_UPAW" "bind KP_UPARROW d_vest" alias "sec_PGUP" "unbind KP_PGUP" alias "sec_MUTL" "unbind KP_MULTIPLY" alias "sec_MINU" "unbind KP_MINUS" alias "sec_PLUS" "unbind KP_PLUS" alias "sec_ENTER" "unbind KP_ENTER" alias "-autodrop" "def_INS; def_END; def_SLASH; def_DOAW; def_PGDN; def_LEAW; def_5; def_RIAW; def_HOME; def_UPAW; def_PGUP; def_MUTL; def_MINU; def_PLUS; def_ENTER" alias "+autodrop" "sec_INS; sec_END; sec_SLASH; sec_DOAW; sec_PGDN; sec_LEAW; sec_5; sec_RIAW; sec_HOME; sec_UPAW; sec_PGUP; sec_MUTL; sec_MINU; sec_PLUS; sec_ENTER"

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!
1 Comments
SakuraSunset 13 Sep, 2017 @ 5:44pm 
Could be a bit easier to customize, but definitely a great concept!