Examples of stopImmobilized()


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

        pleader = l.getPlayer();
      }
    }
    if (pleader != null)
    {
      pleader.stopImmobilized();
      pleader.getEffectList().stopEffect(4082);
    }
    for (Player pl : st.getPlayer().getClan().getOnlineMembers(st.getPlayer().getClan().getLeaderId()))
    {
      if ((pl != null) && (pl.getQuestState(getName()) != null))
View Full Code Here

Examples of lineage2.gameserver.model.instances.NpcInstance.stopImmobilized()

    if (_notUsedTransform && (actor.getCurrentHpPercents() < 50))
    {
      if (_immobilized)
      {
        _immobilized = false;
        actor.stopImmobilized();
      }
      _notUsedTransform = false;
      clearTasks();
      spawnTraps();
      actor.abortAttack(true, false);
View Full Code Here

Examples of lineage2.gameserver.model.instances.NpcInstance.stopImmobilized()

      busyTimeout = 0;
      idleTimeout = System.currentTimeMillis() + (Rnd.get(3 * 60, 5 * 60) * 1000L);
      if (isImmobilized)
      {
        isImmobilized = false;
        actor.stopImmobilized();
        actor.setNpcState(3);
        actor.setRHandId(0);
        actor.broadcastCharInfo();
      }
    }
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.