For a long time now i've used the mouse wheel to scroll through the
available weapons, however this way has its problems.
Can some kind soul please help me with a script/bind etc that will auto
switch weapons but only if I have given it preference over the other.
Like: -
Rocket, Plasma, Shotgun, Machine Gun.
I would like this to happen like the autoweapons switch, but only if its
higher on the list than the one i'm using.
For snipering, I think associating the wheel to toggle between the railgun
and the weapon used for selecting it would be nice.
Can anyone suggest a way to achieve this?
thanks
Neil D.
That should of read "For snipering, I think associating the wheel to toggle
between the railgun
and the weapon used BEFORE selecting it would be nice."
TA
"Neil D." <sk...@ntlworld.comisa> wrote in message
news:Ndis9.3252$zE5....@newsfep1-gui.server.ntli.net...
> Hi,
>
> For a long time now i've used the mouse wheel to scroll through the
> available weapons, however this way has its problems.
just bind each weapon to a separate key or function. like this:
bind g "weapon 1"
bind v "weapon 2"
bind z "weapon 9"
bind t "weapon 4"
bind r "weapon 5"
bind a "weapon 3"
bind MWHEELDOWN "weapon 3"
bind MWHEELUP "weapon 8"
bind w "weapon 7; vstr rrail"
bind f "+moveright"
bind s "+moveleft"
bind d "+back
bind e "+forward"
yeah thanks, my limited understanding of the config file allows me to do
this.
I'm just looking to implement what I outlined earlier.
Thanks
neil D.
"sittingduck" <good...@nowhere.com> wrote in message
news:Xns92AC803FDAE4Esi...@140.99.99.130...
// binding keys here
bind MWHEELDOWN vstr w_groupa
bind q vstr w_groupb
bind MWHEELUP vstr w_groupc
bind a vstr w_groupd
// This resets the weapon order of the buttons you are not pushing
set wgroupareset "set w_groupb vstr w_groupb1; set w_groupc vstr
w_groupc1;set w_groupd vstr w_groupd1"
set wgroupbreset "set w_groupa vstr w_groupa1; set w_groupc vstr
w_groupc1;set w_groupd vstr w_groupd1"
set wgroupcreset "set w_groupa vstr w_groupa1;set w_groupb vstr
w_groupb1;set w_groupd vstr w_groupd1"
set wgroupdreset "set w_groupa vstr w_groupa1;set w_groupb vstr w_groupb1;
set w_groupc vstr w_groupc1"
// Wheelup
set w_groupa1 "weapon 5;weapon 9; set w_groupa vstr w_groupa2; vstr
wgroupareset" // BFG
set w_groupa2 "weapon 9;weapon 5; set w_groupa vstr w_groupa1; vstr
wgroupareset" // Rocket Launcher
// Wheeldown
set w_groupb1 "weapon 4;weapon 3; set w_groupb vstr w_groupb2; vstr
wgroupbreset" // Shotgun
set w_groupb2 "weapon 3;weapon 4; set w_groupb vstr w_groupb3; vstr
wgroupbreset" // Grenade Launcher
set w_groupb3 "weapon 3;weapon 1; set w_groupb vstr w_groupb1; vstr
wgroupbreset" // melee
// Q
set w_groupc1 "weapon 6;weapon 7; set w_groupc vstr w_groupc2; vstr
wgroupcreset" // Railgun
set w_groupc2 "weapon 7;weapon 6; set w_groupc vstr w_groupc1; vstr
wgroupcreset" // Lightning Gun
// A
set w_groupd1 "weapon 2;weapon 8; set w_groupd vstr w_groupd2; vstr
wgroupdreset" // Plasmagun
set w_groupd2 "weapon 8;weapon 2; set w_groupd vstr w_groupd1; vstr
wgroupdreset" // MachineGun
// Initialization
set w_groupa vstr w_groupa1; set w_groupb vstr w_groupb1; set w_groupc vstr
w_groupc1;set w_groupd vstr w_groupd1
// EOF
----endofscript----
You will only have to remember 2 ( A and Q) buttons and your mousewheel. It
gives you every weapon quickly and neatly. And all that in two or less
pushes of the button. (except for melee)
Courtesy of http://www.planetquake.com/thebind/
--
PR4E70R
http://da.dynamic-core.net/
"Neil D." <sk...@ntlworld.comisa> wrote in message
news:Ndis9.3252$zE5....@newsfep1-gui.server.ntli.net...
You might feel "overwhelmed" at first having to remember all the keys, but
playing solidly for 1 week will make them second-nature. I did this and my
game-playing leaped to the next level.
"PR4E70R" <PR4...@tsjello.nl> wrote in message
news:pkks9.5482$mu3.1...@amsnews02.chello.com...
-----------== Posted via Newsfeed.Com - Uncensored Usenet News ==----------
http://www.newsfeed.com The #1 Newsgroup Service in the World!
-----= Over 100,000 Newsgroups - Unlimited Fast Downloads - 19 Servers =-----
You are right ofcourse, but this script does exactly what you mean also. any
weapon is ALWAYS the same amount of 'clicks' on a key. depending on wether
you have the weapon or not it will give you the desired weapon accordingly.
If on the other hand you click a button for your desired weapon and you do
not have that weapon in your arsenal, then it will opt for the next best
thing, namely the next weapon in the group. Which is imo an advantage coz
you will at least get a weapon that resembles the weapon you wanted in the
first place.
I always have the right weapon immediately this way. Also I think you are
right in saying it will lift your game into the next level knowing which
weapon you have and when to use it.
greetz
PR4E70R
http://da.dynamic-core.net/
"PR4E70R" <PR4...@tsjello.nl> wrote in message
news:CPms9.7503$mu3.2...@amsnews02.chello.com...