24 lines
515 B
Ucode
24 lines
515 B
Ucode
class KFLastManStandingMsg extends CriticalEventPlus
|
|
abstract;
|
|
|
|
var localized string LastManStandStr;
|
|
|
|
static function string GetString(
|
|
optional int Switch,
|
|
optional PlayerReplicationInfo RelatedPRI_1,
|
|
optional PlayerReplicationInfo RelatedPRI_2,
|
|
optional Object OptionalObject
|
|
)
|
|
{
|
|
Return Default.LastManStandStr;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
LastManStandStr="You are the only one left..."
|
|
FontSize=1
|
|
DrawColor=(R=255,G=25,B=25,A=230)
|
|
PosY=0.2
|
|
bIsConsoleMessage=False
|
|
}
|