Package l2p.gameserver.templates

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


            {
              level = (short) (Config.ALT_CATACOMB_MODIFIER_HP + 8);
              npcDat.setRateHp(hprateskill[level]);
              if(Config.ALT_CATACOMB_MODIFIER_HP != 4)
              {
                npcDat.addSkill(SkillTable.getInstance().getInfo(4417, Config.ALT_CATACOMB_MODIFIER_HP));
              }
            }
            else
            {
              npcDat.setRateHp(hprateskill[level]);
View Full Code Here


          }
          if(npcSkill == null)
          {
            continue;
          }
          npcDat.addSkill(npcSkill);
          counter++;
        }
        new File("log/game/unimplemented_npc_skills.txt").delete();
        for(Integer i : unimpl)
        {
View Full Code Here

      fillNpcTable(rs);
      // restore additional data from saved copy
      L2NpcTemplate created = getTemplate(id);
      for(L2Skill skill : skills.values())
      {
        created.addSkill(skill);
      }
      /*
       for(L2DropData drop : drops)
       created.addDropData(drop);
       */
 
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.