/*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.gameserver.network.clientpackets;
import java.util.logging.Logger;
import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.serverpackets.ActionFailed;
import com.l2jfrozen.gameserver.network.serverpackets.CreatureSay;
import com.l2jfrozen.gameserver.network.serverpackets.PrivateStoreManageListSell;
import com.l2jfrozen.gameserver.util.Util;
public final class RequestPrivateStoreManageSell extends L2GameClientPacket
{
private static Logger _log = Logger.getLogger(EnterWorld.class.getName());
@Override
protected void readImpl()
{
}
@Override
protected void runImpl()
{
L2PcInstance player = getClient().getActiveChar();
if (player == null)
return;
// Fix for privatestore exploit during login
if (!player.isVisible() || player.isLocked())
{
Util.handleIllegalPlayerAction(player, "Player " + player.getName() + " try exploit at login with privatestore!", Config.DEFAULT_PUNISH);
_log.warning("Player " + player.getName() + " try exploit at login with privatestore!");
return;
}
// If player is in store mode /offline_shop like L2OFF
if (player.isStored())
{
player.sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Player shouldn't be able to set stores if he/she is alike dead (dead or fake death)
if (player.isAlikeDead())
{
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
if (player.isInOlympiadMode())
{
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// You can't open store when the task is launched
if(player.isSittingTaskLaunched())
{
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Like L2OFF - You can't open buy/sell when you are sitting
if (player.isSitting() && player.getPrivateStoreType() == 0)
{
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
if (player.isSitting() && player.getPrivateStoreType() != 0)
{
player.standUp();
}
if (player.getMountType() != 0)
return;
if (player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_SELL || player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_SELL + 1 || player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_PACKAGE_SELL)
{
player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_NONE);
}
if (player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_NONE)
{
if (player.isSitting())
{
player.standUp();
}
if (Config.SELL_BY_ITEM)
{
CreatureSay cs11 = new CreatureSay(0, 15, "", "ATTENTION: Store System is not based on Adena, be careful!"); // 8D
player.sendPacket(cs11);
}
player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_SELL + 1);
player.sendPacket(new PrivateStoreManageListSell(player));
}
}
@Override
public String getType()
{
return "[C] 73 RequestPrivateStoreManageSell";
}
}