Examples of checksForShop()


Examples of l2p.gameserver.model.L2Player.checksForShop()

    L2Player activeChar = getClient().getActiveChar();
    if (activeChar == null)
    {
      return;
    }
    if (_items == null || !activeChar.checksForShop(false))
    {
      L2TradeList.cancelStore(activeChar);
      return;
    }
    int maxSlots = activeChar.getTradeLimit();
View Full Code Here

Examples of l2p.gameserver.model.L2Player.checksForShop()

    L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null)
    {
      return;
    }
    if(_items == null || _count <= 0 || !activeChar.checksForShop(false))
    {
      L2TradeList.cancelStore(activeChar);
      return;
    }
    TradeItem temp;
View Full Code Here

Examples of l2p.gameserver.model.L2Player.checksForShop()

    L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null)
    {
      return;
    }
    if(!activeChar.checksForShop(true))
    {
      L2TradeList.cancelStore(activeChar);
      return;
    }
    if(activeChar.getNoChannel() != 0)
View Full Code Here

Examples of l2p.gameserver.model.L2Player.checksForShop()

        }
        activeChar.getTradeList().updateSellList(activeChar, activeChar.getSellList());
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(false))
        {
          activeChar.sendActionFailed();
          return;
        }
        activeChar.sendPacket(new PrivateStoreManageList(activeChar, _actionId == 61));
View Full Code Here

Examples of l2p.gameserver.model.L2Player.checksForShop()

          activeChar.setTradeList(new L2TradeList(0));
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(false))
        {
          activeChar.sendActionFailed();
          return;
        }
        activeChar.sendPacket(new PrivateStoreManageListBuy(activeChar));
View Full Code Here

Examples of l2p.gameserver.model.L2Player.checksForShop()

          activeChar.setCreateList(new L2ManufactureList());
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(true))
        {
          activeChar.sendActionFailed();
          return;
        }
        activeChar.sendPacket(new RecipeShopManageList(activeChar, true));
View Full Code Here

Examples of l2p.gameserver.model.L2Player.checksForShop()

        activeChar.sendPacket(new RecipeShopManageList(activeChar, true));
        break;
      }
      case 51: // Создание магазина Dwarven Craft
      {
        if(!activeChar.checksForShop(true))
        {
          activeChar.sendActionFailed();
          return;
        }
        if(activeChar.getCreateList() == null)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.