Package l2p.gameserver.model.L2ObjectTasks

Examples of l2p.gameserver.model.L2ObjectTasks.NotifyAITask


        {
          sendPacket(new SetupGauge(SetupGauge.RED, reuse));
          _attackReuseEndTime = reuse + System.currentTimeMillis() - 75;
          if(reuse > sAtk)
          {
            ThreadPoolManager.getInstance().scheduleAi(new NotifyAITask(this, CtrlEvent.EVT_READY_TO_ACT, null, null), reuse, isPlayable());
          }
        }
      }
      ssGrade = weaponItem.getCrystalType().externalOrdinal;
    }
View Full Code Here


    }
    setMassUpdating(false);
    sendChanges();
    updateEffectIcons();
    broadcastStatusUpdate();
    ThreadPoolManager.getInstance().executeGeneral(new NotifyAITask(this, CtrlEvent.EVT_DEAD, killer, null));
    Object[] script_args = new Object[]
    {
      this, killer
    };
    for(ScriptClassAndMethod handler : ScriptManager.onDie)
View Full Code Here

        isMoving = false;
        destination = null;
        if(isFollow)
        {
          isFollow = false;
          ThreadPoolManager.getInstance().executeAi(new NotifyAITask(this, CtrlEvent.EVT_ARRIVED_TARGET, null, null), isPlayable());
        }
        else
        {
          ThreadPoolManager.getInstance().executeAi(new NotifyAITask(this, CtrlEvent.EVT_ARRIVED, null, null), isPlayable());
        }
        validateLocation(isPlayer() ? 2 : 1);
        return;
      }
      moveList = _targetRecorder.remove(0);
View Full Code Here

TOP

Related Classes of l2p.gameserver.model.L2ObjectTasks.NotifyAITask

Copyright © 2018 www.massapicom. 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.