Thread: mob list?
View Single Post
  #3  
Old 04-19-2002, 11:40 AM
strychn
Hill Giant
 
Join Date: Feb 2002
Posts: 129
Default

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....
Reply With Quote