• Bem vindo à nossa comunidade - Quer se juntar ao resto dos nossos membros? Registre-se*Registros aprovados pela adminitração

Deletando ALL Mobs, Raid Boss, Caixas e etc.

Shion

Legendário XPZ
Mostros:

delete from spawnlist where  exists ( select npc.id from npc where spawnlist.npc_templateid =npc.id and npc.type like "L2Monster");

Raid Boss:

delete from spawnlist where  exists ( select npc.id from npc where spawnlist.npc_templateid =npc.id and npc.type like "L2Boss");

Especial Boss(Valakas, Baium, Antharas, Zaken, Halisha etc.):

delete from spawnlist where  exists ( select npc.id from npc where spawnlist.npc_templateid =npc.id and npc.type like "L2RaidBoss");

Caixas:

delete from spawnlist where  exists ( select npc.id from npc where spawnlist.npc_templateid =npc.id and npc.type like "L2Chest");

Guardas:

delete from spawnlist where  exists ( select npc.id from npc where spawnlist.npc_templateid =npc.id and npc.type like "L2Guard");

Prists (Dentro das igrejas para troca de classe, adicão clan, ally.):

delete from spawnlist where  exists ( select npc.id from npc where spawnlist.npc_templateid =npc.id and npc.type like "L2VillageMaster");
 
Topo Bottom