Package com.l2jfrozen.gameserver.templates

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


          npcDat = _npcs.get(raidId);
          minionDat = new L2MinionData();
          minionDat.setMinionId(minionData.getInt("minion_id"));
          minionDat.setAmountMin(minionData.getInt("amount_min"));
          minionDat.setAmountMax(minionData.getInt("amount_max"));
          npcDat.addRaidData(minionDat);
          cnt++;
        }

        minionData.close();
        statement.close();
View Full Code Here


        created.addTeachInfo(classId);
      }
     
      for (L2MinionData minion : minions)
      {
        created.addRaidData(minion);
      }
    }
    catch (Exception e)
    {
      _log.severe("NPCTable: Could not reload data for 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.