Package l2p.gameserver.templates

Examples of l2p.gameserver.templates.L2NpcTemplate.addTeachInfo()


        L2NpcTemplate npcDat;
        int cnt = 0;
        while(rs.next())
        {
          npcDat = _npcs[rs.getInt(1)];
          npcDat.addTeachInfo(ClassId.values()[rs.getInt(2)]);
          cnt++;
        }
        _log.info("NpcTable: Loaded " + cnt + " SkillLearn entrys.");
      }
      catch(Exception e)
View Full Code Here


       */
      if(classIds != null)
      {
        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.