Package l2p.gameserver.templates

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


          int raidId = rs.getInt("boss_id");
          npcDat = _npcs[raidId];
          minionDat = new L2MinionData();
          minionDat.setMinionId(rs.getInt("minion_id"));
          minionDat.setAmount(rs.getByte("amount"));
          npcDat.addRaidData(minionDat);
          cnt++;
        }
        _log.info("NpcTable: Loaded " + cnt + " Minions.");
      }
      catch(Exception e)
View Full Code Here


          created.addTeachInfo(classId);
        }
      }
      for(L2MinionData minion : minions)
      {
        created.addRaidData(minion);
      }
    }
    catch(Exception e)
    {
      _log.warning("cannot reload npc " + id + ": " + e);
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.