123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*
- * 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.Config;
- import com.l2jserver.gameserver.model.L2PremiumItem;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.ExGetPremiumItemList;
- import com.l2jserver.gameserver.util.Util;
- /**
- * @author Gnacik
- */
- public final class RequestWithDrawPremiumItem extends L2GameClientPacket
- {
- private static final String _C__D0_52_REQUESTWITHDRAWPREMIUMITEM = "[C] D0:52 RequestWithDrawPremiumItem";
-
- private int _itemNum;
- private int _charId;
- private long _itemCount;
-
- @Override
- protected void readImpl()
- {
- _itemNum = readD();
- _charId = readD();
- _itemCount = readQ();
- }
-
- @Override
- protected void runImpl()
- {
- final L2PcInstance activeChar = getClient().getActiveChar();
-
- if (activeChar == null)
- {
- return;
- }
- else if (_itemCount <= 0)
- {
- return;
- }
- else if (activeChar.getObjectId() != _charId)
- {
- Util.handleIllegalPlayerAction(activeChar, "[RequestWithDrawPremiumItem] Incorrect owner, Player: " + activeChar.getName(), Config.DEFAULT_PUNISH);
- return;
- }
- else if (activeChar.getPremiumItemList().isEmpty())
- {
- Util.handleIllegalPlayerAction(activeChar, "[RequestWithDrawPremiumItem] Player: " + activeChar.getName() + " try to get item with empty list!", Config.DEFAULT_PUNISH);
- return;
- }
- else if ((activeChar.getWeightPenalty() >= 3) || !activeChar.isInventoryUnder90(false))
- {
- activeChar.sendPacket(SystemMessageId.YOU_CANNOT_RECEIVE_THE_VITAMIN_ITEM);
- return;
- }
- else if (activeChar.isProcessingTransaction())
- {
- activeChar.sendPacket(SystemMessageId.YOU_CANNOT_RECEIVE_A_VITAMIN_ITEM_DURING_AN_EXCHANGE);
- return;
- }
-
- L2PremiumItem _item = activeChar.getPremiumItemList().get(_itemNum);
- if (_item == null)
- {
- return;
- }
- else if (_item.getCount() < _itemCount)
- {
- return;
- }
-
- long itemsLeft = (_item.getCount() - _itemCount);
-
- activeChar.addItem("PremiumItem", _item.getItemId(), _itemCount, activeChar.getTarget(), true);
-
- if (itemsLeft > 0)
- {
- _item.updateCount(itemsLeft);
- activeChar.updatePremiumItem(_itemNum, itemsLeft);
- }
- else
- {
- activeChar.getPremiumItemList().remove(_itemNum);
- activeChar.deletePremiumItem(_itemNum);
- }
-
- if (activeChar.getPremiumItemList().isEmpty())
- {
- activeChar.sendPacket(SystemMessageId.THERE_ARE_NO_MORE_VITAMIN_ITEMS_TO_BE_FOUND);
- }
- else
- {
- activeChar.sendPacket(new ExGetPremiumItemList(activeChar));
- }
- }
-
- @Override
- public String getType()
- {
- return _C__D0_52_REQUESTWITHDRAWPREMIUMITEM;
- }
- }
|