Examples of ExItemAuctionInfo


Examples of lineage2.gameserver.network.serverpackets.ExItemAuctionInfo

    NpcInstance broker = activeChar.getLastNpc();
    if ((auction == null) || (broker == null) || (broker.getNpcId() != _instanceId) || (activeChar.getDistance(broker.getX(), broker.getY()) > Creature.INTERACTION_DISTANCE))
    {
      return;
    }
    activeChar.sendPacket(new ExItemAuctionInfo(true, auction, instance.getNextAuction()));
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExItemAuctionInfo

        if (!player.getAndSetLastItemAuctionRequest())
        {
          player.sendPacket(Msg.THERE_ARE_NO_OFFERINGS_I_OWN_OR_I_MADE_A_BID_FOR);
          return;
        }
        player.sendPacket(new ExItemAuctionInfo(false, currentAuction, nextAuction));
      }
    }
    else
    {
      super.onBypassFeedback(player, command);
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.