Numpad Buyscript

copper

TD Admin
And one more script for buckshot. This one turns your numpad keys into buying hotkeys. I have them set up how I like, but you can change them to fit your needs. The name for all guns/gear is commented at the bottom.

Code:
// BUY SCRIPTS
bind "kp_ins"                "numpad0"                                    //0
bind "kp_end"                "numpad1"                                    //1
bind "kp_downarrow"    "numpad2"                                    //2
bind "kp_pgdn"                "numpad3"                                    //3
bind "kp_leftarrow"    "numpad4"                                    //4
bind "kp_5"                    "numpad5"                                    //5
bind "kp_rightarrow"    "numpad6"                                    //6
bind "kp_home"                "numpad7"                                    //7
bind "kp_uparrow"        "numpad8"                                    //8
bind "kp_pgup"                "numpad9"                                    //9
bind "kp_plus"                "numpad+"                                    //+
bind "kp_minus"            "numpad-"                                    //-
bind "kp_multiply"        "numpad*"                                    //*
bind "kp_slash"            "numpad/"                                    ///
bind "kp_enter"            "numpadEnter"                                    //Enter
bind "kp_del"                    "numpad."                                    //.
 
alias "numpad0" "buy vesthelm; buy ak47; buy m4a1; buy defuser; buy rescuekit"
alias "numpad1" "buy vesthelm; buy galilar; buy famas; buy defuser; buy rescuekit"
alias "numpad2" "buy vesthelm; buy aug; buy sg556; buy defuser; buy rescuekit"
alias "numpad3" "buy vesthelm; buy ssg08; buy defuser; buy rescuekit"
alias "numpad4" "buy vesthelm; buy bizon; buy defuser; buy rescuekit"
alias "numpad5" "buy vesthelm; buy mp7; buy defuser; buy rescuekit"
alias "numpad6" "buy vesthelm; buy p90; buy defuser; buy rescuekit"
alias "numpad7" "buy vesthelm; buy nova; buy defuser; buy rescuekit"
alias "numpad8" "buy vesthelm; buy xm1014; buy defuser; buy rescuekit"
alias "numpad9" "buy vesthelm; buy sawedoff; buy mag7; buy defuser; buy rescuekit"
alias "numpad-" "buy molotov; buy incgrenade"
alias "numpad*" "buy hegrenade"
alias "numpad/" "buy decoy"
alias "numpad+" "buy flashbang; buy flashbang"
alias "numpadEnter" "buy smokegrenade"
alias "numpad." "buy p250"
 
// Available Gear
// 1 PISTOLS:
//  1: glock hkp2000
//  2: elite
//  3: p250
//  4: tec9 fiveseven
//  5: deagle
// 2 HEAVY (shotguns & machine guns):
//  1: nova
//  2: xm1014
//  3: sawedoff mag7
//  4: m249
//  5: negev
// 3 SMGS:
//  1: mac10 mp9
//  2: mp7
//  3: ump45
//  4: p90
//  5: bizon
// 4 RIFLES:
//  1: galilar famas
//  2: ak47 m4a1
//  3: ssg08
//  4: sg556 aug
//  5: awp
//  6: g3gsg1 scar20
// 5 GEAR:
//  1: vest
//  2: vesthelm
//  3: taser
//  4: defuser rescuekit
// 6 GRENADES:
//  1: molotov incgrenade
//  2: decoy
//  3: flashbang
//  4: hegrenade
//  5: smokegrenade
 
Top