18 lines
526 B
Ucode
18 lines
526 B
Ucode
class ScrnRPGSwitchMessage extends CriticalEventPlus;
|
|
|
|
var() localized string SwitchMessage[10];
|
|
|
|
static function string GetString (optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional PlayerReplicationInfo RelatedPRI_2, optional Object OptionalObject)
|
|
{
|
|
if ( (Switch >= 0) && (Switch <= 9) )
|
|
return Default.SwitchMessage[Switch];
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
SwitchMessage(0)="Detaching Scope"
|
|
SwitchMessage(1)="Attaching Scope"
|
|
DrawColor=(B=0,G=0,R=220)
|
|
FontSize=-2
|
|
}
|