Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.PrivateStoreMsgBuy


    }
   
    player.sitDown();
    player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_BUY);
    player.broadcastUserInfo();
    player.broadcastPacket(new PrivateStoreMsgBuy(player));
  }
View Full Code Here


      return;
   
    if (_storeMsg.length() < 30)
    {
      player.getBuyList().setTitle(_storeMsg);
      player.sendPacket(new PrivateStoreMsgBuy(player));
    }
  }
View Full Code Here

        {
          active_char.sendPacket(new PrivateStoreMsgSell(otherPlayer));
        }
        else if(otherPlayer.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_BUY)
        {
          active_char.sendPacket(new PrivateStoreMsgBuy(otherPlayer));
        }
        else if(otherPlayer.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_MANUFACTURE)
        {
          active_char.sendPacket(new RecipeShopMsg(otherPlayer));
        }
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.PrivateStoreMsgBuy

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.