You want to delete mobs or just their spawn?
Also, what version of eclipse you are using?
try this
-for (NpcTemplate raid : NpcTable.getInstance().getTemplates(t -> t.isType("L2RaidBoss")))
- {
- for (L2Spawn spawn : SpawnTable.getInstance().getSpawnTable())
- {
- if (spawn.getNpcId() == raid.getNpcId())
- {
- RADARS.put(raid.getNpcId(), new Location(spawn.getLocx(), spawn.getLocy(), spawn.getLocz()));
- break;
- }
- }
- }
+ for (L2Spawn spawn : SpawnTable.getInstance().getSpawnTable())
+ {
+ if (spawn.getTemplate().isType("L2RaidBoss"))
+ RADARS.put(spawn.getNpcId(), new Location(spawn.getLocx(), spawn.getLocy(), spawn.getLocz()));
+ }