Examples of StopMove


Examples of net.sf.l2j.gameserver.serverpackets.StopMove

   
    // Send a Server->Client packet ActionFailed to this L2PcInstance
    sendPacket(new ActionFailed());
   
    // Send a Server->Client packet StopMove to this L2PcInstance
    StopMove sm = new StopMove(getObjectId(), getX(), getY(), getZ(), getHeading());
    if (Config.DEBUG)
    {
      _log.fine("pickup pos: " + target.getX() + " " + target.getY() + " " + target.getZ());
    }
    sendPacket(sm);
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.StopMove

     * @see net.sf.l2j.gameserver.model.L2Character#doCast(net.sf.l2j.gameserver.model.L2Skill)
     */
    protected void sitCastAndFollow(L2Skill skill, L2Character target)
    {
    stopMove(null);
    broadcastPacket(new StopMove(this));
    getAI().setIntention(AI_INTENTION_IDLE);

    setTarget(target);
    doCast(skill);
    getAI().setIntention(CtrlIntention.AI_INTENTION_FOLLOW, _owner);
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.