PDA

View Full Version : Having trouble finding keys to assign to VOIP?


Backdraft
10-31-2007, 04:41 AM
Try modifiers!

Here's what I added to my autoexec.cfg


bind "f" "_fireteamvoice" "SHIFT" "default"
bind "t" "_teamvoice" "SHIFT" "default"
bind "g" "_voice" "SHIFT" "default"


This way you can activate VOIP by pressing SHIFT + the corresponding key (f = fireteam, t = team, g = global). It also helps that these 3 keys are next to each other on the keyboard as well.

Of course, you can change the keys/modifiers to what you're comfortable with.

CowEyeball
10-31-2007, 05:12 AM
Good call, thanks!

Ifurita
10-31-2007, 05:14 AM
I bound a key to FT chat and the same key, modified by ALT to team chat. Also

Need to enable/disable VOIP. Here's one of each in case you need them

//VOIP mute toggles
seta g_voip_off "ui_voipReceiveGlobal 0; addchatline '^1Global VOIP Muted'; bind 3 $g_voip_on"
seta g_voip_on "ui_voipReceiveGlobal 1; addchatline '^2Global VOIP Enabled'; bind 3 $g_voip_off"
bind 3 $g_voip_off

seta t_voip_off "ui_voipReceiveTeam 0; addchatline '^1Team VOIP Muted'; bind 4 $t_voip_on"
seta t_voip_on "ui_voipReceiveTeam 1; addchatline '^2Team VOIP Enabled'; bind 4 $t_voip_off"
bind 4 $t_voip_off

seta ft_voip_off "ui_voipReceiveFireTeam 0; addchatline '^1Fire Team VOIP Muted'; bind 5 $ft_voip_on"
seta ft_voip_on "ui_voipReceiveFireTeam 1; addchatline '^2Fire Team VOIP Enabled'; bind 5 $ft_voip_off"
bind 5 $ft_voip_off

Azuvector
10-31-2007, 05:17 AM
Neat. I just stole the F5/F6/F7 keys, since I'm perfectly comfortable messing about with changing teams using the Limbo Menu, rather than having any desire for bound keys to do so with.
Then again, I do also use Shift, Ctrl, and Alt, in my regular usage keys(Sprint, Crouch, and Handbrake, respectively.).