Package com.l2client.model.l2j

Examples of com.l2client.model.l2j.Skill


  {
    log.fine("Read from Server "+this.getClass().getSimpleName());
    int skills = readD();//# of skills following
    ArrayList<Skill> sList = new ArrayList<Skill>();
    for(int i=0;i<skills;i++){
      Skill s = new Skill();
      s.setPassive(readD()!=0);
      s.setLevel(readD());
      s.setId(readD());
      s.setDisabled(readC()!=0);
      s.setEnchanted(readC()!=0);
      sList.add(s);
    }
  }
View Full Code Here

TOP

Related Classes of com.l2client.model.l2j.Skill

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.