I can not use the voicecom
#1
I am french, I've got a AZERTY keyboard and I can not use the voice com I press V and I press a number and nothing happens !!!
Please help me I don't understand !
Thanks given by:
#2
In-game press V and see what voicecoms are available to you.
Thanks given by:
#3
Yes I press V and is show options but I press a number and nothing happens !
Thanks given by:
#4
A mon avis en voulant modifier les voice coms tu as du faire une erreur tien le menu_voicecom.cfg

Qui est à placer dans c:\programe\Assault-cube\config

[cubescript]newmenu voicecom 1 1

menuitem "1. Team Replies" [showmenu "Team Replies"]
menuitem "2. Team Commands" [showmenu "Team Commands"]
menuitem "3. Team State" [showmenu "Team State"]
menuitem "4. Team Talk" [showmenu "Team Talk"]
menuitem "5. Team Tactics" [showmenu "Team Tactics"]
menuitem "6. Public Talk" [showmenu "Public Talk"]


alias vcrnd [ // pick random shout if possible
alias len (listlen $arg1)
if (> $len 1) [
alias r (rnd $len)
voicecom (at $arg1 $r) (at $arg2 $r)
] [
voicecom $arg1 $arg2
]
]


alias genvcitem [
if (> (listlen $arg2) 1) [ alias text (at $arg1 0) ] [ alias text $arg1 ] // split multiple shouts
alias action (concatword vcrnd " [" $arg2 "]" " [" $arg1 "]")
menuitem (concatword $arg3 ". " $text) $action // add as numbered list
]

// V 1 [ 1,2 ]
newmenu "Team Replies" 1 1
// the following two mirror F1/F2 - disagree/agree
genvcitem [Yes Affirmative "All right, Sir"] "yes affirmative allrightsir" 1 // #
genvcitem ["Negative" "No can do" "There's no way, Sir!"] "negative nocando theresnowaysir" 2 // *
genvcitem ["On the move" "On my way"] "onthemove_1 onthemove_2" 3
genvcitem ["Got your back!" "Got you covered!"] "igotyourback igotyoucovered" 4
genvcitem ["In Position!" "In Position now!"] "inposition_1 inposition_2" 5

// V 2 [ 1,2,3 ]
newmenu "Team Commands" 1 1
genvcitem "Recover the flag!" recovertheflag 1 // *
genvcitem "Defend the flag!" defendtheflag 2 // #
genvcitem ["Come on, move!" "Spread Out!"] "comeonmove spreadout" 3 // *

// V 3 [ 2,3,4 ]
newmenu "Team State" 1 1
genvcitem "I'm attacking" imattacking 1
genvcitem "Coming in with the flag!" cominginwiththeflag 2 // *
genvcitem "I made contact" imadecontact 3 // #
genvcitem ["Enemy down" "I got one"] "enemydown igotone" 4 // *
genvcitem "I'm on defense" imondefense 5

// V 4 [ 1,2,3 ]
newmenu "Team Talk" 1 1
genvcitem ["We did it!" "Go get 'em boys!" "Good job, team!"] "wedidit gogetemboys goodjobteam" 1
genvcitem "Sorry" sorry 2
genvcitem "I'm on your team, man! Where is your glaces" imonyourteamman 3 // *

// V 5 [ 1,2,3 ]
newmenu "Team Tactics" 1 1
genvcitem "Cover me!" coverme 1
genvcitem "Stay together!" staytogether 2
genvcitem "Stay here!" stayhere 3
genvcitem "Report In!" reportin 4 // *

// V 6 [ 1,2,3 ]
newmenu "Public Talk" 1 1
genvcitem "Nice shot" niceshot 1
genvcitem ["Thanks!" "Thanks, man"] "thanks_1 thanks_2" 2
genvcitem ["Awesome" "Awesome!"] "awesome_1 awesome_2" 3
[/cubescript]

Ensuite va dans : Mes document --> Assault-cube --> config --> save
Rajoute cette ligne :

[cubescript]bind "V" [ if $editing [ paste ] [ showmenu voicecom ] ][/cubescript]


-------------------------------------------------------------------


English :

I think wanting to change the voice coms you make a mistake of yours the menu_voicecom.cfg

Which is to be placed in c:\programe\Assault-cube\config

[cubescript]newmenu voicecom 1 1

menuitem "1. Team Replies" [showmenu "Team Replies"]
menuitem "2. Team Commands" [showmenu "Team Commands"]
menuitem "3. Team State" [showmenu "Team State"]
menuitem "4. Team Talk" [showmenu "Team Talk"]
menuitem "5. Team Tactics" [showmenu "Team Tactics"]
menuitem "6. Public Talk" [showmenu "Public Talk"]


alias vcrnd [ // pick random shout if possible
alias len (listlen $arg1)
if (> $len 1) [
alias r (rnd $len)
voicecom (at $arg1 $r) (at $arg2 $r)
] [
voicecom $arg1 $arg2
]
]


alias genvcitem [
if (> (listlen $arg2) 1) [ alias text (at $arg1 0) ] [ alias text $arg1 ] // split multiple shouts
alias action (concatword vcrnd " [" $arg2 "]" " [" $arg1 "]")
menuitem (concatword $arg3 ". " $text) $action // add as numbered list
]

// V 1 [ 1,2 ]
newmenu "Team Replies" 1 1
// the following two mirror F1/F2 - disagree/agree
genvcitem [Yes Affirmative "All right, Sir"] "yes affirmative allrightsir" 1 // #
genvcitem ["Negative" "No can do" "There's no way, Sir!"] "negative nocando theresnowaysir" 2 // *
genvcitem ["On the move" "On my way"] "onthemove_1 onthemove_2" 3
genvcitem ["Got your back!" "Got you covered!"] "igotyourback igotyoucovered" 4
genvcitem ["In Position!" "In Position now!"] "inposition_1 inposition_2" 5

// V 2 [ 1,2,3 ]
newmenu "Team Commands" 1 1
genvcitem "Recover the flag!" recovertheflag 1 // *
genvcitem "Defend the flag!" defendtheflag 2 // #
genvcitem ["Come on, move!" "Spread Out!"] "comeonmove spreadout" 3 // *

// V 3 [ 2,3,4 ]
newmenu "Team State" 1 1
genvcitem "I'm attacking" imattacking 1
genvcitem "Coming in with the flag!" cominginwiththeflag 2 // *
genvcitem "I made contact" imadecontact 3 // #
genvcitem ["Enemy down" "I got one"] "enemydown igotone" 4 // *
genvcitem "I'm on defense" imondefense 5

// V 4 [ 1,2,3 ]
newmenu "Team Talk" 1 1
genvcitem ["We did it!" "Go get 'em boys!" "Good job, team!"] "wedidit gogetemboys goodjobteam" 1
genvcitem "Sorry" sorry 2
genvcitem "I'm on your team, man! Where is your glaces" imonyourteamman 3 // *

// V 5 [ 1,2,3 ]
newmenu "Team Tactics" 1 1
genvcitem "Cover me!" coverme 1
genvcitem "Stay together!" staytogether 2
genvcitem "Stay here!" stayhere 3
genvcitem "Report In!" reportin 4 // *

// V 6 [ 1,2,3 ]
newmenu "Public Talk" 1 1
genvcitem "Nice shot" niceshot 1
genvcitem ["Thanks!" "Thanks, man"] "thanks_1 thanks_2" 2
genvcitem ["Awesome" "Awesome!"] "awesome_1 awesome_2" 3
[/cubescript]


Then he comes: my doc --> Assault-Cube --> config --> saved

Add this line:

[cubescript]bind "V" [ if $editing [ paste ] [ showmenu voicecom ] ][/cubescript]
Thanks given by:
#5
(10 Feb 12, 07:40PM)Magnum25Mm Wrote: Yes I press V and is show options but I press a number and nothing happens !
C'est pas sur le "numpad" qu'il faut taper les numéros, ce sont les chiffres au-dessus de ton clavier AZERTY

Thanks given by:
#6
Got the same problem here, it seems its not relative to french keyboard but to linux distros.
I installed AC on 2 Ubuntus (10.04 & 11.04) and can only access the voicecom menu. Can't do more.

On windows XP, no problem.

Magnum, are you using Linux?
Magnum, tu utilises Linux?

I binded some voicecom to get round this problem.
bind "F4" [voicecom niceshot "Nice Shot !"]
You can find the voicecom sound names in packages>audio>sounds>voicecom
Thanks given by:
#7
(15 Feb 12, 10:56AM)LySioS Wrote: Got the same problem here, it seems its not relative to french keyboard but to linux distros.
I installed AC on 2 Ubuntus (10.04 & 11.04) and can only access the voicecom menu. Can't do more.
Have no problems using voicecoms on Ubuntu 10.04.
Never has.
Thanks given by:
#8
You're right.
I changed my keyboard layout to english and it works fine.
So it's both due to linux and french keyboards...
Thanks given by:
#9
a bit offtopic here, but my keyboard sometimes changes the " symbol to a @ symbol. any ideas?
Thanks given by:
#10
You are pressing Alt Gr or Shift ;)
Alt Gr + 2 = @
Shift + 2 = "
Thanks given by:
#11
(15 Feb 12, 10:38PM)MykeGregory Wrote: a bit offtopic here, but my keyboard sometimes changes the " symbol to a @ symbol. any ideas?

Don't hijack threads. It's in the rules. :P
Thanks given by:
#12
/bind n [voicecom niceshot "BOA KKKKKKKKKKKKKKK"]
Thanks given by:
#13
/bind a [voicecom awesome_1 "KKKKKKKKKKKKKKKKKKKKKKKKKK"]
/bind s [voicecom niceshot "BELO TIRO GAY"]
/bind w [voicecom awesome_2 "ahuashuashuashuashuashuashuashuashuashe"]
/bind d [voicecom sorry "SAIA DO MEU CAMINHO FDP"]
Thanks given by: