I made some voice chats for ET and added them to the scripts and the UI wm_quickmessage. But when i go and try to play with them some work and some don’t!
The Taunts work except for number 4 and 5 the text shows up but the voice dosn’t
The squad commands don’t work at all!
Please help me out! I checked all the numbering on the voicechats and they match the script!
Here is what i have for the wm_quickmessage
QM_MENU_START( “wm_quickmessage” )
QM_MENU_ITEM_TEAM( "S. Statements", close wm_quickmessage; open wm_quickstatements, "s", 0 )
QM_MENU_ITEM_TEAM( "R. Requests", close wm_quickmessage; open wm_quickrequests, "r", 1 )
QM_MENU_ITEM_TEAM( "C. Commands", close wm_quickmessage; open wm_quickcommand, "c", 2 )
QM_MENU_ITEM_TEAM( "T. Talk", close wm_quickmessage; open wm_quickmisc, "t", 3 )
QM_MENU_ITEM( "G. Global", close wm_quickmessage; open wm_quickglobal, "g", 4 )
QM_MENU_ITEM_TEAM( "S. Squad", close wm_quickmessage; open wm_quicksquad, "f", 5 )
QM_MENU_ITEM_TEAM( "O. Objectives", close wm_quickmessage; open wm_quickobjectives, "o", 6 )
QM_MENU_ITEM( "E. Extra", close wm_quickmessage; open wm_quickextra, "e", 8 )
QM_MENU_END
QM_MENU_START( “wm_quickglobal” )
QM_MENU_ITEM( "Y. Yes", exec "VoiceChat Affirmative"; close wm_quickglobal, "y", 0 )
QM_MENU_ITEM( "N. No", exec "VoiceChat Negative"; close wm_quickglobal, "n", 1 )
QM_MENU_ITEM( "W. Taunts", close wm_quickglobal; open wm_quicktaunts, "t", 2 )
QM_MENU_ITEM( "H. Hi", exec "VoiceChat Hi"; close wm_quickglobal, "h", 3 )
QM_MENU_ITEM( "B. Bye", exec "VoiceChat Bye"; close wm_quickglobal, "b", 4 )
QM_MENU_ITEM( "S. Great Shot", exec "VoiceChat GreatShot"; close wm_quickglobal, "s", 5 )
QM_MENU_ITEM( "C. Cheer", exec "VoiceChat Cheer"; close wm_quickglobal, "c", 6 )
QM_MENU_ITEM( "G. More Globals", close wm_quickglobal; open wm_quickglobal2, "g", 7 )
QM_MENU_END
QM_MENU_START( “wm_quicktaunts” )
QM_MENU_ITEM( "I. I think the Americans are all out of real men!", exec "VoiceChat IThinkTheAmericansAreAllOutOfRealMen"; close wm_quicktaunts, "I", 0 )
QM_MENU_ITEM( "v. I've seen French school girls shoot better!", exec "VoiceChat I'veSeenFrenchSchoolGirlsShootBetter"; close wm_quicktaunts, "V", 1 )
QM_MENU_ITEM( "S. Is that all you got?", exec "VoiceChat IsThatAllYouGot"; close wm_quicktaunts, "S", 2 )
QM_MENU_ITEM( "Y. You mess with the best, you die like the rest.", exec "VoiceChat YouMessWithTheBestYouDieLikeTheRest"; close wm_quicktaunts, "Y", 3 )
QM_MENU_ITEM( "W. Who wants some more?", exec "VoiceChat WhoWantsomeMore"; close wm_quicktaunts, "W", 4 )
QM_MENU_ITEM( "T. They're a bunch of cowards!", exec "VoiceChat They'reABunchOfCowards"; close wm_quicktaunts, "T", 5 )
QM_MENU_ITEM( "G. You guys stink!", exec "VoiceChat YouGuysStink"; close wm_quicktaunts, "G", 6 )
QM_MENU_END
QM_MENU_START( “wm_quicksquad” )
QM_MENU_ITEM_TEAM( "M. Move In", exec "VoiceChat MoveIn"; close wm_quicksquad, "M", 0 )
QM_MENU_ITEM_TEAM( "F. Fall Back", exec "VoiceChat FallBack"; close wm_quicksquad, "F", 1 )
QM_MENU_ITEM_TEAM( "A. Attack Left Flank", exec "VoiceChat AttackLeftFlank"; close wm_quicksquad, "A", 2 )
QM_MENU_ITEM_TEAM( "A. Attack Right Flank", exec "VoiceChat AttackRightFlank"; close wm_quicksquad, "A", 3 )
QM_MENU_ITEM_TEAM( "S. Split Up", exec "VoiceChat SplitUp"; close wm_quicksquad, "S", 4 )
QM_MENU_ITEM_TEAM( "R. Regroup", exec "VoiceChat Regroup"; close wm_quicksquad, "R", 5 )
QM_MENU_ITEM_TEAM( "C. Covering Fire", exec "VoiceChat CoveringFire"; close wm_quicksquad, "C", 6 )
QM_MENU_END
Here is the wm_quickmessangeALT
QM_MENU_START( “wm_quickmessageAlt” )
QM_MENU_ITEM_TEAM( "1. Statements", close wm_quickmessageAlt; open wm_quickstatements_alt, "1", 0 )
QM_MENU_ITEM_TEAM( "2. Requests", close wm_quickmessageAlt; open wm_quickrequests_alt, "2", 1 )
QM_MENU_ITEM_TEAM( "3. Commands", close wm_quickmessageAlt; open wm_quickcommand_alt, "3", 2 )
QM_MENU_ITEM_TEAM( "4. Talk", close wm_quickmessageAlt; open wm_quickmisc_alt, "4", 3 )
QM_MENU_ITEM( "5. Global", close wm_quickmessageAlt; open wm_quickglobal_alt, "5", 4 )
QM_MENU_ITEM_TEAM( "6. Squad", close wm_quickmessageAlt; open wm_quicksquad_alt, "6", 5 )
QM_MENU_ITEM_TEAM( "7. Objectives", close wm_quickmessageAlt; open wm_quickobjectives_alt, "7", 6 )
QM_MENU_ITEM( "8. Extra", close wm_quickmessageAlt; open wm_quickextra_alt, "8", 7 )
QM_MENU_END
QM_MENU_START( “wm_quickglobal_alt” )
QM_MENU_ITEM( "1. Yes", exec "VoiceChat Affirmative"; close wm_quickglobal_alt, "1", 0 )
QM_MENU_ITEM( "2. No", exec "VoiceChat Negative"; close wm_quickglobal_alt, "2", 1 )
QM_MENU_ITEM( "3. Taunts", close wm_quickglobal_alt; open wm_quicktaunts_alt, "3", 2 )
QM_MENU_ITEM( "4. Hi", exec "VoiceChat Hi"; close wm_quickglobal_alt, "4", 3 )
QM_MENU_ITEM( "5. Bye", exec "VoiceChat Bye"; close wm_quickglobal_alt, "5", 4 )
QM_MENU_ITEM( "6. Great Shot", exec "VoiceChat GreatShot"; close wm_quickglobal_alt, "6", 5 )
QM_MENU_ITEM( "7. Cheer", exec "VoiceChat Cheer"; close wm_quickglobal_alt, "7", 6 )
QM_MENU_ITEM( "8. More Globals", close wm_quickglobal_alt; open wm_quickglobal2_alt, "8", 7 )
QM_MENU_END
QM_MENU_START( “wm_quicktaunts_alt” )
QM_MENU_ITEM( "1. I think the Americans are all out of real men!", exec "VoiceChat IThinkTheAmericansAreAllOutOfRealMen"; close wm_quicktaunts_alt, "1", 0 )
QM_MENU_ITEM( "2. I've seen French school girls shoot better!", exec "VoiceChat I'veSeenFrenchSchoolGirlsShootBetter"; close wm_quicktaunts_alt, "2", 1 )
QM_MENU_ITEM( "3. Is that all you got?", exec "VoiceChat IsThatAllYouGot"; close wm_quicktaunts_alt, "3", 2 )
QM_MENU_ITEM( "4. You mess with the best, you die like the rest.", exec "VoiceChat YouMessWithTheBestYouDieLikeTheRest"; close wm_quicktaunts_alt, "4", 3 )
QM_MENU_ITEM( "5. Who wants some more?", exec "VoiceChat WhoWantsomeMore"; close wm_quicktaunts_alt, "5", 4 )
QM_MENU_ITEM( "6. They're a bunch of cowards!", exec "VoiceChat They'reABunchOfCowards"; close wm_quicktaunts_alt, "6", 5 )
QM_MENU_ITEM( "7. You guys stink!", exec "VoiceChat YouGuysStink"; close wm_quicktaunts_alt, "7", 6 )
QM_MENU_END
QM_MENU_START( “wm_quicksquad_alt” )
QM_MENU_ITEM_TEAM( "1. Move In", exec "VoiceChat MoveIn"; close wm_quicksquad_alt, "1", 0 )
QM_MENU_ITEM_TEAM( "2. Fall Back", exec "VoiceChat FallBack"; close wm_quicksquad_alt, "2", 1 )
QM_MENU_ITEM_TEAM( "3. Attack Left Flank", exec "VoiceChat AttackLeftFlank"; close wm_quicksquad_alt, "3", 2 )
QM_MENU_ITEM_TEAM( "4. Attack Right Flank", exec "VoiceChat AttackRightFlank"; close wm_quicksquad_alt, "4", 3 )
QM_MENU_ITEM_TEAM( "5. Split Up", exec "VoiceChat SplitUp"; close wm_quicksquad_alt, "5", 4 )
QM_MENU_ITEM_TEAM( "6. Regroup", exec "VoiceChat Regroup"; close wm_quicksquad_alt, "6", 5 )
QM_MENU_ITEM_TEAM( "7. Covering Fire", exec "VoiceChat CoveringFire"; close wm_quicksquad_alt, "7", 6 )
QM_MENU_END