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

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


          GameServer.getServiceManager().getItemDatabase().getItem(id).getId(), q));
      //Update the client's money
      this.updateClientMoney();
      //Let player know he sold the item.
      TcpProtocolHandler.writeMessage(m_tcpSession,
          new ShopSellMessage(GameServer.getServiceManager().getItemDatabase().getItem(id).getId()));
    } else {
      //Return You don't have that item, fool!
      TcpProtocolHandler.writeMessage(m_tcpSession, new ShopNoItemMessage(GameServer.getServiceManager().getItemDatabase()
          .getItem(id).getName()));
    }
View Full Code Here

TOP

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

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.