Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.RequestConfirmCancelItem

package l2p.gameserver.clientpackets;

import l2p.gameserver.cache.Msg;
import l2p.gameserver.model.L2Player;
import l2p.gameserver.model.items.L2ItemInstance;
import l2p.gameserver.serverpackets.ExPutItemResultForVariationCancel;

public class RequestConfirmCancelItem extends L2GameClientPacket
{
  // format: (ch)d
  int _itemId;

  @Override
  public void readImpl()
  {
    _itemId = readD();
  }

  @Override
  public void runImpl()
  {
    L2Player activeChar = getClient().getActiveChar();
    L2ItemInstance item = activeChar.getInventory().getItemByObjectId(_itemId);
    if(item == null)
    {
      activeChar.sendActionFailed();
      return;
    }
    if(!item.isAugmented())
    {
      activeChar.sendPacket(Msg.AUGMENTATION_REMOVAL_CAN_ONLY_BE_DONE_ON_AN_AUGMENTED_ITEM);
      return;
    }
    activeChar.sendPacket(new ExPutItemResultForVariationCancel(_itemId, RequestRefineCancel.getRemovalPrice(item.getItem())));
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.RequestConfirmCancelItem

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.