Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.PrivateStoreManageList


    int maxSlots = activeChar.getTradeLimit();
    if(_count > maxSlots)
    {
      activeChar.sendPacket(Msg.YOU_HAVE_EXCEEDED_THE_QUANTITY_THAT_CAN_BE_INPUTTED);
      L2TradeList.cancelStore(activeChar);
      activeChar.sendPacket(new PrivateStoreManageList(activeChar, _package));
      return;
    }
    int count = _count;
    for(int x = 0; x < _count; x++)
    {
View Full Code Here


        if(!activeChar.checksForShop(false))
        {
          activeChar.sendActionFailed();
          return;
        }
        activeChar.sendPacket(new PrivateStoreManageList(activeChar, _actionId == 61));
        break;
      }
      case 28: // Запрос на создание приватного магазина покупки
      {
        if(activeChar.isInTransaction())
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.PrivateStoreManageList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.