Examples of PrivateStoreMsgBuy


Examples of lineage2.gameserver.network.serverpackets.PrivateStoreMsgBuy

    }
    if (getPrivateStoreType() != STORE_PRIVATE_NONE)
    {
      if (getPrivateStoreType() == STORE_PRIVATE_BUY)
      {
        list.add(new PrivateStoreMsgBuy(this));
      }
      else if ((getPrivateStoreType() == STORE_PRIVATE_SELL) || (getPrivateStoreType() == STORE_PRIVATE_SELL_PACKAGE))
      {
        list.add(new PrivateStoreMsgSell(this));
      }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.PrivateStoreMsgBuy

                }

                if (otherPlayer.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_SELL)
                  getActiveChar().sendPacket(new PrivateStoreMsgSell(otherPlayer));
                else if (otherPlayer.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_BUY)
                  getActiveChar().sendPacket(new PrivateStoreMsgBuy(otherPlayer));
                else if (otherPlayer.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_MANUFACTURE)
                  getActiveChar().sendPacket(new RecipeShopMsg(otherPlayer));            }

            if (object instanceof L2Character)
            {
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.PrivateStoreMsgBuy

  {
    L2PcInstance player = getClient().getActiveChar();
    if (player == null || player.getBuyList() == null) return;

    player.getBuyList().setTitle(_storeMsg);
    player.sendPacket(new PrivateStoreMsgBuy(player));
  }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.PrivateStoreMsgBuy

        }

        player.sitDown();
        player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_BUY);
    player.broadcastUserInfo();
        player.broadcastPacket(new PrivateStoreMsgBuy(player));
    }
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.