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

BonusPack.MutantNameMessage


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
// ====================================================================
//  Class: BonusPack.MutantNameMessage
//
//  Sends Bottom Feeder Message
//
//  Written by James Golding
//  (c) 2002, Epic Games, Inc.  All Rights Reserved
// ====================================================================

class MutantNameMessage extends LocalMessage;

var()	localized String	BottomFeederMesg;

static function string GetString(
    optional int Switch,
    optional PlayerReplicationInfo RelatedPRI_1, 
    optional PlayerReplicationInfo RelatedPRI_2,
    optional Object OptionalObject
    )
{
	if(Switch == 0)
		return RelatedPRI_1.PlayerName;
	else if(Switch == 1)
		return RelatedPRI_1.PlayerName@Default.BottomFeederMesg;
}

static function color GetColor(
    optional int Switch,
    optional PlayerReplicationInfo RelatedPRI_1, 
    optional PlayerReplicationInfo RelatedPRI_2
    )
{
	if ( Switch == 0 )
		return class'PlayerNameMessage'.Default.DrawColor;
	else
		return Default.DrawColor;
}

defaultproperties
{
	bFadeMessage=True
	bIsUnique=True
	FontSize=0
	bBeep=False
    Lifetime=2
	bIsConsoleMessage=false

	BottomFeederMesg="(BOTTOM FEEDER)"

    DrawColor=(R=0,G=255,B=255,A=255)
    DrawPivot=DP_MiddleMiddle
    StackMode=SM_None
    PosX=0.5
    PosY=0.58
}

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