Examples of applyOffset()


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

        {
          if (!checkCondition(activeChar, requestor) || !checkCondition(requestor, activeChar))
          {
            return;
          }
          Location loc = requestor.applyOffset(activeChar.getLoc(), 25);
          loc = GeoEngine.moveCheck(requestor.getX(), requestor.getY(), requestor.getZ(), loc.x, loc.y, requestor.getGeoIndex());
          requestor.moveToLocation(loc, 0, false);
          requestor.getAI().setNextAction(PlayableAI.nextAction.COUPLE_ACTION, activeChar, _actionId, true, false);
        }
        finally
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.