rott/kf_sources/FrightScript/Classes/Msg_RouletteCountDown.uc
2026-07-14 20:27:09 +07:00

26 lines
651 B
Ucode

class Msg_RouletteCountDown extends TimerMessage;
var localized string CountDownPrefix;
static function string GetString(
optional int Switch,
optional PlayerReplicationInfo RelatedPRI_1,
optional PlayerReplicationInfo RelatedPRI_2,
optional Object OptionalObject
)
{
return default.CountDownPrefix@Switch$default.CountDownTrailer;
}
static function int GetFontSize(int Switch, PlayerReplicationInfo RelatedPRI1, PlayerReplicationInfo RelatedPRI2, PlayerReplicationInfo LocalPlayer)
{
return 5;
}
defaultproperties
{
DrawColor=(G=0)
CountDownPrefix = "Wheel will spin in :"
PosY=0.6
}