
|
|||||||
| QUAKE Wars Tips, Tricks & Strategies Share your favorite Enemy Territory: QUAKE Wars tips and strategies with your fellow soldiers. |
![]() |
|
|
Thread Tools |
|
|
#1 |
|
3rd Lieutenant
![]() Join Date: May 2007
Location: Cleveland, OH
|
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" Code:
bind "MWHEELUP" "_stroyUp" "" "default" // Health->Ammo bind "MWHEELDOWN" "_stroyDown" "" "default" // Ammo->Health Code:
bind "MWHEELDOWN" "_weapnext" "" "default" bind "MWHEELUP" "_weapprev" "" "default" 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. |
|
|
|
|
|
#2 |
|
Lance Corporal
![]() Join Date: May 2007
|
Pressing F will cycle between deployables.
|
|
|
|
|
|
#3 |
|
Global Volunteer Force
![]() |
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
__________________
ETQW 4 Newbies: Maps, Guides, and Resources (new location) MS-Excel Tips, Tricks, and Tutorials |
|
|
|
|
|
#4 | |
|
3rd Lieutenant
![]() Join Date: May 2007
Location: Cleveland, OH
|
Quote:
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 |
|
|
|
|
|
|
#5 |
|
First Sergeant
![]() |
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"
__________________
Last edited by Oompa : 06-23-2007 at 04:25 AM. Reason: correcting code. Still ugly though. |
|
|
|
|
|
#6 |
|
Global Volunteer Force
![]() Join Date: May 2007
|
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" |
|
|
|
|
|
#7 |
|
First Sergeant
![]() |
Much more elegant than my solution
![]()
__________________
Last edited by Oompa : 06-23-2007 at 04:41 AM. Reason: grammarz |
|
|
|
|
|
#8 |
|
Global Volunteer Force
![]() |
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
__________________
ETQW 4 Newbies: Maps, Guides, and Resources (new location) MS-Excel Tips, Tricks, and Tutorials |
|
|
|
|
|
#9 |
|
Ensign
![]() Join Date: Jun 2007
|
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 |
|
|
|
|
|
#10 |
|
Global Volunteer Force
![]() Join Date: May 2007
|
The downside of that is things getting confused if you do use the limbo menu for some reason.
|
|
|
|
|
|
#11 |
|
Master Chief
![]() Join Date: May 2007
|
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? |
|
|
|
|
|
#12 |
|
First Sergeant
![]() |
that'd be very nice
![]()
__________________
|
|
|
|
|
|
#13 |
|
First Sergeant
![]() Join Date: Jun 2007
Location: Denmark
|
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" |
|
|
|
|
|
#14 |
|
Ensign
![]() Join Date: May 2007
Location: Cologne, Germany
|
That sounds great - would make things alot easier ...
__________________
|
|
|
|
|
|
#15 |
|
Lieutenant Major
![]() Join Date: May 2007
|
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
![]() |
|
|
|
|
|
#16 |
|
Private First Class
![]() Join Date: Jun 2007
|
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.
|
|
|
|
![]() |
«
Previous Thread
|
Next Thread
»
| Thread Tools | |
|
|
All times are GMT. The time now is 06:52 AM.























