Examples of CtrlIntention


Examples of com.l2jfrozen.gameserver.ai.CtrlIntention

        {
          continue;
        }

        // Only move monsters that are idle or doing their usual functions.
        CtrlIntention currIntention = festivalMob.getAI().getIntention();

        if(currIntention != CtrlIntention.AI_INTENTION_IDLE && currIntention != CtrlIntention.AI_INTENTION_ACTIVE)
        {
          continue;
        }
View Full Code Here

Examples of l2p.gameserver.ai.CtrlIntention

  @Override
  public final void methodInvoked(MethodEvent e)
  {
    AbstractAISetIntention event = (AbstractAISetIntention) e;
    AbstractAI ai = event.getOwner();
    CtrlIntention evt = (CtrlIntention) event.getArgs()[0];
    Object arg0 = event.getArgs()[1];
    Object arg1 = event.getArgs()[2];
    SetIntention(ai, evt, arg0, arg1);
  }
View Full Code Here

Examples of l2p.gameserver.ai.CtrlIntention

  }

  @Override
  public void checkAggression(L2Character target)
  {
    CtrlIntention curIntention = getIntention();
    super.checkAggression(target);
    if(curIntention != CtrlIntention.AI_INTENTION_ACTIVE || getIntention() != CtrlIntention.AI_INTENTION_ATTACK)
    {
      return;
    }
View Full Code Here

Examples of net.sf.l2j.gameserver.ai.CtrlIntention

            {
                if (festivalMob.isDead())
                    continue;

                // Only move monsters that are idle or doing their usual functions.
                CtrlIntention currIntention = festivalMob.getAI().getIntention();

                if (currIntention != CtrlIntention.AI_INTENTION_IDLE && currIntention != CtrlIntention.AI_INTENTION_ACTIVE)
                    continue;

                int x = _startLocation._x;
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.