================================================================================================================== For aCis
gameserver/datatables/SpawnTable.java
if (template1.isType("L2SiegeGuard"))
{
// Don't spawn guards, they're spawned during castle sieges.
}
+ else if (template1.isType("L2Monster") && template1.getNpcId() > 5000)
+ {
+ // Ignore all monsters with higher ID then 5000
+ }
else if (template1.isType("L2RaidBoss"))
{
// Don't spawn raidbosses ; raidbosses are supposed to be loaded in another table !
_log.warning("SpawnTable: RB (" + template1.getIdTemplate() + ") is in regular spawnlist, move it in raidboss_spawnlist.");
}
and you can spawn your own monster with custom ID lower then 5000
==================================================================================================================
For L2JFrozen
SQL solution
DELETE spawnlist, npc FROM spawnlist, npc WHERE spawnlist.npc_templateid=npc.idTemplate AND npc.type='L2Monster';
==================================================================================================================