75 lines
2.4 KiB
Java
75 lines
2.4 KiB
Java
/*
|
|
* This file is part of the L2J Mobius project.
|
|
*
|
|
* 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 org.l2jmobius.gameserver.network.clientpackets;
|
|
|
|
import org.l2jmobius.commons.network.ReadablePacket;
|
|
import org.l2jmobius.gameserver.data.xml.VariationData;
|
|
import org.l2jmobius.gameserver.model.actor.Player;
|
|
import org.l2jmobius.gameserver.model.item.instance.Item;
|
|
import org.l2jmobius.gameserver.model.options.VariationFee;
|
|
import org.l2jmobius.gameserver.network.GameClient;
|
|
import org.l2jmobius.gameserver.network.SystemMessageId;
|
|
import org.l2jmobius.gameserver.network.serverpackets.ExPutIntensiveResultForVariationMake;
|
|
|
|
/**
|
|
* Fromat(ch) dd
|
|
* @author -Wooden-
|
|
*/
|
|
public class RequestConfirmRefinerItem extends AbstractRefinePacket
|
|
{
|
|
private int _targetItemObjId;
|
|
private int _refinerItemObjId;
|
|
|
|
@Override
|
|
public void read(ReadablePacket packet)
|
|
{
|
|
_targetItemObjId = packet.readInt();
|
|
_refinerItemObjId = packet.readInt();
|
|
}
|
|
|
|
@Override
|
|
public void run(GameClient client)
|
|
{
|
|
final Player player = client.getPlayer();
|
|
if (player == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
final Item targetItem = player.getInventory().getItemByObjectId(_targetItemObjId);
|
|
if (targetItem == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
final Item refinerItem = player.getInventory().getItemByObjectId(_refinerItemObjId);
|
|
if (refinerItem == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
final VariationFee fee = VariationData.getInstance().getFee(targetItem.getId(), refinerItem.getId());
|
|
if ((fee == null) || !isValid(player, targetItem, refinerItem))
|
|
{
|
|
player.sendPacket(SystemMessageId.THIS_IS_NOT_A_SUITABLE_ITEM);
|
|
return;
|
|
}
|
|
|
|
player.sendPacket(new ExPutIntensiveResultForVariationMake(_refinerItemObjId, refinerItem.getId(), 1));
|
|
}
|
|
}
|