{
L2MonsterInstance npc = new L2MonsterInstance(IdFactory.getInstance().getNextId(), NpcTable.getTemplate(mobId));
npc.setSpawnedLoc(Rnd.coordsRandomize(actor.getLoc(), 400, 1000));
npc.setReflection(actor.getReflection());
npc.onSpawn();
npc.spawnMe(npc.getSpawnedLoc());
r.addSpawn(npc.getSpawn());
L2Character randomHated = actor.getRandomHated();
npc.getAI().notifyEvent(CtrlEvent.EVT_AGGRESSION, randomHated != null ? randomHated : attacker, Rnd.get(1, 100));
}
}