| 
 you could get the spawns for a particular zone using a sql query that just references the right tables. if you mean which models are available in which zones, i dont know about that.but i use:
 select spawn2.zone, spawn2.spawngroupid, spawnentry.npcid, npc_types.name from spawn2, spawnentry, npc_types where spawn2.zone= [zonenamehere] and spawn2.spawngroupid=spawnentry.spawngroupid and spawnentry.npcid=npc_types.id
 
 to get a list of spawn entries by zone.
 not sure if that's what you mean.
 just replace [zonenamehere] with the zone you want.
 someone would have to make it into a # command and recompile the zone.exe though....
 |