Examples of GuiTeamScores


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

Examples of com.flansmod.client.gui.GuiTeamScores

      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
Copyright © 2018 www.massapi.com. 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.