Community Forums

Go Back   Enemy Territory: QUAKE Wars Official Community Site > Enemy Territory: QUAKE Wars Game Forums > QUAKE Wars Tips, Tricks & Strategies

QUAKE Wars Tips, Tricks & Strategies Share your favorite Enemy Territory: QUAKE Wars tips and strategies with your fellow soldiers.

Reply
 
Thread Tools
Old 06-22-2007, 11:51 PM   #1
Hakuryu
3rd Lieutenant
 
Join Date: May 2007
Location: Cleveland, OH
Default Stroy Up and Stroy Down, and why you should use them

The Strogg have a couple of keybinds called StroyUp and StroyDown. What these allow you to do is exchange health for ammo, and ammo for health.

So if you've battled some Strogg that seemed to be healing while you are fighting, they are using Stroydown and exchanging ammo for health.

Most players like binding the Stroydown (ammo->health) to the mousewheel, allowing you to quickly gain health versus repeatedly mashing a keybind. This can interrupt switching weapons with the wheel if you use it for that, but if you are a real shooter player and only select weapons directly, it won't affect this. The real problem is you have to use next/previous weapon when selecting deployables. If you bound Stroy Up/Down to the mousewheel, you can no longer select any deployable except the first (unless you have alternate next/previous weapon keybinds).

I work around this by changing keybinds on the fly in my autoexec.cfg, and if anyone has a better way please explain it. Autoexec.cfg is self-created in your MyDocs->ET Beta->Base folder. The following is an excerpt from my autoexec; default is next/previous weapon, in vehicles the wheel controls views/seat changing, and the two EXEC commands let me switch on the fly from StroyUp/Down to default.

Code:
// Mousewheel
// Up/Down - Select Deployable (Infantry) - default
bind "MWHEELDOWN" "_weapnext" "" "default"
bind "MWHEELUP" "_weapprev" "" "default"
// Up/Down - Change vehicle position (Vehicles) - Change camera view (Vehicles)
bind "MWHEELDOWN" "_vehiclecamera" "" "vehicle"
bind "MWHEELUP" "_activate" "" "vehicle" // not working
// Up/Down - Health->Ammo/Ammo->Health (Infantry) Strogg only
bind "F5" "exec StroggWheel.cfg" "" "default"
// Reset Strogg only to default
bind "F6" "exec DefaultWheel.cfg" "" "default"
StroggWheel and DefaultWheel are two other cfg's I made, this is what they contain. StroggWheel :

Code:
bind "MWHEELUP" "_stroyUp" "" "default"		// Health->Ammo
bind "MWHEELDOWN" "_stroyDown" "" "default"	// Ammo->Health
DefaultWheel:

Code:
bind "MWHEELDOWN" "_weapnext" "" "default"
bind "MWHEELUP" "_weapprev" "" "default"
So when I'm Strogg I hit F5 to exec StroyUp/Down behavior, and if I need to deploy something I hit F6 first. If I'm GDF I hit F6 and dont worry about Stroy Up/Down.

You may be wondering whats the use of StroyUp (health->ammo), and really the only time I use it is when sniping. If I run out of railgun ammo, I simply trade health for ammo and continue firing. You can use this with the Obliterator also to good effect.

Try them out with normal binds if you are uncomfortable using cfg files. You will soon come to love these binds as Strogg, no matter how you use them.
__________________
My very old Tribes mod

Last edited by Hakuryu : 06-22-2007 at 11:55 PM.
Hakuryu is offline   Reply With Quote
Old 06-23-2007, 12:02 AM   #2
majineko
Lance Corporal
 
Join Date: May 2007
Default

Pressing F will cycle between deployables.
majineko is offline   Reply With Quote
Old 06-23-2007, 01:12 AM   #3
Ifurita
Global Volunteer Force
 
Join Date: Apr 2007
Send a message via AIM to Ifurita Send a message via MSN to Ifurita
Default

Aye _activate (F) allows you to select deployables ... what a noob

The other thing you'll realize is that reload is really only pertinant to GDF and stroyup/down is only relevent to Strogg. I created a strogg and a gdf cfg file which gets exec'd at a key stroke, which rebinds keys and vsays for the appropriate team
Ifurita is offline   Reply With Quote
Old 06-23-2007, 02:28 AM   #4
Hakuryu
3rd Lieutenant
 
Join Date: May 2007
Location: Cleveland, OH
Default

Quote:
Originally Posted by Ifurita View Post
Aye _activate (F) allows you to select deployables ... what a noob
Hmmm... they must have added that yesterday

I never really use activate except to switch seats in a vehicle... glad I posted and asked about this then
__________________
My very old Tribes mod
Hakuryu is offline   Reply With Quote
Old 06-23-2007, 04:10 AM   #5
Oompa
First Sergeant
 
Join Date: May 2007
Send a message via AIM to Oompa Send a message via MSN to Oompa Send a message via Yahoo to Oompa
Default

I would hope this works. I used the class context cvars to split it up between Strogg and GDF.

Code:
unbind "MWHEELUP"; unbind "MWHEELDOWN";
bind "MWHEELUP" "_stroyUp" "" "aggressor"
bind "MWHEELUP" "_stroyUp" "" "technician"
bind "MWHEELUP" "_stroyUp" "" "constructor"
bind "MWHEELUP" "_stroyUp" "" "oppressor"
bind "MWHEELUP" "_stroyUp" "" "infiltrator"
bind "MWHEELDOWN" "_stroyDown" "" "aggressor"
bind "MWHEELDOWN" "_stroyDown" "" "technician"
bind "MWHEELDOWN" "_stroyDown" "" "constructor"
bind "MWHEELDOWN" "_stroyDown" "" "oppressor"
bind "MWHEELDOWN" "_stroyDown" "" "infiltrator"

bind "MWHEELUP" "_weapprev" "" "solider"
bind "MWHEELUP" "_weapprev" "" "medic"
bind "MWHEELUP" "_weapprev" "" "engineer"
bind "MWHEELUP" "_weapprev" "" "fieldops"
bind "MWHEELUP" "_weapprev" "" "covertops"
bind "MWHEELDOWN" "_weapnext" "" "solider"
bind "MWHEELDOWN" "_weapnext" "" "medic"
bind "MWHEELDOWN" "_weapnext" "" "engineer"
bind "MWHEELDOWN" "_weapnext" "" "fieldops"
bind "MWHEELDOWN" "_weapnext" "" "covertops"
It's a rather unelegant method, but I think it should work..
__________________

Last edited by Oompa : 06-23-2007 at 04:25 AM. Reason: correcting code. Still ugly though.
Oompa is offline   Reply With Quote
Old 06-23-2007, 04:28 AM   #6
reyalp
Global Volunteer Force
 
Join Date: May 2007
Default

here's an alternate way you could do it, if you don't care about making any class specific binds:
Code:
seta g_class_context_aggressor "strogg"
seta g_class_context_technician "strogg"
seta g_class_context_constructor "strogg"
seta g_class_context_oppressor "strogg"
seta g_class_context_infiltrator "strogg"
seta g_class_context_solider "gdf"
seta g_class_context_medic "gdf"
seta g_class_context_engineer "gdf"
seta g_class_context_fieldops "gdf"
seta g_class_context_covertops "gdf"

bind "MWHEELUP" "_stroyUp" "" "strogg"
bind "MWHEELDOWN" "_stroyDown" "" "strogg"
bind "MWHEELUP" "_weapprev" "" "gdf"
bind "MWHEELDOWN" "_weapnext" "" "gdf"
In either case, you may find these don't work in vehicles.
reyalp is offline   Reply With Quote
Old 06-23-2007, 04:32 AM   #7
Oompa
First Sergeant
 
Join Date: May 2007
Send a message via AIM to Oompa Send a message via MSN to Oompa Send a message via Yahoo to Oompa
Default

Much more elegant than my solution
__________________

Last edited by Oompa : 06-23-2007 at 04:41 AM. Reason: grammarz
Oompa is offline   Reply With Quote
Old 06-23-2007, 06:17 AM   #8
Ifurita
Global Volunteer Force
 
Join Date: Apr 2007
Send a message via AIM to Ifurita Send a message via MSN to Ifurita
Default

bah, make a single gdf.cfg and another strogg.cfg with those lines in each then add:

bind x "exec gdf.cfg"
bind y "exec strogg.cfg"

that way you can rebind a bunch of keys + save your contexts for something more tailored to each class
Ifurita is offline   Reply With Quote
Old 06-23-2007, 06:21 AM   #9
ForsakenDragon
Ensign
 
Join Date: Jun 2007
Default

would binding be needed to use these options? why don't they have a butten for themselves when you install the game?
__________________
http://www.brightcove.com/title.jsp?...nnel=825063364

^^^^^^^^^^^^^^
When RPG players can't use there main skill "repetitive tricks" in a FPS game and get owned
ForsakenDragon is offline   Reply With Quote
Old 06-23-2007, 06:24 AM   #10
reyalp
Global Volunteer Force
 
Join Date: May 2007
Default

Quote:
Originally Posted by Ifurita View Post
bah, make a single gdf.cfg and another strogg.cfg with those lines in each then add:

bind x "exec gdf.cfg"
bind y "exec strogg.cfg"

that way you can rebind a bunch of keys + save your contexts for something more tailored to each class
The downside of that is things getting confused if you do use the limbo menu for some reason.
reyalp is offline   Reply With Quote
Old 06-23-2007, 07:04 AM   #11
Tex
Master Chief
 
Join Date: May 2007
Default

Nice idea, I'm certainly rethinking my usage of keys/buttons with the added features of modifiers and contexts.

Sounds like splashdamage should add contexts for team?
Tex is offline   Reply With Quote
Old 06-23-2007, 07:16 AM   #12
Oompa
First Sergeant
 
Join Date: May 2007
Send a message via AIM to Oompa Send a message via MSN to Oompa Send a message via Yahoo to Oompa
Default

that'd be very nice
__________________
Oompa is offline   Reply With Quote
Old 06-23-2007, 11:59 AM   #13
Gr3y
First Sergeant
 
Join Date: Jun 2007
Location: Denmark
Default

We just need a feature like in ETpro.
ETpro had autoexec_axis.cfg and autoexec_allies.cfg

Join the axis team and the axis cfg would get executed.

It also had map specific autoexec files - autoexec_oasis.cfg f.ex.
__________________
seta g_class_context_gr3y "elite_script0r"
Gr3y is offline   Reply With Quote
Old 06-23-2007, 01:02 PM   #14
Anarchy
Ensign
 
Join Date: May 2007
Location: Cologne, Germany
Default

Quote:
Originally Posted by Gr3y View Post
We just need a feature like in ETpro.
ETpro had autoexec_axis.cfg and autoexec_allies.cfg

Join the axis team and the axis cfg would get executed.

It also had map specific autoexec files - autoexec_oasis.cfg f.ex.
That sounds great - would make things alot easier ...
__________________
Anarchy is offline   Reply With Quote
Old 06-23-2007, 02:04 PM   #15
RoboDuck
Lieutenant Major
 
Join Date: May 2007
Default

can't play beta yet but I got good mouse to bind this kind of buttons to xD I got 2 buttons on the side that can be used for example for forward and backward in a browser but in some games I'm allowed to use em to bind stuff to
RoboDuck is offline   Reply With Quote
Old 06-26-2007, 01:06 PM   #16
Redkckat
Private First Class
 
Join Date: Jun 2007
Default

you know guys this way may not be as nice as your programming but it works i have the Microsoft Habu mouse from razor and you can actually bind keys to the mouse buttons so i can effectively use my other two buttons on mouse 7 buttons total do diffrent things for me. works pretty well now the downside i like to have my jump on th mousewheel but that doesn't seem to work. player doesn't jump so i had to find a diffrent spot. just a thought if haven't tried this yet i know i didn't and it made a huge diffrence while playing for me.
Redkckat is offline   Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 06:52 AM.