/* * 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 <http://www.gnu.org/licenses/>. */ package com.l2jserver.gameserver.network.serverpackets; import com.l2jserver.gameserver.model.Elementals; import com.l2jserver.gameserver.model.L2ItemInstance; /** * @author Kerberos */ public class ExChooseInventoryAttributeItem extends L2GameServerPacket { private int _itemId; private byte _atribute; private int _level; public ExChooseInventoryAttributeItem(L2ItemInstance item) { _itemId = item.getItemId(); _atribute = Elementals.getItemElement(_itemId); if (_atribute == Elementals.NONE) throw new IllegalArgumentException("Undefined Atribute item: "+ item); _level = Elementals.getMaxElementLevel(_itemId); } @Override protected void writeImpl() { writeC(0xfe); writeH(0x62); writeD(_itemId); // Structure for now // Must be 0x01 for stone/crystal attribute type writeD(_atribute == Elementals.FIRE ? 1 : 0); // Fire writeD(_atribute == Elementals.WATER ? 1 : 0); // Water writeD(_atribute == Elementals.WIND ? 1 : 0); // Wind writeD(_atribute == Elementals.EARTH ? 1 : 0); // Earth writeD(_atribute == Elementals.HOLY ? 1 : 0); // Holy writeD(_atribute == Elementals.DARK ? 1 : 0); // Unholy writeD(_level); // Item max attribute level } @Override public final String getType() { return "[S] FE:62 ExChooseInventoryAttributeItem"; } }