Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.PrivateStoreMsgSell


        {
          player.sendPacket(new PrivateStoreMsgBuy(trader));
        }
        else if(trader.getPrivateStoreType() == L2Player.STORE_PRIVATE_SELL || trader.getPrivateStoreType() == L2Player.STORE_PRIVATE_SELL_PACKAGE)
        {
          player.sendPacket(new PrivateStoreMsgSell(trader));
        }
        else if(trader.getPrivateStoreType() == L2Player.STORE_PRIVATE_MANUFACTURE)
        {
          player.sendPacket(new RecipeShopMsg(trader));
        }
View Full Code Here


    if(count != 0)
    {
      activeChar.setSellList(listsell);
      activeChar.setPrivateStoreType(_package ? L2Player.STORE_PRIVATE_SELL_PACKAGE : L2Player.STORE_PRIVATE_SELL);
      activeChar.broadcastUserInfo(true);
      activeChar.broadcastPacket(new PrivateStoreMsgSell(activeChar));
      activeChar.sitDown();
    }
    else
    {
      L2TradeList.cancelStore(activeChar);
View Full Code Here

      {
        packets.add(new PrivateStoreMsgBuy(activeChar));
      }
      else if(activeChar.getPrivateStoreType() == L2Player.STORE_PRIVATE_SELL || activeChar.getPrivateStoreType() == L2Player.STORE_PRIVATE_SELL_PACKAGE)
      {
        packets.add(new PrivateStoreMsgSell(activeChar));
      }
      else if(activeChar.getPrivateStoreType() == L2Player.STORE_PRIVATE_MANUFACTURE)
      {
        packets.add(new RecipeShopMsg(activeChar));
      }
View Full Code Here

    }
    L2TradeList tradeList = activeChar.getTradeList();
    if(tradeList != null)
    {
      tradeList.setSellStoreName(_storename);
      sendPacket(new PrivateStoreMsgSell(activeChar, false));
    }
  }
View Full Code Here

    }
    L2TradeList tradeList = activeChar.getTradeList();
    if(tradeList != null)
    {
      tradeList.setSellStoreName(_storename);
      sendPacket(new PrivateStoreMsgSell(activeChar, true));
    }
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.PrivateStoreMsgSell

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.