Engine
Class VoicePack

source: e:\games\UnrealTournament\Engine\Classes\VoicePack.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Info
         |
         +--Engine.VoicePack
Direct Known Subclasses:ChallengeVoicePack

class VoicePack
extends Engine.Info

//============================================================================= // VoicePack. //=============================================================================

Function Summary
 void ClientInitialize(PlayerReplicationInfo Sender, PlayerReplicationInfo Recipient, name messagetype, byte messageIndex)
     
/* 
ClientInitialize() sets up playing the appropriate voice segment, and returns a string
 representation of the message
*/
 void PlayerSpeech(int Type, int Index, int Callsign)



Source Code


00001	//=============================================================================
00002	// VoicePack.
00003	//=============================================================================
00004	class VoicePack extends Info
00005		abstract;
00006		
00007	/*
00008	(exec function to do ServerVoiceMessage, and use in OrdersMenu)
00009	(voicepack configuration for players and bots)
00010	*/
00011	
00012	/* 
00013	ClientInitialize() sets up playing the appropriate voice segment, and returns a string
00014	 representation of the message
00015	*/
00016	function ClientInitialize(PlayerReplicationInfo Sender, PlayerReplicationInfo Recipient, name messagetype, byte messageIndex);
00017	function PlayerSpeech(int Type, int Index, int Callsign);
00018		
00019	
00020	defaultproperties
00021	{
00022	     RemoteRole=ROLE_None
00023	     LifeSpan=10.000000
00024	}

End Source Code