* @param id int
* @param points List<Location>
*/
private static void spawn(int id, List<Location> points)
{
NpcTemplate template = NpcHolder.getInstance().getTemplate(id);
MonsterInstance monster = new MonsterInstance(IdFactory.getInstance().getNextId(), template);
monster.setCurrentHpMp(monster.getMaxHp(), monster.getMaxMp(), true);
monster.setXYZ(points.get(0).x, points.get(0).y, points.get(0).z);
MonstersAI ai = new MonstersAI(monster);
ai.setPoints(points);