/* * This program 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. * * This program 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 . */ package com.l2jserver.gameserver.network.serverpackets; import com.l2jserver.gameserver.model.L2ItemInstance; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.templates.item.L2Item; import com.l2jserver.gameserver.templates.item.L2Weapon; public class ExShowBaseAttributeCancelWindow extends L2GameServerPacket { private static final String _S__FE_74_EXCSHOWBASEATTRIBUTECANCELWINDOW = "[S] FE:74 ExShowBaseAttributeCancelWindow"; private L2ItemInstance[] _items; private long _price; public ExShowBaseAttributeCancelWindow(L2PcInstance player) { _items = player.getInventory().getElementItems(); } @Override protected void writeImpl() { writeC(0xfe); writeH(0x74); writeD(_items.length); for (L2ItemInstance item : _items) { writeD(item.getObjectId()); writeQ(getPrice(item)); } } private long getPrice(L2ItemInstance item) { switch(item.getItem().getCrystalType()) { case L2Item.CRYSTAL_S: if (item.getItem() instanceof L2Weapon) _price = 50000; else _price = 40000; break; case L2Item.CRYSTAL_S80: if (item.getItem() instanceof L2Weapon) _price = 100000; else _price = 80000; break; case L2Item.CRYSTAL_S84: if (item.getItem() instanceof L2Weapon) _price = 200000; else _price = 160000; break; } return _price; } @Override public String getType() { return _S__FE_74_EXCSHOWBASEATTRIBUTECANCELWINDOW; } }