Okay I was watching someone play DM and I've seen some QW demos in the past that got me thinking, so just for sh!ts and grins I made this for newbs to get one up on advanced players.....
This "legal" script will switch to your best short-range and long-range weapon, shoot it, then change back to shotgun so if you die while firing you wont drop the best weapon in your backpack.
just add this to the bottom of your autoexec.cfg
What this script does is assigns the left mouse button to fire your long range weapons, right mouse button for short-range, middle mouse button for the grenade launcher.
If you have weapon 7 (rl) it will shoot that, if not it goes to the next weapon in line, (5) the SNG, down the line until it finds a weapon in your inventory with ammo.
The bestweapon command is included in ProQuake way back around 2001 so 99% of the players have it. Qrack has it available as well.
It's kinda newbiefied but but might help new players play against adept players, and hopefully encourage more people to play.
I'm going to get flames for this but, at least this is out there for newbs.
This "legal" script will switch to your best short-range and long-range weapon, shoot it, then change back to shotgun so if you die while firing you wont drop the best weapon in your backpack.
Code:
//Delay alias alias w5 "wait;wait;wait;wait;wait;" //Long range weapons (RL primary) alias +atk1 "bestweapon 7 5 4 3 2 1;w5;+attack;" alias -atk1 ";-attack;w5;bestweapon 2 1" //Short range weapons (LG primary) alias +atk2 "bestweapon 8 5 4 3 2 1;w5;+attack;" alias -atk2 ";-attack;w5;bestweapon 2 1" //Grr'nade Spam alias +atk3 "bestweapon 6 2 1;w5;+attack;" alias -atk3 ";-attack;w5;bestweapon 2 1" bind mouse1 +atk1 bind mouse2 +atk2 bind mouse3 +atk3
What this script does is assigns the left mouse button to fire your long range weapons, right mouse button for short-range, middle mouse button for the grenade launcher.
If you have weapon 7 (rl) it will shoot that, if not it goes to the next weapon in line, (5) the SNG, down the line until it finds a weapon in your inventory with ammo.
The bestweapon command is included in ProQuake way back around 2001 so 99% of the players have it. Qrack has it available as well.
It's kinda newbiefied but but might help new players play against adept players, and hopefully encourage more people to play.
I'm going to get flames for this but, at least this is out there for newbs.

Comment