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 00106 00107 00108 00109 00110 00111 00112 00113 00114 |
// ==================================================================== // (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.00000 RightPadding=0.00000 TopPadding=0.00000 BottomPadding=0.00000 WinWidth=0.922427 WinHeight=0.644637 WinLeft=0.035693 WinTop=0.030325 bBoundToParent=True bScaleToParent=True End Object sb_MOTD=sbMOTD Begin Object Class=AltSectionBackground Name=sbAdmin Caption="Your Admin is" LeftPadding=0.00000 RightPadding=0.00000 TopPadding=0.00000 BottomPadding=0.00000 WinWidth=0.922427 WinHeight=0.258224 WinLeft=0.035693 WinTop=0.678274 bBoundToParent=True bScaleToParent=True End Object sb_Admin=sbAdmin Begin Object Class=GUIScrollTextBox Name=MOTDText WinWidth=1.000000 WinHeight=0.558333 WinLeft=0.000000 WinTop=0.441667 CharDelay=0.0025 EOLDelay=0 StyleName="NoBackground" bNoTeletype=true bNeverFocus=true TextAlign=TXTA_Center bBoundToParent=true bScaleToParent=true End Object lb_Text=MOTDText Begin Object class=GUILabel Name=lEmail Caption="" FontScale=FNS_Small TextALign=TXTA_Center TextColor=(R=255,G=255,B=255,A=255) WinWidth=0.893120 WinHeight=0.069115 WinLeft=0.049329 WinTop=0.801416 bBoundToParent=true bScaleToParent=true End Object l_Email=lEmail Begin Object class=GUILabel Name=lAdminName Caption="" TextALign=TXTA_Center TextColor=(R=255,G=255,B=255,A=255) TextFont="UT2HeaderFont" WinWidth=0.901341 WinHeight=0.069115 WinLeft=0.049329 WinTop=0.747420 bBoundToParent=true bScaleToParent=true End Object l_AdminName=lAdminName WinWidth=1 WinHeight=0.7 OnPreDraw=InternalOnPreDraw } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |