Core.Object | +--UWindow.UWindowBase | +--UWindow.UWindowList | +--UBrowser.UBrowserServerList | +--RBrowser.RBrowserServerList
bool
bNGWorldStats
DecodeServerProperties(string Data)
00001 class RBrowserServerList expands UBrowserServerList; 00002 00003 /* 00004 var bool bNGWorldStats; 00005 00006 function bool DecodeServerProperties(string Data) 00007 { 00008 local int i; 00009 00010 i=InStr(Data, "\\worldlog\\"); 00011 if(i >= 0 && Mid(Data, i+10, 4) ~= "true") 00012 bNGWorldStats = True; 00013 00014 return Super.DecodeServerProperties(Data); 00015 } 00016 00017 function UWindowList CopyExistingListItem(Class<UWindowList> ItemClass, UWindowList SourceItem) 00018 { 00019 local RBrowserServerList L; 00020 00021 L = RBrowserServerList(Super.CopyExistingListItem(ItemClass, SourceItem)); 00022 L.bNGWorldStats = RBrowserServerList(SourceItem).bNGWorldStats; 00023 00024 return L; 00025 } 00026 */ 00027 00028 defaultproperties 00029 { 00030 }