Examples of swapFromBox()


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

            p.releasePokemon(Integer.parseInt(details[0]), Integer.parseInt(details[1]));
            break;
          case 's':
            //Swap pokemon between box and party - sent as BsBOXNUM,BOXSLOT,PARTYSLOT, e.g.Bs0,1,0
            details = message.substring(2).split(",");
            p.swapFromBox(Integer.parseInt(details[0]),
                Integer.parseInt(details[1]), Integer.parseInt(details[2]));
            break;
          case 'f':
            //Finished with box interfaction
            p.setBoxing(false);
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.