Examples of PacketLevelEmitterFluid


Examples of extracells.network.packet.PacketLevelEmitterFluid

      break;
    case 5:
      modifyAmount(+100);
      break;
    case 6:
      PacketDispatcher.sendPacketToServer(new PacketLevelEmitterFluid(tileentity.worldObj, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord).makePacket());
      break;

    }
  }
View Full Code Here

Examples of extracells.network.packet.PacketLevelEmitterFluid

  public void modifyAmount(long amount)
  {
    if (Keyboard.isKeyDown(Keyboard.KEY_LSHIFT))
      amount *= 100;
    PacketDispatcher.sendPacketToServer(new PacketLevelEmitterFluid(tileentity.worldObj, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord, amount).makePacket());
  }
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.