Examples of CtrlEvent


Examples of l2p.gameserver.ai.CtrlEvent

  @Override
  public final void methodInvoked(MethodEvent e)
  {
    AbstractAINotifyEvent event = (AbstractAINotifyEvent) e;
    AbstractAI ai = event.getOwner();
    CtrlEvent evt = (CtrlEvent) event.getArgs()[0];
    NotifyEvent(ai, evt, (Object[]) event.getArgs()[1]);
  }
View Full Code Here

Examples of lineage2.gameserver.ai.CtrlEvent

        setLoc(dest, true);
      }
    }
    if (_targetRecorder.isEmpty())
    {
      CtrlEvent ctrlEvent = isFollow ? CtrlEvent.EVT_ARRIVED_TARGET : CtrlEvent.EVT_ARRIVED;
      stopMove(false, true);
      ThreadPoolManager.getInstance().execute(new NotifyAITask(this, ctrlEvent));
      return;
    }
    moveList = _targetRecorder.remove(0);
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.