Package l2p.gameserver.model.entity.vehicle

Examples of l2p.gameserver.model.entity.vehicle.L2AirShip.begin()


          AirShipDock curAD = AirShipDocksTable.getInstance().getAirShipDockByNpcId(currentDockNpcId);
          if(curAD.getId() == dockID)
          {
            airship.SetTrajet1(curAD.getDepartureTrajetId(), 0, null, null);
            airship._cycle = 1;
            airship.begin();
          }
          else
          {
            airship.SetTrajet1(curAD.getDepartureTrajetId(), 0, null, null);
            L2VehiclePoint bp = new L2VehiclePoint();
View Full Code Here


              activeChar.sendMessage("Not enough EP."); // TODO правильное сообщение
              return;
            }
            airship.getTrajet1().addPathPoint(bp);
            airship._cycle = 1;
            airship.begin();
            airship.setFuel(airship.getFuel() - destAD.getFuel());
          }
          break;
        case 0: // Free move
          if(airship.isDocked() || !airship.isArrived())
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.