Examples of PacketBuyWeapon


Examples of com.flansmod.common.network.PacketBuyWeapon

 
  /* Gun and armour box crafting methods */
  @Override
  public void buyGun(GunBoxType type, int gun)
  {
    FlansMod.getPacketHandler().sendToServer(new PacketBuyWeapon(type, 0, gun));
    FlansModClient.shootTimeLeft = FlansModClient.shootTimeRight = 10;
  }
View Full Code Here

Examples of com.flansmod.common.network.PacketBuyWeapon

  }

  @Override
  public void buyAmmo(GunBoxType box, int ammo, int type)
  {
    FlansMod.getPacketHandler().sendToServer(new PacketBuyWeapon(box, type, ammo));
    FlansModClient.shootTimeLeft = FlansModClient.shootTimeRight = 10;
  }
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.