Examples of onJumpingBreak()


Examples of lineage2.gameserver.model.Player.onJumpingBreak()

      return;
    }
    JumpWay way = activeChar.getCurrentJumpWay();
    if (way == null)
    {
      activeChar.onJumpingBreak();
      return;
    }
    JumpPoint point = way.getJumpPoint(_nextWayId);
    if (point == null)
    {
View Full Code Here

Examples of lineage2.gameserver.model.Player.onJumpingBreak()

      return;
    }
    JumpPoint point = way.getJumpPoint(_nextWayId);
    if (point == null)
    {
      activeChar.onJumpingBreak();
      return;
    }
    Location destLoc = point.getLocation();
    activeChar.broadcastPacketToOthers(new ExFlyMoveBroadcast(activeChar, 2, destLoc));
    activeChar.setLoc(destLoc);
View Full Code Here

Examples of lineage2.gameserver.model.Player.onJumpingBreak()

    activeChar.broadcastPacketToOthers(new ExFlyMoveBroadcast(activeChar, 2, destLoc));
    activeChar.setLoc(destLoc);
    JumpTrack track = activeChar.getCurrentJumpTrack();
    if (track == null)
    {
      activeChar.onJumpingBreak();
      return;
    }
    JumpWay nextWay = track.getWay(_nextWayId);
    if (nextWay == null)
    {
View Full Code Here

Examples of lineage2.gameserver.model.Player.onJumpingBreak()

      return;
    }
    JumpWay nextWay = track.getWay(_nextWayId);
    if (nextWay == null)
    {
      activeChar.onJumpingBreak();
      return;
    }
    activeChar.sendPacket(new ExFlyMove(activeChar.getObjectId(), nextWay.getPoints(), track.getId()));
    activeChar.setCurrentJumpWay(nextWay);
  }
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.