Package com.flansmod.client.gui

Examples of com.flansmod.client.gui.GuiTeamScores


    //Teams GUI lock at end of rounds
    if(teamsScoreGUILock > 0)
    {
      teamsScoreGUILock--;
      if(minecraft.currentScreen == null)
        minecraft.displayGuiScreen(new GuiTeamScores());
    }
   
   
    // Guns
    if (shootTimeLeft > 0)
View Full Code Here


      mc.displayGuiScreen(new GuiTeamSelect());
      return;
    }
    if(teamsScoresKey.isPressed())
    {
      mc.displayGuiScreen(new GuiTeamScores());
      return;
    }
    if(reloadKey.isPressed() && FlansModClient.shootTime(false) <= 0)
    {
      FlansMod.getPacketHandler().sendToServer(new PacketReload(false));
View Full Code Here

TOP

Related Classes of com.flansmod.client.gui.GuiTeamScores

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.