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 |
// ============================================================================ // JBLoginMenu // Copyright 2007 by Jrubzjeknf <rrvanolst@hotmail.com> // $Id: JBLoginMenu.uc,v 1.1 2007-09-19 14:59:20 jrubzjeknf Exp $ // // Jailbreak's login menu - the menu you see when you hit escape ingame. // ============================================================================ class JBLoginMenu extends UT2K4PlayerLoginMenu; // ============================================================================ // Variables // ============================================================================ var GUITabItem JBHelpPanel; // ============================================================================ // AddPanels // // Adds our JBMidGamePanelHelp to the ingame login menu on the very left. // ============================================================================ function AddPanels() { Panels.Insert(0,1); Panels[0] = JBHelpPanel; Super.AddPanels(); } // ============================================================================ // HandleParameters // // Pops up the ingame login menu. If specified, the first tab you see is our // JBMidGamePanelHelp, else it'll be the usual Game tab. // ============================================================================ function HandleParameters(string Param1, string Param2) { if (Param1 ~= "JBTutorial") { c_Main.ActivateTabByName(JBHelpPanel.Caption, True); return; } c_Main.ActivateTabByName(Panels[1].Caption, True); } // ============================================================================ // Default properties. // ============================================================================ defaultproperties { JBHelpPanel = (ClassName="JBToolbox2.JBMidGamePanelHelp",Caption="Jailbreak Tutorial",Hint="How to play Jailbreak") } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |