Package lineage2.gameserver.model.items

Examples of lineage2.gameserver.model.items.ItemInstance.pickupMe()


      FlagItemAttachment attachment = item.getAttachment() instanceof FlagItemAttachment ? (FlagItemAttachment) item.getAttachment() : null;
      if (attachment != null)
      {
        return;
      }
      item.pickupMe();
    }
    if ((owner.getParty() == null) || (owner.getParty().getLootDistribution() == Party.ITEM_LOOTER))
    {
      getInventory().addItem(item);
      sendChanges();
View Full Code Here


      {
        if (pickupItem(item, Log.Pickup))
        {
          broadcastPacket(new GetItem(item, getObjectId()));
          broadcastPickUpMsg(item);
          item.pickupMe();
        }
      }
      else
      {
        getParty().distributeItem(this, item, null);
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.