Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2Character.stopMove()


    L2Character actor = getActor();
    if(actor == null)
    {
      return;
    }
    actor.stopMove(validate);
  }

  /**
   * Останавливает движение и рассылает ValidateLocation
   */
 
View Full Code Here


    L2Character actor = getActor();
    if(actor == null)
    {
      return;
    }
    actor.stopMove();
  }

  public L2Character getActor()
  {
    return L2ObjectsStorage.getAsCharacter(_actor);
View Full Code Here

      Location loc = ((L2Player) actor).getLastServerPosition();
      if(loc != null)
      {
        actor.setLoc(loc, true);
      }
      actor.stopMove();
    }
    onEvtThink();
  }

  @Override
View Full Code Here

    L2Character actor = getActor();
    if(actor != null)
    {
      actor.abortAttack(true, true);
      actor.abortCast(true);
      actor.stopMove();
      actor.broadcastPacket(new Die(actor));
    }
    setIntention(CtrlIntention.AI_INTENTION_IDLE);
  }
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.