Examples of SkillTemplate


Examples of com.l2client.model.l2j.SkillTemplate

    int type = readD();//0 usual, 1 fishing, 2 clans, 6 special
    int skills = readD();//# of skill descriptions following
    ArrayList<SkillTemplate> sList = new ArrayList<SkillTemplate>();
    for(int i=0;i<skills;i++){
      SkillTemplate s = new SkillTemplate();
      s.setId(readD());
      s.setNextLevel(readD());
      s.setMaxLevel(readD());
      s.setSpCost(readD());
      s.setRequirements(readD());
      sList.add(s);
      if(type == 3){
        readD();//unknown 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.