Package extracells.network.packet

Examples of extracells.network.packet.PacketBusFluidImport


  }

  @Override
  protected void drawGuiContainerForegroundLayer(int sizeX, int sizeY)
  {
    PacketDispatcher.sendPacketToServer(new PacketBusFluidImport(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord, 0, player.username).makePacket());
    Minecraft.getMinecraft().renderEngine.bindTexture(guiTexture);

    if (tileentity != null)
    {
      WidgetRedstoneModes redstoneSwitch = (WidgetRedstoneModes) buttonList.get(0);
View Full Code Here


  public void actionPerformed(GuiButton button)
  {
    switch (button.id)
    {
    case 0:
      PacketDispatcher.sendPacketToServer(new PacketBusFluidImport(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord, 1, player.username).makePacket());
      break;
    case 1:
      PacketDispatcher.sendPacketToServer(new PacketBusFluidImport(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord, 2, player.username).makePacket());
      break;
    default:
    }
  }
View Full Code Here

TOP

Related Classes of extracells.network.packet.PacketBusFluidImport

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.