// weapon drop alias: keypad '+' turns on weapon drop, '1' cancels it
// Pressing keypad "+" will allow you to drop a weapon depending on which "default" weapon key you press.
//e.g. pressing keypad "+" then pressing 7 will drop a rocket launcher.
// "1" represents the blaster and since u can't drop the blaster, it is the equivalent of a weapon drop "cancel."
alias normweaps1 "bind 0 use BFG10K; bind 1 use Blaster; bind 2 use Shotgun; bind 3 use Super Shotgun"
alias normweaps2 "bind 4 use Machinegun; bind 5 use Chaingun; bind 6 use Grenade Launcher; bind 7 use Rocket Launcher"
alias normweaps3 "bind 8 use HyperBlaster; bind 9 use Railgun"
alias normweaps "echo Normal Weapons; normweaps1; normweaps2; normweaps3"
alias drop_bfg "echo Dropping BFG;drop BFG10K;say_team Take this BFG off my hands would ya' :);normweaps"
alias drop_sg "echo Dropping Shotgun;drop Shotgun;say_team Take this Shotgun off my hands would ya' :); normweaps"
alias drop_ssg "echo Dropping Super Shotgun;drop Super Shotgun;say_team Take this Super Shotgun off my hands would ya' :); normweaps"
alias drop_mg "echo Dropping Machine Gun;drop Machinegun;say_team Take this Machinegun off my hands would ya' :); normweaps"
alias drop_cg "echo Dropping Chaingun;drop Chaingun;say_team Take this Chaingun off my hands would ya' :); normweaps"
alias drop_grenl "echo Dropping Grenade Launcher;drop Grenade Launcher;say_team Take this Grenade Launcher off my hands would ya' :); normweaps"
alias drop_rockl "echo Dropping Rocket Launcher;drop Rocket Launcher;say_team Take this Rocket Launcher off my hands would ya' :);normweaps"
alias drop_hb "echo Dropping HyperBlaster;drop HyperBlaster;say_team Take this HyperBlaster off my hands would ya' :);normweaps"
alias drop_rg "echo Dropping Railgun;drop Railgun;say_team Take this Railgun off my hands would ya' :); normweaps"
alias tossweaps1 "bind 0 drop_bfg; bind 1 normweaps; bind 2 drop_sg; bind 3 drop_ssg"
alias tossweaps2 "bind 4 drop_mg; bind 5 drop_cg; bind 6 drop_grenl; bind 7 drop_rockl"
alias tossweaps3 "bind 8 drop_hb; bind 9 drop_rg"
alias tossweaps "echo Toss Weapon; tossweaps1; tossweaps2; tossweaps3"
bind KP_PLUS tossweaps
// ammo drop alias: keypad 'ENTER' turns on ammo drop, '1' cancels it
// simliar to the weapon drop, the ammo drop will drop ammo depending on the default weapon key that u choose.
//e.g. pressing numpad "ENTER" then pressing 3 will drop shells.
alias drop_shells "drop shells;say_team Here m8s, have some shells :); normweaps"
alias drop_bullets "drop bullets; say_team Here m8s, have some bullets :); normweaps"
alias drop_grenades "drop grenades; say_team Here m8s, have some grenades :);normweaps"
alias drop_rockets "drop rockets; say_team Here m8s, have some rockets :);normweaps"
alias drop_cells "drop cells; say_team Here m8s, have some cells :); normweaps"
alias drop_slugs "drop slugs; say_team Here m8s, have some slugs :); normweaps"
alias tossammo1 "bind 0 drop_cells; bind 1 normweaps; bind 2 drop_shells; bind 3 drop_shells"
alias tossammo2 "bind 4 drop_bullets; bind 5 drop_bullets; bind 6 drop_grenades; bind 7 drop_rockets"
alias tossammo3 "bind 8 drop_cells; bind 9 drop_slugs"
alias tossammo "echo Toss Ammo; tossammo1; tossammo2; tossammo3"
bind KP_ENTER tossammo
|