Examples of ClonePlayer


Examples of lineage2.gameserver.model.ClonePlayer

   * Method thinkActive.
   */
  @Override
  protected void thinkActive()
  {
    ClonePlayer actor = getActor();
    clearNextAction();
    if (actor.isFollowMode())
    {
      changeIntention(CtrlIntention.AI_INTENTION_FOLLOW, actor.getPlayer(), Config.FOLLOW_RANGE);
      thinkFollow();
    }
    super.thinkActive();
  }
View Full Code Here

Examples of lineage2.gameserver.model.ClonePlayer

   * @param damage int
   */
  @Override
  protected void onEvtAttacked(Creature attacker, int damage)
  {
    ClonePlayer actor = getActor();
    if ((attacker != null) && actor.getPlayer().isDead())
    {
      Attack(attacker, false, false);
    }
    super.onEvtAttacked(attacker, damage);
  }
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.