Package org.pokenet.server.backend.entity

Examples of org.pokenet.server.backend.entity.PlayerChar.sellItem()


            break;
          case 's':
            //Sell items. Sent as SsITEMID,QUANTITY
            item = Integer.parseInt(message.substring(2, message.indexOf(',')));
            //int q = Integer.parseInt(message.substring(message.indexOf(',') + 1));
            p.sellItem(item, 1);
            break;
          case 'f':
            //Finished shopping
            p.setShopping(false);
            break;
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.