//==================================================================== // xVoting.KickInfoPage // Player Information Page. // // Written by Bruce Bickar // (c) 2003, Epic Games, Inc. All Rights Reserved // ==================================================================== class KickInfoPage extends LargeWindow; var automated GUIButton b_ReturnButton; var automated GUIImage i_PlayerPortrait; var automated GUILabel l_PlayerName; var automated PlayerInfoMultiColumnListBox lb_PlayerInfoBox; var localized string PlayerText, PingText, ScoreText, IDText, IPText, KillsText, DeathsText, SuicidesText, MultiKillsText, SpreesText; //------------------------------------------------------------------------------------------------ function InitComponent(GUIController MyController, GUIComponent MyOwner) { Super.Initcomponent(MyController, MyOwner); b_ReturnButton.OnClick=ReturnButtonOnClick; } //------------------------------------------------------------------------------------------------ function HandleParameters(string Param1, string Param2) { LoadInfo(Param1); } //------------------------------------------------------------------------------------------------ function LoadInfo(string PlayerName) { local int i/*, MultiKills, Sprees*/; local Material Portrait; local PlayerReplicationInfo PRI; if(PlayerName == "") return; if (!Controller.bCurMenuInitialized) return; for( i=0; i