Package lineage2.gameserver.model.AggroList

Examples of lineage2.gameserver.model.AggroList.AggroInfo


          continue;
        }
        Player player = (Player) target;
        for (NpcInstance npc : World.getAroundNpc(activeChar, getSkillRadius(), getSkillRadius()))
        {
          AggroInfo ai = npc.getAggroList().get(activeChar);
          if (ai == null)
          {
            continue;
          }
          npc.getAggroList().addDamageHate(player, 0, ai.hate);
View Full Code Here


      if (actor.isMonster() && target.isInZonePeace())
      {
        return false;
      }
    }
    AggroInfo ai = actor.getAggroList().get(target);
    if ((ai != null) && (ai.hate > 0))
    {
      if (!target.isInRangeZ(actor.getSpawnedLoc(), MAX_PURSUE_RANGE))
      {
        return false;
View Full Code Here

    {
      return true;
    }
    if (getIntention() == CtrlIntention.AI_INTENTION_ATTACK)
    {
      AggroInfo ai = actor.getAggroList().get(target);
      if (ai != null)
      {
        if (hided)
        {
          ai.hate = 0;
View Full Code Here

    if ((_pathfindFails >= getMaxPathfindFails()) && (System.currentTimeMillis() > ((getAttackTimeout() - getMaxAttackTimeout()) + getTeleportTimeout())) && actor.isInRange(target, MAX_PURSUE_RANGE))
    {
      _pathfindFails = 0;
      if (target.isPlayable())
      {
        AggroInfo hate = actor.getAggroList().get(target);
        if ((hate == null) || (hate.hate < 100))
        {
          returnHome();
          return false;
        }
View Full Code Here

  public boolean canAttackCharacter(Creature target)
  {
    NpcInstance actor = getActor();
    if (getIntention() == CtrlIntention.AI_INTENTION_ATTACK)
    {
      AggroInfo ai = actor.getAggroList().get(target);
      return (ai != null) && (ai.hate > 0);
    }
    return target.isMonster() || target.isPlayable();
  }
View Full Code Here

  {
    final NpcInstance actor = getActor();
    final Creature cha = actor.getAggroList().getMostHated();
    if (cha != null)
    {
      final AggroInfo ai = actor.getAggroList().get(cha);
      if (ai != null)
      {
        return ai.hate;
      }
    }
View Full Code Here

    {
      teleportHome();
      return false;
    }
    clearTasks();
    Creature target = prepareTarget();
    if (target == null)
    {
      return false;
    }
    if (!BaiumManager.getZone().checkIfInZone(target))
View Full Code Here

      kama.addKilledKanabion(type);
      spawnPossible = kama.isSpawnPossible();
    }
    if (spawnPossible && (nextId > 0))
    {
      Creature player = null;
      if (!killer.isPlayer())
      {
        for (Player pl : World.getAroundPlayers(actor))
        {
          player = pl;
View Full Code Here

  {
    if (param.length < 4)
    {
      throw new IllegalArgumentException();
    }
    final Player player = getSelf();
    if (player == null)
    {
      return;
    }
    final long price = Long.parseLong(param[param.length - 1]);
    if (!NpcInstance.canBypassCheck(player, player.getLastNpc()))
    {
      return;
    }
    if ((price > 0) && (player.getAdena() < price))
    {
      player.sendPacket(Msg.YOU_DO_NOT_HAVE_ENOUGH_ADENA);
      return;
    }
    if (player.getMountType() == 2)
    {
      player.sendMessage("Телепортаци�? верхом на виверне невозможна.");
      return;
    }
    if (player.getLastNpc() != null)
    {
      final int npcId = player.getLastNpc().getNpcId();
      switch (npcId)
      {
        case 30483:
          if (player.getLevel() >= Config.CRUMA_GATEKEEPER_LVL)
          {
            show("teleporter/30483-no.htm", player);
            return;
          }
          break;
        case 32864:
        case 32865:
        case 32866:
        case 32867:
        case 32868:
        case 32869:
        case 32870:
          if (player.getLevel() < 80)
          {
            show("teleporter/" + npcId + "-no.htm", player);
            return;
          }
          break;
      }
    }
    final int x = Integer.parseInt(param[0]);
    final int y = Integer.parseInt(param[1]);
    final int z = Integer.parseInt(param[2]);
    final int castleId = (param.length > 4) ? Integer.parseInt(param[3]) : 0;
    if (player.getReflection().isDefault())
    {
      final Castle castle = (castleId > 0) ? ResidenceHolder.getInstance().getResidence(Castle.class, castleId) : null;
      if ((castle != null) && castle.getSiegeEvent().isInProgress())
      {
        player.sendPacket(Msg.YOU_CANNOT_TELEPORT_TO_A_VILLAGE_THAT_IS_IN_A_SIEGE);
        return;
      }
    }
    final Location pos = Location.findPointToStay(x, y, z, 50, 100, player.getGeoIndex());
    if (price > 0)
    {
      player.reduceAdena(price, true);
    }
    player.teleToLocation(pos);
  }
View Full Code Here

  {
    if (param.length < 5)
    {
      throw new IllegalArgumentException();
    }
    final Player player = getSelf();
    if (player == null)
    {
      return;
    }
    final long count = Long.parseLong(param[3]);
    final int item = Integer.parseInt(param[4]);
    if (!NpcInstance.canBypassCheck(player, player.getLastNpc()))
    {
      return;
    }
    if (count > 0)
    {
      if (!player.getInventory().destroyItemByItemId(item, count))
      {
        player.sendPacket(Msg.YOU_DO_NOT_HAVE_ENOUGH_REQUIRED_ITEMS);
        return;
      }
      player.sendPacket(SystemMessage2.removeItems(item, count));
    }
    final int x = Integer.parseInt(param[0]);
    final int y = Integer.parseInt(param[1]);
    final int z = Integer.parseInt(param[2]);
    final Location pos = Location.findPointToStay(x, y, z, 20, 70, player.getGeoIndex());
    player.teleToLocation(pos);
  }
View Full Code Here

TOP

Related Classes of lineage2.gameserver.model.AggroList.AggroInfo

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.