Package org.pokenet.server.network.message.shop

Examples of org.pokenet.server.network.message.shop.ShopStockMessage


      }
      /* Shop access */
      if(m_isShop>0) { //0 is not a shop, over 0 means some kind of shop.
        //Send shop packet to display shop window clientside
        if(!p.isShopping()){ //Dont display if user's shopping
          TcpProtocolHandler.writeMessage(p.getTcpSession(), new ShopStockMessage(m_shop.getStockData()));
          p.setShopping(true);
          p.setShop(m_shop);
        }
      }
    }
View Full Code Here

TOP

Related Classes of org.pokenet.server.network.message.shop.ShopStockMessage

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.