View Single Post
Old 03-18-2008, 03:08 PM   #151
Dr.Satan
Wiki Team
Fortress Forever Staff
 
Dr.Satan's Avatar
 
Join Date: Sep 2007
Location: Greeley, CO
Class/Position: Med / Solly
Gametype: PAYLOAD
Affiliations: DET-
Posts Rated Helpful 19 Times
Quote:
Originally Posted by dys
Engi

- How about rotating the gun, let's say one button push to get the gun to rotate 45 degrees and another to rotate it 90 degrees?
Well with FF being the sexy shit it is, you actually have an aim here button. Basically you push it whenever you need to move / rotate your Sg and the gun will aim where you are aiming. Still here is you bind for that command:

Code:
bind g "aimsentry"
Replace 'g' with whatever key you wanted.

Quote:
Originally Posted by dys
Spy

- I'd like to be able to push one key for silent cloak without using the radial.
Code:
bind g "scloak"
Replace 'g' with whatever key you wanted.


Quote:
Originally Posted by dys
- For sabotaging sentry gun, can I just push one key once the meter has filled up rather then go to the radial menu? Example, I run up to a gun as spy, have the meter fill up, and I just push "G" and the gun is sabotaged.
I have 2 solutions for you on this one. The first is what you requested here. The 2nd is a copy of what I use:

Code:
bind g "sentrysabotage"
This will do what you wanted.

Code:
//     --------
//---- Sabotage ----
//     --------

alias sab_1 "sentrysabotage"
alias sab_2 "dispensersabotage"

alias sabsg "sab_1; wait; default; wait; speak vox/female/s.g."
alias sabdis "sab_2; wait; default; wait; speak vox/female/dispenser"
alias sabboth "sab_1; wait; sab_2; wait; default; wait; speak vox/female/both"

alias sabmenu "bind 1 sabsg; wait; echo 1) Sabotage SG; wait; bind 2 sabdis; wait; echo 2) Sabotage Dispenser; wait; bind 3 sabboth; wait; echo 3) Sabotage Both; wait; bind 0 default; wait; echo 0) Defaults"

bind ctrl "sabmenu"
This is what I use.

Once you have it sabotaged (the bar has filled) then you hit ctrl and then 1, 2, 3, or 0.

One will activate all the Sg's you have sabotaged, 2 will activate (blow up) all Dispensers you have sabotaged, 3 will activate both, 0 will reset the keys (if you hit it by accident and need to shut it off). Vox is contained so that it tells you either SG, dispenser, or both in only your ear.

Once you use the menu all keys are rebound to defaults by using this code:

Code:
//     -------
//---- Default ----
//     -------

alias d_1 "wait;bind 1 slot1"
alias d_2 "wait;bind 2 slot2"
alias d_3 "wait;bind 3 slot3"
alias d_4 "wait;bind 4 slot4"
alias d_5 "wait;bind 5 slot5"
alias d_6 "wait;bind 6 slot6"
alias d_7 "wait;bind 7 slot7"
alias d_8 "wait;bind 8 slot8"
alias d_9 "wait;bind 9 slot9"
alias d_0 "wait;bind 0 slot0"
alias default "wait;d_1;wait;d_2;wait;d_3;wait;d_4;wait;d_5;wait;d_6;wait;d_7;wait;d_8
;wait;d_9;wait;d_0"
Put both pieces in your spy.cfg.
__________________
(Released) conc_school | hellion_classic | ksour_PAYLOAD | mulch_faf
(Beta) alchimy_b1
(Lua) base_payload_2015
(Models) props_trainyard
Support FF:
Dr.Satan is offline   Reply With Quote