Examples of addSpeech()


Examples of org.pokenet.server.backend.entity.NonPlayerChar.addSpeech()

          //Add all speech, if any
          line = reader.nextLine();
          if(!line.equalsIgnoreCase("NULL")) {
            details = line.split(",");
            for(int i = 0; i < details.length; i++) {
              npc.addSpeech(Integer.parseInt(details[i]));
            }
          }
          npc.setHealer(Boolean.parseBoolean(reader.nextLine().toLowerCase()));
          npc.setBox(Boolean.parseBoolean(reader.nextLine().toLowerCase()));
         
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.