Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

UT2k4Assault.Message_ASKillMessages


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
class Message_ASKillMessages extends LocalMessage;

const MaxMSGs=8;
var localized string KillString[MaxMSGs];
var name KillSound[MaxMSGs];

static function string GetString(
	optional int Switch,
	optional PlayerReplicationInfo RelatedPRI_1,
	optional PlayerReplicationInfo RelatedPRI_2,
	optional Object OptionalObject
	)
{
	return default.KillString[Min(Switch,MaxMSGs-1)];
}

static simulated function ClientReceive(
	PlayerController P,
	optional int Switch,
	optional PlayerReplicationInfo RelatedPRI_1,
	optional PlayerReplicationInfo RelatedPRI_2,
	optional Object OptionalObject
	)
{
	Super.ClientReceive(P, Switch, RelatedPRI_1, RelatedPRI_2, OptionalObject);
	if ( default.KillSound[Min(Switch,MaxMSGs-1)] != '' )
		P.PlayRewardAnnouncement(default.KillSound[Min(Switch,MaxMSGs-1)],1,true);
}

defaultproperties
{
	KillString(0)="Top Gun!"
	KillString(1)="Wrecker!"
	KillString(2)="Vehicle spawn blocking! 5 secs warning"
	KillString(3)="Vehicle spawn blocking! 4 secs warning"
	KillString(4)="Vehicle spawn blocking! 3 secs warning"
	KillString(5)="Vehicle spawn blocking! 2 secs warning"
	KillString(6)="Vehicle spawn blocking! 1 sec warning"
	KillString(7)="Leaving battle field!"
	KillSound(0)=top_gun
	KillSound(1)=Wrecker

	bIsConsoleMessage=false
	bFadeMessage=true
	bIsSpecial=true
	bIsUnique=false
	Lifetime=3
	bBeep=false

	DrawColor=(R=255,G=0,B=0)
	FontSize=1

	StackMode=SM_Down
	PosY=0.242
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 5.9.2006 22:36:14.000 - Creation time: Do 14.8.2014 09:58:44.518 - Created with UnCodeX