Examples of releasePokemon()


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

              p.sendBoxInfo(boxNum);
            break;
          case 'R':
            //Releasing a pokemon from storage - sent as BRBOXNUM,BOXSLOT
            details = message.substring(2).split(",");
            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]),
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.