Package l2p.gameserver.model.entity.vehicle

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


        case 0: // Free move
          if(airship.isDocked() || !airship.isArrived())
          {
            break;
          }
          airship.moveToLocation(airship.getLoc().setX(readD()).setY(readD()), 0, false);
          break;
        case 2: // Up
          if(airship.isDocked() || !airship.isArrived())
          {
            break;
View Full Code Here


          {
            break;
          }
          readD(); //?
          readD(); //?
          airship.moveToLocation(airship.getLoc().changeZ(100), 0, false);
          break;
        case 3: // Down
          if(airship.isDocked() || !airship.isArrived())
          {
            break;
View Full Code Here

          {
            break;
          }
          readD(); //?
          readD(); //?
          airship.moveToLocation(airship.getLoc().changeZ(-100), 0, false);
          break;
      }
    }
  }
}
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.