Package com.l2jfrozen.gameserver.templates

Examples of com.l2jfrozen.gameserver.templates.L2NpcTemplate.addTeachInfo()


          if(classId >= ClassId.values().length){
            _log.warning("NPCTable: Error defining learning data for NPC "+npcId+": specified classId "+classId+" is higher then max one "+(ClassId.values().length-1)+" specified into ClassID Enum --> check your Database to be complient with it"+" "+ classId);
            continue;
          }

          npc.addTeachInfo(ClassId.values()[classId]);
        }

        learndata.close();
        statement.close();
      }
View Full Code Here


        created.addSkill(skill);
      }
     
      for (ClassId classId : classIds)
      {
        created.addTeachInfo(classId);
      }
     
      for (L2MinionData minion : minions)
      {
        created.addRaidData(minion);
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.