SimpleSpawner sp = new SimpleSpawner(NpcHolder.getInstance().getTemplate(npcId));
sp.setLoc(randomOffset > 0 ? Location.findPointToStay(loc, 0, randomOffset, getGeoIndex()) : loc);
sp.setReflection(this);
sp.setAmount(1);
sp.setRespawnDelay(respawnDelay);
sp.doSpawn(true);
sp.startRespawn();
return sp.getLastSpawn();
}
/**