Examples of GuiChat


Examples of net.minecraft.client.gui.GuiChat

    {
      //mc.thePlayer.dropCurrentItem();
    }
    if(i == mc.gameSettings.keyBindChat.getKeyCode())
    {
      mc.displayGuiScreen(new GuiChat());
    }
    if(i == mc.gameSettings.keyBindCommand.getKeyCode())
    {
      mc.displayGuiScreen(new GuiChat("/"));
    }
    if(i == KeyInputHandler.debugKey.getKeyCode())
    {
      FlansMod.DEBUG = !FlansMod.DEBUG;
    }
View Full Code Here

Examples of net.minecraft.client.gui.GuiChat

  public void readData(LPDataInputStream data) throws IOException {}
 
  @Override
  @ClientSideOnlyMethodContent
  public void processPacket(EntityPlayer player) {
    FMLClientHandler.instance().getClient().displayGuiScreen(new GuiChat());
  }
View Full Code Here

Examples of net.minecraft.src.GuiChat

  public static void open(ScreenType type) {
    GuiScreen toOpen = null;
    StatFileWriter statfile = SpoutClient.getHandle().statFileWriter;
    switch(type) {
      case CHAT_SCREEN:
        toOpen = new GuiChat();
        break;
      case SLEEP_SCREEN:
        toOpen = new GuiSleepMP();
        break;
      case PLAYER_INVENTORY:
View Full Code Here

Examples of net.minecraft.src.GuiChat

            for (; gameSettings.keyBindInventory.isPressed(); displayGuiScreen(new GuiInventory(thePlayer))) { }

            for (; gameSettings.keyBindDrop.isPressed(); thePlayer.dropOneItem()) { }

            for (; isMultiplayerWorld() && gameSettings.keyBindChat.isPressed(); displayGuiScreen(new GuiChat())) { }

            if (isMultiplayerWorld() && currentScreen == null && (Keyboard.isKeyDown(53) || Keyboard.isKeyDown(181)))
            {
                displayGuiScreen(new GuiChat("/"));
            }

            if (thePlayer.isUsingItem())
            {
                if (!gameSettings.keyBindUseItem.pressed)
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.