Addition of MultisellSuccess packet.
Contributed by Index.
This commit is contained in:
		| @@ -44,6 +44,7 @@ import org.l2jmobius.gameserver.model.itemcontainer.PlayerInventory; | ||||
| import org.l2jmobius.gameserver.network.GameClient; | ||||
| import org.l2jmobius.gameserver.network.PacketLogger; | ||||
| import org.l2jmobius.gameserver.network.SystemMessageId; | ||||
| import org.l2jmobius.gameserver.network.serverpackets.ExMultiSellResult; | ||||
| import org.l2jmobius.gameserver.network.serverpackets.ExPCCafePointInfo; | ||||
| import org.l2jmobius.gameserver.network.serverpackets.InventoryUpdate; | ||||
| import org.l2jmobius.gameserver.network.serverpackets.SystemMessage; | ||||
| @@ -596,6 +597,7 @@ public class MultiSellChoose implements ClientPacket | ||||
| 					 | ||||
| 					// Inventory update. | ||||
| 					iu.addItem(addedItem); | ||||
| 					player.sendPacket(new ExMultiSellResult(1, 0, (int) (addedItem.getCount()))); | ||||
| 				} | ||||
| 			} | ||||
| 			 | ||||
|   | ||||
| @@ -0,0 +1,45 @@ | ||||
| /* | ||||
|  * 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.serverpackets; | ||||
|  | ||||
| import org.l2jmobius.gameserver.network.ServerPackets; | ||||
|  | ||||
| /** | ||||
|  * @author Index | ||||
|  */ | ||||
| public class ExMultiSellResult extends ServerPacket | ||||
| { | ||||
| 	private final int _success; | ||||
| 	private final int _type; | ||||
| 	private final int _count; | ||||
| 	 | ||||
| 	public ExMultiSellResult(int success, int type, int count) | ||||
| 	{ | ||||
| 		_success = success; | ||||
| 		_type = type; | ||||
| 		_count = count; | ||||
| 	} | ||||
| 	 | ||||
| 	@Override | ||||
| 	public void write() | ||||
| 	{ | ||||
| 		ServerPackets.EX_MULTISELL_RESULT.writeId(this); | ||||
| 		writeByte(_success); | ||||
| 		writeInt(_type); | ||||
| 		writeInt(_count); | ||||
| 	} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 MobiusDevelopment
					MobiusDevelopment