Package com.flansmod.common.network

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


  }

  @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

Related Classes of com.flansmod.common.network.PacketBuyWeapon

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.