123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * L2J Server is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.network.clientpackets;
- import com.l2jserver.gameserver.model.Elementals;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.items.L2Weapon;
- import com.l2jserver.gameserver.model.items.instance.L2ItemInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.ExBaseAttributeCancelResult;
- import com.l2jserver.gameserver.network.serverpackets.InventoryUpdate;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- import com.l2jserver.gameserver.network.serverpackets.UserInfo;
- public class RequestExRemoveItemAttribute extends L2GameClientPacket
- {
- private static final String _C__D0_23_REQUESTEXREMOVEITEMATTRIBUTE = "[C] D0:23 RequestExRemoveItemAttribute";
-
- private int _objectId;
- private long _price;
- private byte _element;
-
- public RequestExRemoveItemAttribute()
- {
- }
-
- @Override
- public void readImpl()
- {
- _objectId = readD();
- _element = (byte) readD();
- }
-
- @Override
- public void runImpl()
- {
- L2PcInstance activeChar = getClient().getActiveChar();
- if (activeChar == null)
- {
- return;
- }
-
- L2ItemInstance targetItem = activeChar.getInventory().getItemByObjectId(_objectId);
-
- if (targetItem == null)
- {
- return;
- }
-
- if ((targetItem.getElementals() == null) || (targetItem.getElemental(_element) == null))
- {
- return;
- }
-
- if (activeChar.reduceAdena("RemoveElement", getPrice(targetItem), activeChar, true))
- {
- if (targetItem.isEquipped())
- {
- targetItem.getElemental(_element).removeBonus(activeChar);
- }
- targetItem.clearElementAttr(_element);
- activeChar.sendPacket(new UserInfo(activeChar));
-
- InventoryUpdate iu = new InventoryUpdate();
- iu.addModifiedItem(targetItem);
- activeChar.sendPacket(iu);
- SystemMessage sm;
- byte realElement = targetItem.isArmor() ? Elementals.getOppositeElement(_element) : _element;
- if (targetItem.getEnchantLevel() > 0)
- {
- if (targetItem.isArmor())
- {
- sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_S3_ATTRIBUTE_REMOVED_RESISTANCE_TO_S4_DECREASED);
- }
- else
- {
- sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_ELEMENTAL_POWER_REMOVED);
- }
- sm.addInt(targetItem.getEnchantLevel());
- sm.addItemName(targetItem);
- if (targetItem.isArmor())
- {
- sm.addElemental(realElement);
- sm.addElemental(Elementals.getOppositeElement(realElement));
- }
- }
- else
- {
- if (targetItem.isArmor())
- {
- sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_ATTRIBUTE_REMOVED_RESISTANCE_S3_DECREASED);
- }
- else
- {
- sm = SystemMessage.getSystemMessage(SystemMessageId.S1_ELEMENTAL_POWER_REMOVED);
- }
- sm.addItemName(targetItem);
- if (targetItem.isArmor())
- {
- sm.addElemental(realElement);
- sm.addElemental(Elementals.getOppositeElement(realElement));
- }
- }
- activeChar.sendPacket(sm);
- activeChar.sendPacket(new ExBaseAttributeCancelResult(targetItem.getObjectId(), _element));
- }
- else
- {
- activeChar.sendPacket(SystemMessageId.YOU_DO_NOT_HAVE_ENOUGH_FUNDS_TO_CANCEL_ATTRIBUTE);
- }
- }
-
- private long getPrice(L2ItemInstance item)
- {
- switch (item.getItem().getCrystalType())
- {
- case S:
- if (item.getItem() instanceof L2Weapon)
- {
- _price = 50000;
- }
- else
- {
- _price = 40000;
- }
- break;
- case S80:
- if (item.getItem() instanceof L2Weapon)
- {
- _price = 100000;
- }
- else
- {
- _price = 80000;
- }
- break;
- case S84:
- if (item.getItem() instanceof L2Weapon)
- {
- _price = 200000;
- }
- else
- {
- _price = 160000;
- }
- break;
- }
-
- return _price;
- }
-
- @Override
- public String getType()
- {
- return _C__D0_23_REQUESTEXREMOVEITEMATTRIBUTE;
- }
- }
|