Examples of callFriends()


Examples of l2p.gameserver.model.instances.L2NpcInstance.callFriends()

    {
      L2Character attacker = L2ObjectsStorage.getAsCharacter(_attacker);
      if(attacker != null)
      {
        Functions.npcSay(actor, flood2[Rnd.get(flood2.length)]);
        actor.callFriends(attacker, 100);
        ThreadPoolManager.getInstance().executeAi(new NotifyFactionTask(actor, attacker, 100), false);
      }
      isSearching = false;
      notifyEvent(CtrlEvent.EVT_AGGRESSION, attacker, 100);
    }
View Full Code Here

Examples of l2p.gameserver.model.instances.L2NpcInstance.callFriends()

        {
          qs.getQuest().notifyAttack(actor, qs);
        }
      }
    }
    actor.callFriends(attacker, damage);
  }

  @Override
  protected void onEvtAggression(L2Character attacker, int aggro)
  {
View Full Code Here

Examples of l2p.gameserver.model.instances.L2NpcInstance.callFriends()

      return;
    }
    // 18367 не отвечают на атаку, но зовут друзей
    if(actor.getNpcId() == 18367)
    {
      actor.callFriends(attacker, damage);
      return;
    }
    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.