Examples of ExFlyMoveBroadcast


Examples of lineage2.gameserver.network.serverpackets.ExFlyMoveBroadcast

    {
      activeChar.onJumpingBreak();
      return;
    }
    Location destLoc = point.getLocation();
    activeChar.broadcastPacketToOthers(new ExFlyMoveBroadcast(activeChar, 2, destLoc));
    activeChar.setLoc(destLoc);
    JumpTrack track = activeChar.getCurrentJumpTrack();
    if (track == null)
    {
      activeChar.onJumpingBreak();
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExFlyMoveBroadcast

    if (way == null)
    {
      return;
    }
    activeChar.sendPacket(new ExFlyMove(activeChar.getObjectId(), way.getPoints(), track.getId()));
    activeChar.broadcastPacketToOthers(new ExFlyMoveBroadcast(activeChar, 2, destLoc));
    activeChar.setVar("@safe_jump_loc", activeChar.getLoc().toXYZString(), -1);
    activeChar.setCurrentJumpTrack(track);
    activeChar.setCurrentJumpWay(way);
  }
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.