Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.GetOnVehicle


        {
          packets.add(new ExGetOnAirShip(activeChar, (L2AirShip) activeChar.getVehicle(), activeChar.getInVehiclePosition()));
        }
        else
        {
          packets.add(new GetOnVehicle(activeChar, (L2Ship) activeChar.getVehicle(), activeChar.getInVehiclePosition()));
        }
      }
      if(activeChar.isMoving || activeChar.isFollow)
      {
        packets.add(new CharMoveToLocation(activeChar));
View Full Code Here


    }
    activeChar.stopMove();
    activeChar.setVehicle(boat);
    activeChar.setInVehiclePosition(loc);
    activeChar.setLoc(boat.getLoc());
    activeChar.broadcastPacket(new GetOnVehicle(activeChar, boat, loc));
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.GetOnVehicle

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.