Package extracells.network.packet

Examples of extracells.network.packet.PacketBusFluidExport


  }

  @Override
  protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
  {
    PacketDispatcher.sendPacketToServer(new PacketBusFluidExport(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord, 0, player.username).makePacket());

    Minecraft.getMinecraft().renderEngine.bindTexture(guiTexture);

    if (tileentity != null)
    {
View Full Code Here


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

TOP

Related Classes of extracells.network.packet.PacketBusFluidExport

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.