Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.RequestConfirmGemStone

package l2p.gameserver.clientpackets;

import l2p.gameserver.cache.Msg;
import l2p.gameserver.model.L2Player;
import l2p.gameserver.model.items.L2ItemInstance;
import l2p.gameserver.serverpackets.ExPutCommissionResultForVariationMake;
import l2p.gameserver.templates.L2Item.Grade;

public class RequestConfirmGemStone extends L2GameClientPacket
{
  private static final int GEMSTONE_D = 2130;
  private static final int GEMSTONE_C = 2131;
  private static final int GEMSTONE_B = 2132;
  // format: (ch)dddd
  private int _targetItemObjId;
  private int _refinerItemObjId;
  private int _gemstoneItemObjId;
  private long _gemstoneCount;

  @Override
  public void readImpl()
  {
    _targetItemObjId = readD();
    _refinerItemObjId = readD();
    _gemstoneItemObjId = readD();
    _gemstoneCount = readQ();
  }

  @Override
  public void runImpl()
  {
    if(_gemstoneCount <= 0)
    {
      return;
    }
    L2Player activeChar = getClient().getActiveChar();
    L2ItemInstance targetItem = activeChar.getInventory().getItemByObjectId(_targetItemObjId);
    L2ItemInstance refinerItem = activeChar.getInventory().getItemByObjectId(_refinerItemObjId);
    L2ItemInstance gemstoneItem = activeChar.getInventory().getItemByObjectId(_gemstoneItemObjId);
    if(targetItem == null || refinerItem == null || gemstoneItem == null)
    {
      activeChar.sendPacket(Msg.THIS_IS_NOT_A_SUITABLE_ITEM);
      return;
    }
    int gemstoneItemId = gemstoneItem.getItem().getItemId();
    if(gemstoneItemId != GEMSTONE_D && gemstoneItemId != GEMSTONE_C && gemstoneItemId != GEMSTONE_B)
    {
      activeChar.sendPacket(Msg.THIS_IS_NOT_A_SUITABLE_ITEM);
      return;
    }
    boolean isAccessoryLifeStone = refinerItem.isAccessoryLifeStone();
    if(!targetItem.canBeAugmented(activeChar, isAccessoryLifeStone))
    {
      activeChar.sendPacket(Msg.THIS_IS_NOT_A_SUITABLE_ITEM);
      return;
    }
    if(!isAccessoryLifeStone && !refinerItem.isLifeStone())
    {
      activeChar.sendPacket(Msg.THIS_IS_NOT_A_SUITABLE_ITEM);
      return;
    }
    Grade itemGrade = targetItem.getItem().getItemGrade();
    if(isAccessoryLifeStone)
    {
      switch(itemGrade)
      {
        case C:
          if(_gemstoneCount != 200 || gemstoneItemId != GEMSTONE_D)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case B:
          if(_gemstoneCount != 300 || gemstoneItemId != GEMSTONE_D)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case A:
          if(_gemstoneCount != 200 || gemstoneItemId != GEMSTONE_C)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case S:
          if(_gemstoneCount != 250 || gemstoneItemId != GEMSTONE_C)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case S80:
          if(_gemstoneCount != 250 || gemstoneItemId != GEMSTONE_B)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case S84:
          if(_gemstoneCount != 250 || gemstoneItemId != GEMSTONE_B)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
      }
    }
    else
    {
      switch(itemGrade)
      {
        case C:
          if(_gemstoneCount != 20 || gemstoneItemId != GEMSTONE_D)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case B:
          if(_gemstoneCount != 30 || gemstoneItemId != GEMSTONE_D)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case A:
          if(_gemstoneCount != 20 || gemstoneItemId != GEMSTONE_C)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case S:
          if(_gemstoneCount != 25 || gemstoneItemId != GEMSTONE_C)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case S80:
          // Icarus
          if(targetItem.getItem().getCrystalCount() == 10394 && (_gemstoneCount != 36 || gemstoneItemId != GEMSTONE_B))
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          // Dynasty
          else if(_gemstoneCount != 28 || gemstoneItemId != GEMSTONE_B)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
        case S84:
          if(_gemstoneCount != 36 || gemstoneItemId != GEMSTONE_B)
          {
            activeChar.sendPacket(Msg.GEMSTONE_QUANTITY_IS_INCORRECT);
            return;
          }
          break;
      }
    }
    activeChar.sendPacket(new ExPutCommissionResultForVariationMake(_gemstoneItemObjId, _gemstoneCount), Msg.PRESS_THE_AUGMENT_BUTTON_TO_BEGIN);
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.RequestConfirmGemStone

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.