Package com.l2jfrozen.gameserver.model.base

Examples of com.l2jfrozen.gameserver.model.base.ClassId.level()


           
            while (count == 0 && classCheck != null)
            {
              for (ClassId cid : _classesToTeach)
              {
                if (cid.level() != classCheck.level())
                {
                  continue;
                }
               
                if (SkillTreeTable.getInstance().getAvailableSkills(player, cid).length == 0)
View Full Code Here


    {
      ClassId classId = ClassId.getClassIdByOrdinal(player.getActiveClass());
     
      if (classId.getParent() != null)
      {
        while (classId.level() == 0)
        { // go to root
          classId = classId.getParent();
        }
      }
     
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.