Examples of onBypassFeedback()


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

      addItem(p, ThirdMark, 1); // Premium Caravan Certificate
      addItem(p, MapofHellbound, 1); // Map of Hellbound
    }
    else
    {
      n.onBypassFeedback(p, "Chat 4");
    }
  }

  public void tradeAntiHeatBottle()
  {
View Full Code Here

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

  {
    L2Player p = (L2Player) getSelf();
    L2NpcInstance n = getNpc();
    if(getItemCount(p, SecondMark) == 0 && getItemCount(p, ThirdMark) == 0 && getItemCount(p, ForthMark) == 0) // нет второй или выше марки
    {
      n.onBypassFeedback(p, "Chat 1");
      return;
    }
    n.onBypassFeedback(p, "Multisell 250980014");
  }
View Full Code Here

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

    if(getItemCount(p, SecondMark) == 0 && getItemCount(p, ThirdMark) == 0 && getItemCount(p, ForthMark) == 0) // нет второй или выше марки
    {
      n.onBypassFeedback(p, "Chat 1");
      return;
    }
    n.onBypassFeedback(p, "Multisell 250980014");
  }

  public void tradeS80()
  {
    L2Player p = (L2Player) getSelf();
View Full Code Here

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

  {
    L2Player p = (L2Player) getSelf();
    L2NpcInstance n = getNpc();
    if(getItemCount(p, ThirdMark) == 0 && getItemCount(p, ForthMark) == 0) // нет третьей или выше марки
    {
      n.onBypassFeedback(p, "Chat 1");
      return;
    }
    n.onBypassFeedback(p, "Multisell 250980013");
  }
View Full Code Here

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

    if(getItemCount(p, ThirdMark) == 0 && getItemCount(p, ForthMark) == 0) // нет третьей или выше марки
    {
      n.onBypassFeedback(p, "Chat 1");
      return;
    }
    n.onBypassFeedback(p, "Multisell 250980013");
  }

  public void craftNativeHelmet()
  {
    L2Player p = (L2Player) getSelf();
View Full Code Here

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

  {
    L2Player p = (L2Player) getSelf();
    L2NpcInstance n = getNpc();
    if(getItemCount(p, FirstMark) == 0 && getItemCount(p, SecondMark) == 0 && getItemCount(p, ThirdMark) == 0 && getItemCount(p, ForthMark) == 0) // нет марки
    {
      n.onBypassFeedback(p, "Chat 2");
      return;
    }
    if(getItemCount(p, DarionsBadge) >= 10)
    {
      removeItem(p, DarionsBadge, 10); // Darion's Badge
View Full Code Here

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

      removeItem(p, DarionsBadge, 10); // Darion's Badge
      addItem(p, NativeHelmet, 1); // Native Helmet
    }
    else
    {
      n.onBypassFeedback(p, "Chat 3");
    }
  }

  public void craftNativeTunic()
  {
View Full Code Here

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

  {
    L2Player p = (L2Player) getSelf();
    L2NpcInstance n = getNpc();
    if(getItemCount(p, FirstMark) == 0 && getItemCount(p, SecondMark) == 0 && getItemCount(p, ThirdMark) == 0 && getItemCount(p, ForthMark) == 0) // нет марки
    {
      n.onBypassFeedback(p, "Chat 2");
      return;
    }
    if(getItemCount(p, DarionsBadge) >= 10)
    {
      removeItem(p, DarionsBadge, 10); // Darion's Badge
View Full Code Here

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

      removeItem(p, DarionsBadge, 10); // Darion's Badge
      addItem(p, NativeTunic, 1); // Native Tunic
    }
    else
    {
      n.onBypassFeedback(p, "Chat 3");
    }
  }

  public void craftNativePants()
  {
View Full Code Here

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

  {
    L2Player p = (L2Player) getSelf();
    L2NpcInstance n = getNpc();
    if(getItemCount(p, FirstMark) == 0 && getItemCount(p, SecondMark) == 0 && getItemCount(p, ThirdMark) == 0 && getItemCount(p, ForthMark) == 0) // нет марки
    {
      n.onBypassFeedback(p, "Chat 2");
      return;
    }
    if(getItemCount(p, DarionsBadge) >= 10)
    {
      removeItem(p, DarionsBadge, 10); // Darion's Badge
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.