Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
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 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 00096 00097 00098 00099 00100 00101 00102 00103 00104 00105 |
// ==================================================================== // (C) 2002, Epic Games // ==================================================================== class UT2K4Tab_ServerMOTD extends MidGamePanel; var automated GUISectionBackground sb_MOTD, sb_Admin; var automated GUIScrollTextBox lb_Text; var automated GUILabel l_AdminName, l_Email; function InitComponent(GUIController MyController, GUIComponent MyOwner) { super.Initcomponent(MyController, MyOwner); sb_MOTD.ManageComponent(lb_Text); } function bool InternalOnPreDraw(Canvas C) { //Moved here from InitComponent() in case player hasn't received GameReplicationInfo yet if (PlayerOwner().GameReplicationInfo != None) { lb_Text.AddText(PlayerOwner().GameReplicationInfo.MessageOfTheDay); l_AdminName.Caption = PlayerOwner().GameReplicationInfo.AdminName; l_Email.Caption = PlayerOwner().GameReplicationInfo.AdminEmail; OnPreDraw = None; } return false; } defaultproperties { Begin Object Class=AltSectionBackground Name=sbMOTD Caption="Message of the Day" LeftPadding=0.000000 RightPadding=0.000000 WinTop=0.030325 WinLeft=0.035693 WinWidth=0.922427 WinHeight=0.644637 bBoundToParent=Wahr bScaleToParent=Wahr OnPreDraw=sbMOTD.InternalPreDraw End Object sb_MOTD=AltSectionBackground'GUI2K4.UT2K4Tab_ServerMOTD.sbMOTD' Begin Object Class=AltSectionBackground Name=sbAdmin Caption="Your Admin is" LeftPadding=0.000000 RightPadding=0.000000 WinTop=0.678274 WinLeft=0.035693 WinWidth=0.922427 WinHeight=0.258224 bBoundToParent=Wahr bScaleToParent=Wahr OnPreDraw=sbAdmin.InternalPreDraw End Object sb_Admin=AltSectionBackground'GUI2K4.UT2K4Tab_ServerMOTD.sbAdmin' Begin Object Class=GUIScrollTextBox Name=MOTDText bNoTeletype=Wahr CharDelay=0.002500 EOLDelay=0.000000 TextAlign=TXTA_Center OnCreateComponent=MOTDText.InternalOnCreateComponent WinTop=0.441667 WinHeight=0.558333 bBoundToParent=Wahr bScaleToParent=Wahr bNeverFocus=Wahr End Object lb_Text=GUIScrollTextBox'GUI2K4.UT2K4Tab_ServerMOTD.MOTDText' Begin Object Class=GUILabel Name=lAdminName TextAlign=TXTA_Center TextColor=(B=255,G=255,R=255) TextFont="UT2HeaderFont" WinTop=0.747420 WinLeft=0.049329 WinWidth=0.901341 WinHeight=0.069115 bBoundToParent=Wahr bScaleToParent=Wahr End Object l_AdminName=GUILabel'GUI2K4.UT2K4Tab_ServerMOTD.lAdminName' Begin Object Class=GUILabel Name=lEmail TextAlign=TXTA_Center TextColor=(B=255,G=255,R=255) FontScale=FNS_Small WinTop=0.801416 WinLeft=0.049329 WinWidth=0.893120 WinHeight=0.069115 bBoundToParent=Wahr bScaleToParent=Wahr End Object l_Email=GUILabel'GUI2K4.UT2K4Tab_ServerMOTD.lEmail' WinHeight=0.700000 OnPreDraw=UT2K4Tab_ServerMOTD.InternalOnPreDraw } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |