MQ2Targets - MMOBugs Wiki

Plugin Info
Name MQ2Targets
Author Drunkdwarf
Link MQ2 Forum Link
Commands /watch
Source Available Yes
Uses INI File Yes


Description

MQ2Targets allows you to create a custom list of watched targets to be displayed in your HUD. You must have HUD enabled (F11) to be able to view your watch list. Also you can enable a pop up notify message as well for watch targets in addition to the list. The target list is displayed in the hud sorted by distance by default (customizable) with level/class/distance/direction indicated (also customizable).

Besides mobs which can be shown on the HUD, the list is also available via the ${Targ} TLO.

Commands

  • /watch add "<SpawnSearch String>" [notify] [sound #] [nohud] [priority #] [/all] Add a new watch entry based on the parameters specified. See configuration below for parameters. Example, to add a watch for any mob with guardian in the name, within a specified radius of x and y location, notify option, and play sound #2: /watch add "npc loc 15 200 radius 20 guardian" notify sound 2
  • /watch (l)ist Display current watch entries.
  • /watch del(ete)|rem(ove) "<SpawnSearch String>" Remove watch list entry that matches this search string. This stops watching that specific search entry.
  • /watch del(ete)|rem(ove) "<Index #>" Remove watch list entry that matches this entry number. This stops watching that specific search entry.
  • /watch help Shows the help information.
  • /watch time(stamp) Toggles the timestamp option, which enables or disables putting a timestamp before chat and popup output lines.
  • /watch chat Toggles the chat option, which enables or disables output to the mq2 chat window.
  • /watch all Toggles the all option, which enables or disables using the [all] entries for watches (for all zones) plus any entries for the specific zone you are in, or just the entries for the specific zone you are in (if all option is off).
  • /watch debug Causes some additional output to help track down issues.
  • /watch verbose Toggles the verbose option, for some output of what the plugin is doing.
  • /watch concolor Toggles using con colors for the HUD entries, or using only the configured HUD color.
  • /watch mq2chat Toggles using the mq2 chat window, vs. the eq chat window, for output.
  • /watch font # Sets the font size for the HUD entries (default is 2).
  • /watch bg Toggles whether the plugin updates hud display when the EQ session is in the background (the watch targets themselves, for access via TLO, are always updated).
  • /watch x <LOC> Sets the X display coordinate for the watch list.
  • /watch y <LOC> Sets the Y display coordinate for the watch list
  • /watch increment <Value in Pixels> Sets the spacing distance (vertical) in pixels between displayed watch list entries in the HUD.
  • /watch show <# of Targets to Show> Set the number of targets to show in the HUD.
  • /watch [color] [hud|guild|dead|target|chatadd|chatrem] [RGB] Sets the color for the indicated option. Colors are ######, in Red/Greenblue, hex values. Ex: CF4515 (google html color codes)
  • /watch [color] [popupadd|popuprem] [color] Sets the color for the overlay popup add or remove data. Colors are names. If you do not provide a color, a list will be presented so you know what options are available.
  • /watch [sorttype|sortorder|hudsorttype|hudsortorder] [type|order] Sets the sort type or order for the indicated option. If you do not provide a type or order, a list of available options will be presented to you.
  • /watch sound [list|stop|id filename] Allows you to manage sounds. List will list the sound options in the ini file. stop will stop any currently playing sound. 'id filename' assigns sound id 'id' as filename 'filename' (paths, relative or absolute, can be used).
  • /watch timeformat [reload|show|String] Reloads, shows, or sets the display format for the timestamp option.
  • /watch hudstring [reload|show|String] Reloads, shows, or sets the display format for the HUD entries.
  • /watch notifyhudstring [reload|show|String] Reloads, shows, or sets the display format for the overlay popups.
  • /watch notifychatstring [reload|show|String] Reloads, shows, or sets the display format for the chat window reports.

Options for /watch add:

  • "<SpawnSearch String>" Spawn search parameters to use. /watch help will show pre-defined options. Any text that is not an option, is literal (i.e., part or all of the name to watch for).
  • notify Turns on the notify (overlay popup) option.
  • sound # Associates sound # to this entry.
  • nohud Entries matching this search will not be shown in the hud, but still be in the global watch list (accessible via TLO).
  • priority # Assigns a priority number to this group, that is accessible via TLO.
  • /all Adds this entry under the [all] zones section, instead of zone specific section.

Macro Data

This plugin adds a new TLO: Targ

ExampleType

  • ${Targ} : bool - Return TRUE if plugin is loaded.
  • ${Targ.Spawn[name|index]} : spawn - Entire spawn TLO for the watched spawn. index is from 1 to ${Targ.Count}. name can be any valid spawnsearch data.
  • ${Targ.Count} : int - Return number of entries on the watch list.
  • ${Targ.Priority[name|index]} : int - The priority of the spawn (index or valid spawnsearch data). If no priority is assigned, result is -1.

Configuration

MQ2Targets is configured either via an .ini file or through slash commands. See slash commands available listed above. The default HUDString (how information is presented) is:

  • &clr${Target.CleanName}(${Target.Race})${Target.Level}${Target.Class.ShortName}${Target.Distance}&arr(${Target.HeadingTo})
  • &clr is replaced with ">>" to show the current target, and turns on guild/corpse colors
  • &dst is replaced with the distance to target plus +/- for Z-axis indication
  • &arr is replaced with an arrow indicating direction to mob

Sample Configuration

MQ2Targets.ini

[Settings] 
NumDisplayed=20 
HUDXStart=400 
HUDYStart=500 
HUDYIncrement=14 
HUDColor=FFEA08 
GuildHUDColor=FF00FF 
DeadHUDColor=007777 
TargetHUDColor=FF0000 
HUDString=&clr${Target.CleanName}(${Target.PctHPs}%) ${Target.Level} ${Target.Class.ShortName} ${Target.Distance}&arr(${Target.HeadingTo}) 
NotifyHUDString=${Target.CleanName}(${Target.Level} ${Target.Class.ShortName}) 
UseMQ2Chat=1
MP3Length=3000
WavLength=0
UseTimeStamp=1
TimeStampFormat=[%H:%M:%S]
UseChatReport=1
NotifyChatString=${Target.CleanName} (${Target.Level} ${Target.Class.ShortName}) ${If[${Target.Guild.NotEqual["NULL"]},in ${Target.Guild},]}${If[${Target.Guild.NotEqual["NULL"]},${If[${Target.GuildStatus.NotEqual["member"]}, (${Target.GuildStatus}),]},]}
UseAllZone=1
UseConColor=yes
Verbose=no
HUDSortType=distance
HUDSortOrder=normal
SortType=priority
SortOrder=normal
HUDFontSize=4
UpdateInBackground=off
PopupColorAdd=lightgreen
PopupColorRem=red
ChatColorAdd=009933
ChatColorRem=CC0033

[Sounds] 
1=nosound 
2=sounds\alert2.wav 
3=sounds\alert3.wav 
4=sounds\alert4.wav 
5=sounds\alert5.wav 
6=nosound 
7=nosound 
8=nosound 
9=sounds\startup.mp3 

[all]
spawn0=guild|notify|sound|4

[South Karanas] 
spawn0=quillmane npc|notify|sound|5 
spawn1=fabled quillmane npc|notify|sound|5

[Iceclad Ocean] 
spawn0=lodizal npc|notify|sound|5 
spawn1=fabled lodizal npc|notify|sound|5
spawn2=stormfeather npc|notify|sound|5 
spawn3=fabled stormfeather npc|notify|sound|5
spawn4=dire wolf stalker npc|notify|sound|5

[Lair of the Korlach] 
spawn0=korlach npc 
spawn1=chancellor npc 
spawn2=vision of the witheran beast npc 
[Plane of Torment] 
spawn0=kaniz painbringer npc 
[South Ro] 
spawn0=cyclops npc 
[The Plane of Hate] 
spawn0=a teir`dal guardian npc 
[Caverns of the Lost] 
spawn0=therigals scholar 
spawn1=captain therimel 
[Asylum of Anguish] 
spawn0=damlin lingering npc|notify 
spawn1=grenlok npc|notify 
spawn2=vilria npc|notify 
spawn3=a languished convert npc|notify 
spawn4=administrator charial npc|notify 
spawn5=first lieutenant minas npc|notify 
[Living Larder] 
spawn0=foddin npc 
spawn1=foreman zlixtil npc 
spawn2=sizz kipcoil npc 
spawn3=alizis parbrind npc 
spawn4=terrzin wirecrimp npc 
spawn5=virak the devourer npc 
spawn6=wicyl, the watcher|notify 
[The Nargilor Pits] 
spawn0=race chest 
spawn1=captain|notify 
spawn2=a reanimated legionnaire 
[Plane of Storms] 
spawn0=neffiken npc 
spawn1=guild 
[The Root of Ro] 
spawn0=a mineralized guardian|notify 
[The Accursed Nest] 
spawn0=mournful npc 
spawn1=cleric pc 
spawn2=concentra npc|notify 
spawn3=npc race "dragon egg"|notify 
spawn4=black wing drake npc 
[Gulf of Gunthak] 
spawn0=enforcer npc|notify 
spawn1=thug npc|notify 
spawn2=krill the backbleeder npc|notify 
[Qvic, Prayer Grounds of Calling] 
spawn0=dvoin npc|notify 
spawn1=mnat npc|notify 
[Eastern Wastes] 
spawn0=fabled npc|notify 
[Kael Drakkal] 
spawn0=fabled npc|notify 
[Lavastorm Mountains] 
spawn0=paladin range 65 70 pc 
spawn1=shaman range 65 70 pc 
[The Ruined City of Dranik] 
spawn0=prodigy npc|notify 
[Sewers of Dranik] 
spawn0=cunning drag npc|notify 
[Catacombs of Dranik] 
spawn0=insidious dragorn npc|notify 
[Stoneroot Falls] 
spawn0=chamber guardian npc 
[Barindu, Hanging Gardens] 
spawn0=aneuk npc|notify 
spawn1=ixt npc|notify 
spawn2=kyv npc|notify 
spawn3=ikaav npc|notify 
[Qinimi, Court of Nihilia] 
spawn0=kyv npc|notify 
spawn1=aneuk npc|notify 
[Undershore] 
spawn0=seeker 
[Queen Sendaii's Lair] 
spawn0=queen npc 
[Dreadlands] 
spawn0=chaos elemental npc|notify 
[The Scarlet Desert] 
spawn0=elite sun revenant npc|notify 
[Great Divide] 
spawn0=krom npc 
[Dragon Necropolis] 
spawn0=npc race human range 70 80 
[Kod'Taz, Broken Trial Grounds] 
spawn0=ikaav npc|notify 
spawn1=ixt npc|notify 
[The Wakening Land] 
spawn0=remains npc|notify 
[Razorthorn, Tower of Sullon Zek] 
spawn0=a shadow of rage|notify 
spawn1=ghost npc|notify 
[The Bloodfields] 
spawn0=reclusive girplan|notify 
spawn1=roundbelly npc|notify 
spawn2=flighty|notify 
spawn3=marshal npc|notify 
[Ruins of Takish-Hiz] 
spawn0=lifestone npc|notify 
[The Devastation] 
spawn0=titanothon npc|notify 
[Riftseekers' Sanctum] 
spawn0=shardtend npc 
spawn1=pyrilen researcher npc 
spawn2=discordling shardmender|notify 
spawn3=gelidran frostformer|notify 
spawn4=gelidran conjurer|notify 
[The Guild Lobby] 
spawn0=cleric pc range 65 70|notify 
spawn1=shaman pc range 70 70 
spawn2=paladin pc range 70 70 
[Muramite Proving Grounds] 
spawn0=taskfiend caikap npc|notify 
spawn1=blind hunter npc|notify 
spawn2=odiumate isienne npc|notify 
spawn3=bluespark npc|notify 
[Theater of Blood] 
spawn0=npc range 76 90 
[Wall of Slaughter] 
spawn0=shaman pc 
spawn1=paladin pc 
spawn2=discordling warfiend npc|notify 
spawn3=shadowhunter npc|notify 
spawn4=cipheron npc|notify 
[Sverag, Stronghold of Rage] 
spawn0=the eviscerator|notify 
spawn1=restrained cereton npc|notify 
spawn2=jyrta npc|notify 
spawn3=yoon npc|notify 
spawn4=tyrant npc|notify 
spawn5=subjugant npc|notify 
spawn6=funival npc|notify 
spawn7=keloss npc|notify 
spawn8=mengalor npc|notify 
[The Hive] 
spawn0=group 
spawn1=taskmaster shadowspin npc 
[Relic] 
spawn0=port npc|notify 
spawn1=shar`drahn npc|notify 
[Guild Hall] 
spawn0=shaman pc|notify|sound|5 
spawn1=paladin pc|notify|sound|5 
[Plane of Knowledge]
spawn0=guild
spawn1=pc range 10|notify|sound|4
[Brell's Temple]
spawn0=npc range 80 88
spawn1=pc range 1 85
[Darkened Ruins of Old Guk]
Spawn0=a basalt gargoyle npc|notify|sound|5
Spawn1=a dar ghoul knight npc|notify|sound|5
Spawn2=a frenzied ghoul npc|notify|sound|5
Spawn3=a froglok crusader npc|notify|sound|5
Spawn4=a froglok herbalist npc|notify|sound|5
Spawn5=a froglok noble npc|notify|sound|5
Spawn6=a ghoul assassin npc|notify|sound|5
Spawn7=a ghoul cavalier npc|notify|sound|5
Spawn8=a ghoul executioner npc|notify|sound|5
Spawn9=a ghoul ritualist npc|notify|sound|5
Spawn10=a ghoul sage npc|notify|sound|5
Spawn11=a ghoul savant npc|notify|sound|5
Spawn12=a ghoul sentinel npc|notify|sound|5
Spawn13=a ghoul supplier npc|notify|sound|5
Spawn14=a greater minotaur npc|notify|sound|5
Spawn15=a huge water elemental npc|notify|sound|5
Spawn16=a minotaur elder npc|notify|sound|5
Spawn17=a minotaur patriarch npc|notify|sound|5
Spawn18=a reanimated hand npc|notify|sound|5
Spawn19=an evil eye npc|notify|sound|5
Spawn20=the froglok king npc|notify|sound|5
Spawn21=the ghoul arch magus npc|notify|sound|5
Spawn22=the ghoul lord npc|notify|sound|5
Spawn23=Reanimated Hand npc|notify|sound|5
Spawn24=Slaythe the Slayer npc|notify|sound|5

[Greater Unrest]
Spawn0=Death Beetle npc|notify|sound|5
Spawn1=Garanel Rucksif npc|notify|sound|5
Spawn2=Greater Blade Fiend npc|notify|sound|5
Spawn3=Greater Dark Bone npc|notify|sound|5
Spawn4=Jack o lantern npc|notify|sound|5
Spawn5=Khrix Fritchoff npc|notify|sound|5
Spawn6=Lesser Blade Fiend npc|notify|sound|5
Spawn7=Lost Soul npc|notify|sound|5
Spawn8=Mortificator Fungus npc|notify|sound|5
Spawn9=Reanimated hand npc|notify|sound|5
Spawn10=Reclusive ghoul magus npc|notify|sound|5
Spawn11=Tentacle Terror npc|notify|sound|5
Spawn12=Torklar Battlemaster npc|notify|sound|5

[Lost Temple of Cazic-Thule]
Spawn0=a diseased mosquito npc|notify|sound|5
Spawn1=a frenzied alligator npc|notify|sound|5
Spawn2=a graystriped mosquito npc|notify|sound|5
Spawn3=a hulking gorilla npc|notify|sound|5
Spawn4=a lizard fanatic npc|notify|sound|5
Spawn5=a lizard herald npc|notify|sound|5
Spawn6=a lizard ritualist npc|notify|sound|5
Spawn7=a steel golem npc|notify|sound|5
Spawn8=a stone golem npc|notify|sound|5
Spawn9=a virulent mosquito npc|notify|sound|5
Spawn10=An Unmasked Riftseeker npc|notify|sound|5
Spawn11=Avatar of Fear npc|notify|sound|5
Spawn12=Cazic Cenobite npc|notify|sound|5
Spawn13=Dismay npc|notify|sound|5
Spawn14=Radiant npc|notify|sound|5
Spawn15=Soul Siphon npc|notify|sound|5
Spawn16=Tae Ew Agressor npc|notify|sound|5
Spawn17=Tae Ew Archon npc|notify|sound|5
Spawn18=Tae Ew Bloodfiend npc|notify|sound|5
Spawn19=Tae Ew Convert npc|notify|sound|5
Spawn20=Tae Ew Diviner npc|notify|sound|5
Spawn21=Tae Ew Templar npc|notify|sound|5
Spawn22=Tae Ew Trapper npc|notify|sound|5
Spawn23=Tae Ew Warlord npc|notify|sound|5
Spawn24=Thul Tae Ew Crusader npc|notify|sound|5
Spawn25=Thul Tae Ew Ritualist npc|notify|sound|5
Spawn26=Thul Tae Ew Torturer npc|notify|sound|5

[Reinforced Blackburrow]
Spawn0=An Unmasked Riftseeker npc|notify|sound|5
Spawn1=a burly gnoll npc|notify|sound|5
Spawn2=a giant snake npc|notify|sound|5
Spawn3=a gnoll archer npc|notify|sound|5
Spawn4=a gnoll brewer npc|notify|sound|5
Spawn5=a gnoll commander npc|notify|sound|5
Spawn6=a gnoll pup  npc|notify|sound|5
Spawn7=a gnoll shaman npc|notify|sound|5
Spawn8=a razorgill npc|notify|sound|5
Spawn9=an elite gnoll guard npc|notify|sound|5
Spawn10=Djerr Darkpaw npc|notify|sound|5
Spawn11=Grarrax Darkpaw npc|notify|sound|5
Spawn12=Holinix Darkpaw npc|notify|sound|5
Spawn13=Kraxz Darkpaw npc|notify|sound|5
Spawn14=Lord Elgnub npc|notify|sound|5
Spawn15=Mannan of the Sabertooth npc|notify|sound|5
Spawn16=Master Brewer npc|notify|sound|5
Spawn17=Nixx Darkpaw npc|notify|sound|5
Spawn18=Refugee Splitpaw npc|notify|sound|5
Spawn19=Socho Darkpaw npc|notify|sound|5
Spawn20=Splitpaw Commander npc|notify|sound|5
Spawn21=The gnoll tactician npc|notify|sound|5
Spawn22=Tranixx Darkpaw npc|notify|sound|5

[Dragonscale Hills]
Spawn0=Arachnotron npc|notify|sound|5
Spawn1=Bloodbeak npc|notify|sound|5
Spawn2=Captain of the Leafguard npc|notify|sound|5
Spawn3=Chief Thundragon npc|notify|sound|5
Spawn4=Click-o-nik npc|notify|sound|5
Spawn5=Delilah Windrider npc|notify|sound|5
Spawn6=Diddle D npc|notify|sound|5
Spawn7=Dungore npc|notify|sound|5
Spawn8=Elder Krunggar Whiptail npc|notify|sound|5
Spawn9=Fiddle D npc|notify|sound|5
Spawn10=Gillipuzz npc|notify|sound|5
Spawn11=Higoren npc|notify|sound|5
Spawn12=King Mustef npc|notify|sound|5
Spawn13=Leafrot npc|notify|sound|5
Spawn14=Mad MX npc|notify|sound|5
Spawn15=Overseer Sickletooth npc|notify|sound|5
Spawn16=Strawshanks npc|notify|sound|5
Spawn17=Tangler Timbleton npc|notify|sound|5
Spawn18=Ton o` Tin npc|notify|sound|5
Spawn19=Witchkin npc|notify|sound|5

[The Mechamatic Guardian: Solo Tasks]
Spawn0=Coleoptera Assault Sweeper npc|notify|sound|5
Spawn1=Fuzzbert Cogsworth npc|notify|sound|5
Spawn2=Gearlord Memorantis npc|notify|sound|5
Spawn3=Jon E V npc|notify|sound|5
Spawn4=Mechano Sendaii Dronequeen npc|notify|sound|5
Spawn5=Metal Slime npc|notify|sound|5
Spawn6=Steam Engineer LIIV npc|notify|sound|5
Spawn7=THE Destructorizor XOOX npc|notify|sound|5
Spawn8=Whirlie Fizzlebot npc|notify|sound|5

[Loping Plains]
Spawn0=Bloodmoon Battlemaster npc|notify|sound|5
Spawn1=Bloodmoon Bloodmender npc|notify|sound|5
Spawn2=Bloodmoon Swiftblade npc|notify|sound|5
Spawn3=Bloodmoon Warlock npc|notify|sound|5
Spawn4=Debilitated Skeleton npc|notify|sound|5
Spawn5=Decrepit Skeleton npc|notify|sound|5
Spawn6=Drangol Foreman npc|notify|sound|5
Spawn7=Drangol Overseer npc|notify|sound|5
Spawn8=Frenzied Shadowmane npc|notify|sound|5
Spawn9=Minotaur Pit Boss npc|notify|sound|5
Spawn10=Nightwalker Assassin npc|notify|sound|5
Spawn11=Shadowmane Beastman npc|notify|sound|5
Spawn12=Shadowmane Champion npc|notify|sound|5
Spawn13=Shadowmane Totemcaller npc|notify|sound|5
Spawn14=Vampiric Deathknight npc|notify|sound|5

[Hills of Shade]
Spawn0=Ancestral Deathguard npc|notify|sound|5
Spawn1=Blinking Spirit npc|notify|sound|5
Spawn2=Cadaverous Bloom npc|notify|sound|5
Spawn3=Ebontail npc|notify|sound|5
Spawn4=Erollisi`s Spite npc|notify|sound|5
Spawn5=Eternity`s Blaze npc|notify|sound|5
Spawn6=Festerclaw npc|notify|sound|5
Spawn7=Hester Valance npc|notify|sound|5
Spawn8=Kaestille Pureheart npc|notify|sound|5
Spawn9=Lian Swiftstalker npc|notify|sound|5
Spawn10=Silius the Gaffe npc|notify|sound|5
Spawn11=Sorrow npc|notify|sound|5
Spawn12=The Collector npc|notify|sound|5
Spawn13=The Rot npc|notify|sound|5
Spawn14=Thornheart npc|notify|sound|5

[Bloodmoon Keep]
Spawn0=Balkor the Knife npc|notify|sound|5
Spawn1=Crawtooth npc|notify|sound|5
Spawn2=Grawlthin npc|notify|sound|5
Spawn3=Hikor the Pitmaster npc|notify|sound|5
Spawn4=Horak npc|notify|sound|5
Spawn5=Raknos the Fang npc|notify|sound|5
Spawn6=Ralfin npc|notify|sound|5
Spawn7=Vorash npc|notify|sound|5
Spawn8=Warden Jaklor npc|notify|sound|5
Spawn9=Wulren Venomdrinker npc|notify|sound|5

[Fortress Mechanotus]
"Spawn0=Bablage, Master Lifter" npc|notify|sound|5
Spawn1=Belchforth the Unclean npc|notify|sound|5
Spawn2=Chief Machinist Bildarol npc|notify|sound|5
Spawn3=Eldervine the Twisted npc|notify|sound|5
Spawn4=Firemarshal Unit IV npc|notify|sound|5
Spawn5=Groundskeeper Cotongle npc|notify|sound|5
"Spawn6=Hardbottom, Recycler Union" npc|notify|sound|5
Spawn7=Hogswaller npc|notify|sound|5
Spawn8=Ironfoot npc|notify|sound|5
Spawn9=Part Sorter Model XV npc|notify|sound|5
Spawn10=Rusty npc|notify|sound|5
Spawn11=Siegemarshal Kenti Tinwhistle npc|notify|sound|5
Spawn12=Sootmane the Brute npc|notify|sound|5
Spawn13=Steamwork Guardian Model I npc|notify|sound|5
Spawn14=The Gearmarshal npc|notify|sound|5

[S.H.I.P=Workshop]
Spawn0=Chief Administrator Grigano npc|notify|sound|5
Spawn1=Former Head Scientist Bozle npc|notify|sound|5
Spawn2=Head Administrator Grigano npc|notify|sound|5
Spawn3=Head Scientist Belnot npc|notify|sound|5
Spawn4=Head Scientist Fizzil npc|notify|sound|5
Spawn5=Head Scientist Gripwir npc|notify|sound|5
Spawn6=Head Scientist Lotrip npc|notify|sound|5
Spawn7=Head Scientist Spodwork npc|notify|sound|5
Spawn8=Head Scientist Twiner npc|notify|sound|5
Spawn9=Head Scientist Wripple npc|notify|sound|5
Spawn10=Malfunctioning Steamwork Borri npc|notify|sound|5

[Gyrospire Beza]
Spawn0=Captain Gearmost npc|notify|sound|5
Spawn1=Chamberlain XI npc|notify|sound|5
Spawn2=Commander Gearmost npc|notify|sound|5
Spawn3=Commander Shockmore npc|notify|sound|5
Spawn4=Engineer Tristos npc|notify|sound|5
Spawn5=Fuelmaster XXI npc|notify|sound|5
Spawn6=Garden Keeper IXV npc|notify|sound|5
Spawn7=Lerosma npc|notify|sound|5
Spawn8=Minotaur Warleader npc|notify|sound|5

[Gyrospire Zeka]
Spawn0=Chamberlain VI npc|notify|sound|5
Spawn1=Commander Gearwell npc|notify|sound|5
Spawn2=Engineer LXII npc|notify|sound|5
Spawn3=Fuelmaster XI npc|notify|sound|5
Spawn4=Repair Steamwork XIV npc|notify|sound|5
Spawn5=Shocktroop Commander XIX npc|notify|sound|5
Spawn6=Zeka Repairer III npc|notify|sound|5

[The Steam Factory]
Spawn0=Exterminator Mark V npc|notify|sound|5
Spawn1=Foreman Bronzecoat npc|notify|sound|5
Spawn2=Foundry Master Slagspring npc|notify|sound|5
Spawn3=Head Mechanic Binsprocket npc|notify|sound|5
Spawn4=Ironhorn npc|notify|sound|5
Spawn5=Oilslick npc|notify|sound|5
Spawn6=Quartermaster Thickgear npc|notify|sound|5
Spawn7=Slavemaster Gork npc|notify|sound|5
Spawn8=Station Attendant Sparkbolt npc|notify|sound|5
Spawn9=Steamwork Prototype Mark XIX npc|notify|sound|5

[Meldrath's Majecstic Mansion]
"Spawn0=Albereth, Top Chef" npc|notify|sound|5
Spawn1=Eldaroth npc|notify|sound|5
Spawn2=Findlewill npc|notify|sound|5
Spawn3=Garn Rocksmasher npc|notify|sound|5
Spawn4=Geartop npc|notify|sound|5
Spawn5=Glorb npc|notify|sound|5
Spawn6=Larth the Toad npc|notify|sound|5
Spawn7=Steamwork Trainer npc|notify|sound|5
Spawn8=The Hangman npc|notify|sound|5
Spawn9=Wizbobble npc|notify|sound|5

"[Crystallos, Lair of the Awakened]"
Spawn0=a shattered prismatic golem npc|notify|sound|5
Spawn1=An Ancient Earthen Drake npc|notify|sound|5
Spawn2=An Elder Air Drake npc|notify|sound|5
Spawn3=An Elder Air Wyvern npc|notify|sound|5
Spawn4=An Elder Earth Drake npc|notify|sound|5
Spawn5=An Elder Earth Wyvern npc|notify|sound|5
Spawn6=An Elder Fire Drake npc|notify|sound|5
Spawn7=An Elder Fire Wyvern npc|notify|sound|5
Spawn8=An Elder Ice Drake npc|notify|sound|5
Spawn9=An Elder Ice Wyvern npc|notify|sound|5
Spawn10=Heart of the Avalanche npc|notify|sound|5
Spawn11=Rockcrush npc|notify|sound|5
Spawn12=Squire Alkaa npc|notify|sound|5
Spawn13=Squire Tectoran npc|notify|sound|5
Spawn14=Squire Torrentus npc|notify|sound|5
Spawn15=Squire Zirkanamef npc|notify|sound|5
Spawn16=Vengeful Contained Elemental npc|notify|sound|5
Spawn17=Vengeful Trapped Elemental npc|notify|sound|5
Spawn18=Vengeful Captive Elemental npc|notify|sound|5

[Oceangreen Hills]
Spawn0=Blackburrow Nightstalker npc|notify|sound|5
Spawn1=Blackburrow Outcast npc|notify|sound|5
Spawn2=Guardian of the Glade npc|notify|sound|5
Spawn3=Gray Wolf Stalker npc|notify|sound|5
Spawn4=Klixcxyk npc|notify|sound|5
Spawn5=Putrescent Bonelord npc|notify|sound|5
Spawn6=Slitheren npc|notify|sound|5
Spawn7=Spark npc|notify|sound|5
Spawn8=The Bear Denmother npc|notify|sound|5
Spawn9=Wandering Soul npc|notify|sound|5
Spawn10=Wrathpaw npc|notify|sound|5

[Oceangreen Village]
Spawn0=a gravid fire beetle npc|notify|sound|5
Spawn1=Blightfang npc|notify|sound|5
Spawn2=Jelvalak the Tomblord npc|notify|sound|5
Spawn3=Malign npc|notify|sound|5
Spawn4=Master Putremancer Fellid npc|notify|sound|5
Spawn5=Megrima the Plaguecaller npc|notify|sound|5
Spawn6=The Blight Wisp npc|notify|sound|5
Spawn7=The Clay Beast npc|notify|sound|5
Spawn8=The Crimson Bat npc|notify|sound|5
Spawn9=Twisted Limb npc|notify|sound|5
Spawn10=Vileplume npc|notify|sound|5

[Blackburrow]
Spawn0=Axeweaver npc|notify|sound|5
Spawn1=Bloodreaper Veschtar npc|notify|sound|5
Spawn2=Brewmaster Drachty npc|notify|sound|5
Spawn3=Fleshsmith Raxtonar npc|notify|sound|5
Spawn4=Garght the Angry npc|notify|sound|5
Spawn5=High Commander Xantheos npc|notify|sound|5
Spawn6=High Shaman Lo`Eszch npc|notify|sound|5
Spawn7=Larq the Butcher npc|notify|sound|5
Spawn8=Mundunugu Rawl npc|notify|sound|5
Spawn9=Slavemaster Raouk npc|notify|sound|5
Spawn10=Snake Handler Graxos npc|notify|sound|5
Spawn11=Vileak the Fang npc|notify|sound|5

[Temple of Bertoxxulous]
Spawn0=High Priest of Bertoxxulous npc|notify|sound|5
Spawn1=Inquisitor Dalin npc|notify|sound|5
Spawn2=Malarian Mother npc|notify|sound|5
Spawn3=Putrid Assassin npc|notify|sound|5
Spawn4=Putrid Spirit npc|notify|sound|5
Spawn5=Steward of Bertoxxulous npc|notify|sound|5
Spawn6=The Doctor npc|notify|sound|5
Spawn7=Tsetsian Plaguelord npc|notify|sound|5
Spawn8=Zealot of Bertoxxulous npc|notify|sound|5

[Field of Scale]
Spawn0=an ancient bonegrinder npc|notify|sound|5
Spawn1=Battleguard Gauntas npc|notify|sound|5
Spawn2=Blackblade Lorkis npc|notify|sound|5
Spawn3=Darkcoil the Constrictor npc|notify|sound|5
Spawn4=Festersting the Diminutive npc|notify|sound|5
Spawn5=Fluttershade npc|notify|sound|5
Spawn6=Jracsza the Feral npc|notify|sound|5
Spawn7=Naskado the Demented npc|notify|sound|5
Spawn8=Oracle Vro`Zok npc|notify|sound|5
Spawn9=Slact the Frozen Hand npc|notify|sound|5

[Hatchery Wing]
Spawn0=Blademaster Kraszen npc|notify|sound|5
Spawn1=Eazack the Cruel npc|notify|sound|5
Spawn2=Grandmaster Merxs npc|notify|sound|5
Spawn3=Imperial Enforcer npc|notify|sound|5
Spawn4=Lich Guardian Ssicroz npc|notify|sound|5
Spawn5=Numbing Construct npc|notify|sound|5
Spawn6=Toriss the Protector npc|notify|sound|5

[Kaesora Library]
Spawn0=Aquadominus Selestian npc|notify|sound|5
Spawn1=Assistant Librarian Krekn npc|notify|sound|5
Spawn2=Chief Groundskeeper Dralnit npc|notify|sound|5
Spawn3=Corrupted Sentinel npc|notify|sound|5
"Spawn4=Grellik, Master of Torments" npc|notify|sound|5
"Spawn5=Hesila, Preceptor of Kaesora" npc|notify|sound|5
Spawn6=Library Director Eslisar npc|notify|sound|5
Spawn7=Skeleton Keymaster npc|notify|sound|5
Spawn8=Sorakan the Mighty npc|notify|sound|5
Spawn9=Teachers Pet npc|notify|sound|5
"Spawn10=Thisla, Twinskull Matron" npc|notify|sound|5

[Kurn's Tower]
Spawn0=Bite npc|notify|sound|5
Spawn1=Consersa npc|notify|sound|5
Spawn2=Cosensal npc|notify|sound|5
Spawn3=Estar npc|notify|sound|5
Spawn4=Isinente npc|notify|sound|5
Spawn5=Lieutenant Tenante npc|notify|sound|5
Spawn6=Louko npc|notify|sound|5
Spawn7=Mordid npc|notify|sound|5
Spawn8=Oracao npc|notify|sound|5
Spawn9=Protector Hilith npc|notify|sound|5
Spawn10=Researcher Neskuisa npc|notify|sound|5

[Bloody Kithicor]
Spawn0=a bixie soldier npc|notify|sound|5
Spawn1=a large grizzly npc|notify|sound|5
Spawn2=a large kodiak npc|notify|sound|5
Spawn3=an ebony stalker npc|notify|sound|5
Spawn4=Eliowie Dawnheart npc|notify|sound|5
Spawn5=Groomb Mystseer npc|notify|sound|5
Spawn6=Javrik K`Than npc|notify|sound|5
Spawn7=Loreth Soulanis npc|notify|sound|5
Spawn8=Razorfang npc|notify|sound|5
Spawn9=Wald Kormarin npc|notify|sound|5
Spawn10=Widow of the Woods npc|notify|sound|5

[Old Commonlands]
Spawn0=Brawler Gribnuk npc|notify|sound|5
Spawn1=Captain T`Shar npc|notify|sound|5
Spawn2=Commander K`Thak npc|notify|sound|5
Spawn3=Illusionist V`Shal npc|notify|sound|5
Spawn4=High Ritualist Valdeev npc|notify|sound|5
Spawn5=Necromancer Ythara npc|notify|sound|5
Spawn6=Sergeant Hylvar npc|notify|sound|5
Spawn7=Terrorvenom npc|notify|sound|5
Spawn9=Trapper Kravek npc|notify|sound|5

[Toskirakk]
Spawn0=Borskar npc|notify|sound|5
Spawn1=Brusk of Oggok npc|notify|sound|5
Spawn2=Captain Tregenek npc|notify|sound|5
Spawn3=Frundil npc|notify|sound|5
Spawn4=Graknar the Bull npc|notify|sound|5
Spawn5=Griddunk npc|notify|sound|5
Spawn6=Kuris the Garbage Eater npc|notify|sound|5
Spawn7=Sturk the Insane Froglok slave npc|notify|sound|5
Spawn8=Tonkk the Axestopper npc|notify|sound|5
Spawn9=Treblor the Slasher npc|notify|sound|5
Spawn10=Ulgren Vith npc|notify|sound|5
Spawn11=Vessa the Oracle npc|notify|sound|5
Spawn12=Vruten the Intendant npc|notify|sound|5

[Korascian Warrens]
Spawn0=Auliggis npc|notify|sound|5
Spawn1=Crystalline Auridont npc|notify|sound|5
Spawn2=Crystalline Pyrodont npc|notify|sound|5
Spawn3=Crystalline Sorcidont npc|notify|sound|5
Spawn4=Crystalline Thaumadont npc|notify|sound|5
Spawn5=Ezal npc|notify|sound|5
Spawn6=Fracture npc|notify|sound|5
Spawn7=Felsa Kabbek npc|notify|sound|5
Spawn8=General Grusix npc|notify|sound|5
Spawn9=Gradd the Mutineer npc|notify|sound|5
Spawn10=Mauk Peskysnout npc|notify|sound|5
Spawn11=Perd Kraknakk npc|notify|sound|5
Spawn12=Provost Vokk Raskk npc|notify|sound|5
Spawn13=Reuk the Portal Tender npc|notify|sound|5
Spawn14=Shem Saldon npc|notify|sound|5
Spawn15=Slaukk the Messcook npc|notify|sound|5
Spawn16=Uk npc|notify|sound|5

[Rathe Council Chambers]
Spawn0=Glithos npc|notify|sound|5
Spawn1=Glutch the Heap npc|notify|sound|5
Spawn2=The Rathe Librarian npc|notify|sound|5
Spawn3=Yoz`an the Ritualist npc|notify|sound|5

[Bloodfields]
Spawn1=Chaxyl npc|notify|sound|5
Spawn2=Emlyxi npc|notify|sound|5
Spawn3=Klygg npc|notify|sound|5
Spawn4=Kyris npc|notify|sound|5
Spawn5=Naddik npc|notify|sound|5
Spawn6=Noddri npc|notify|sound|5
Spawn7=Pherin the Traitor npc|notify|sound|5
Spawn8=Taath npc|notify|sound|5
Spawn9=Thangrel npc|notify|sound|5

[City of Dranik]
Spawn0=Cythkes npc|notify|sound|5
Spawn1=Maxantxora npc|notify|sound|5
Spawn2=Shzalk npc|notify|sound|5
Spawn3=Txenn npc|notify|sound|5
Spawn4=Ulkat npc|notify|sound|5
Spawn5=Xangef npc|notify|sound|5

[The Precipice of War]
Spawn0=Beguiler Chandra npc|notify|sound|5

"[Korafax, Home of the Riders]"
Spawn0=Attendant Xixkt npc|notify|sound|5
Spawn1=Bazu Warsmasher npc|notify|sound|5
Spawn2=Chainrender npc|notify|sound|5
Spawn3=Deathstalker npc|notify|sound|5
Spawn4=Dire Feran Mindrender npc|notify|sound|5
Spawn5=Grg`nok npc|notify|sound|5
Spawn6=Hexxt Shadowslayer npc|notify|sound|5
Spawn7=Hexxt Soulhunter npc|notify|sound|5
Spawn8=Noc Bloodswarmer npc|notify|sound|5
Spawn9=Overlord Gevalark the Dread npc|notify|sound|5
Spawn10=Pixxt Darkhammer npc|notify|sound|5
Spawn11=Pixxt Deathbinder npc|notify|sound|5
Spawn12=Spikemangler npc|notify|sound|5
Spawn13=Veltarik npc|notify|sound|5

[Brell's Rest]
Spawn0=Bermax Flamepaw npc|notify|sound|5
Spawn1=Cenobite Denuar npc|notify|sound|5
Spawn2=Champion Oricx npc|notify|sound|5
Spawn3=Cragma npc|notify|sound|5
Spawn4=Dargak the Warder npc|notify|sound|5
Spawn5=Defender Choxar npc|notify|sound|5
Spawn6=Guardian Romix npc|notify|sound|5
Spawn7=Hunter Nargik npc|notify|sound|5
Spawn8=Namirba Aelstrom npc|notify|sound|5
Spawn9=Neppigrim Raztupit npc|notify|sound|5
Spawn10=Slurid npc|notify|sound|5
Spawn11=Soothsayer Wroulf npc|notify|sound|5
Spawn12=Steamshear npc|notify|sound|5
Spawn13=Thornscrape npc|notify|sound|5
Spawn14=Vrolg the Charger npc|notify|sound|5

[The Cooling Chamber]
Spawn0=Acidic Goo npc|notify|sound|5
Spawn1=Zombie Deathmaker npc|notify|sound|5
Spawn2=Angram Coldheart npc|notify|sound|5
Spawn3=Bonechips npc|notify|sound|5
Spawn4=Donan Twest npc|notify|sound|5
Spawn5=Edward Coldbiter npc|notify|sound|5
Spawn6=Eldaa Kemph npc|notify|sound|5
Spawn7=Ephraim Deeprocks npc|notify|sound|5
Spawn8=Glindah Rockchip npc|notify|sound|5
Spawn9=Gnawing Goo npc|notify|sound|5
Spawn10=Rags npc|notify|sound|5
Spawn11=Rampaging Ghoul npc|notify|sound|5
Spawn12=Rock Crunch Goo npc|notify|sound|5
Spawn13=Shrieking Death npc|notify|sound|5
Spawn14=Tatters npc|notify|sound|5
Spawn15=Zendrilla the Dread npc|notify|sound|5

[Pellucid Grotto]
Spawn0=Anarchist Agitator Clatktu npc|notify|sound|5
Spawn1=Atopalit npc|notify|sound|5
Spawn2=Conical Terror npc|notify|sound|5
Spawn3=Foul Deeping Ooze npc|notify|sound|5
Spawn4=Gluttonous Sessiloid npc|notify|sound|5
Spawn5=Gyi the Lifter npc|notify|sound|5
Spawn6=Hergnan the Malefactor npc|notify|sound|5
Spawn7=Igeraun the Unstable npc|notify|sound|5
Spawn8=Ker-Klik-Klik npc|notify|sound|5
Spawn9=Laval Guardian npc|notify|sound|5
Spawn10=Mithril Guardian npc|notify|sound|5
Spawn11=Rock Guardian npc|notify|sound|5
Spawn12=Scour npc|notify|sound|5
Spawn13=Tratcita the Punisher npc|notify|sound|5
Spawn114=Xorus the Faceted npc|notify|sound|5

[Foundation]
Spawn0=a brass golem npc|notify|sound|5
Spawn1=a flint genati npc|notify|sound|5
Spawn2=a master hunter npc|notify|sound|5
Spawn3=a master scout npc|notify|sound|5
Spawn4=a master soldier npc|notify|sound|5
Spawn5=a red gold golem npc|notify|sound|5
Spawn6=a sand genati npc|notify|sound|5
Spawn7=Agriculturist Spong npc|notify|sound|5
Spawn8=Arabella npc|notify|sound|5
Spawn9=Creeping Mold npc|notify|sound|5
Spawn10=Fetid Boring Beetle npc|notify|sound|5
Spawn11=Merl npc|notify|sound|5
Spawn12=Ragbeard the Morose npc|notify|sound|5
Spawn13=Reborn Fetid Boring Beetle npc|notify|sound|5
Spawn14=Tilda Grintwisdom npc|notify|sound|5
Spawn15=Trag npc|notify|sound|5

[Underquarry]
Spawn0=a brass golem npc|notify|sound|5
Spawn1=a flint genati npc|notify|sound|5
Spawn2=a great brass golem npc|notify|sound|5
Spawn3=a master hunter npc|notify|sound|5
Spawn4=a master scout npc|notify|sound|5
Spawn5=a master soldier npc|notify|sound|5
Spawn6=a red gold golem npc|notify|sound|5
Spawn7=a sand genati npc|notify|sound|5
Spawn8=Envoy Gorta npc|notify|sound|5
Spawn9=Envoy Frindar npc|notify|sound|5
Spawn10=Envoy Therma npc|notify|sound|5
Spawn11=Grai npc|notify|sound|5
Spawn12=Regla npc|notify|sound|5
Spawn13=Tracker Eigorn Skullsmasher npc|notify|sound|5
Spawn14=Tracker Rocklin Hammertaker npc|notify|sound|5
Spawn15=Tracker Klarden Valorstriker npc|notify|sound|5

[Arthicrex]
Spawn1=a frenzied tender npc|notify|sound|5
Spawn2=a larval swarmer npc|notify|sound|5
Spawn3=a necrophatic ooze npc|notify|sound|5
Spawn4=Anoh Chex npc|notify|sound|5
Spawn5=Brax Nae npc|notify|sound|5
Spawn6=Blightcap npc|notify|sound|5
Spawn7=Cephuloid Tatraatix npc|notify|sound|5
Spawn8=Cinderweb npc|notify|sound|5
Spawn9=Gomphus npc|notify|sound|5
Spawn10=Harvester Collyx npc|notify|sound|5
Spawn11=The Hive Nurse npc|notify|sound|5
Spawn12=Jalymandix npc|notify|sound|5
Spawn13=Sol Nox npc|notify|sound|5
Spawn14=Xax npc|notify|sound|5

"[Kernagir, The Shining City]"
Spawn0=a Wary Guard npc|notify|sound|5
Spawn1=A Cliknar Invader npc|notify|sound|5
Spawn2=A Guard npc|notify|sound|5
Spawn3=A Raging Gygin npc|notify|sound|5
Spawn4=A Resonating Crystalkin npc|notify|sound|5
Spawn5=A Rogue Builder npc|notify|sound|5
Spawn6=An Abraded Genari npc|notify|sound|5
Spawn7=An Energetic Guardian npc|notify|sound|5
Spawn8=An Overgrown Crystalkin npc|notify|sound|5
Spawn9=An Oversized Burynai npc|notify|sound|5
"Spawn10=Bekthar, Kobold Mob Leader" npc|notify|sound|5
"Spawn11=Granth, The Mad Sizentist" npc|notify|sound|5
Spawn12=Harbinger Of The Undying One npc|notify|sound|5
"Spawn13=Sirana, the Knife Mistress" npc|notify|sound|5
Spawn14=Tani The Fire Alchemist npc|notify|sound|5
"Spawn15=Trelinna, Lady of Pain" npc|notify|sound|5

[Fungal Forest]
Spawn0=Azurestrike npc|notify|sound|5
Spawn1=Ceannaire npc|notify|sound|5
Spawn2=Creeping Deathspore npc|notify|sound|5
Spawn3=Deaths Hand npc|notify|sound|5
Spawn4=Enforcer Stoutspore npc|notify|sound|5
Spawn5=Fungalshock npc|notify|sound|5
Spawn6=Gaiscioch npc|notify|sound|5
Spawn7=Gore npc|notify|sound|5
Spawn8=Hungry Earth npc|notify|sound|5
Spawn9=Orangeback npc|notify|sound|5
Spawn10=Ring npc|notify|sound|5
Spawn11=Silent Death npc|notify|sound|5
Spawn12=Solenopsis npc|notify|sound|5
Spawn13=Sporeflame npc|notify|sound|5
Spawn14=Uisce npc|notify|sound|5

[Lichen Creep]
Spawn0=Ancill the Collector npc|notify|sound|5
Spawn1=Steamed Mephit npc|notify|sound|5
Spawn2=Anvil Golem npc|notify|sound|5
Spawn3=Ash Golem npc|notify|sound|5
Spawn4=Cliknar Hunter npc|notify|sound|5
Spawn5=Cliknar Ravager npc|notify|sound|5
Spawn6=Confused Greken Pup npc|notify|sound|5
Spawn7=Dwarven Stalwart npc|notify|sound|5
Spawn8=Flame Spirit npc|notify|sound|5
Spawn9=Frantic Sporali npc|notify|sound|5
Spawn10=Gnomish Rockomancer npc|notify|sound|5
Spawn11=Gygin Enforcer npc|notify|sound|5
Spawn12=Maddened Mephit npc|notify|sound|5
Spawn13=Mephit Workmaster npc|notify|sound|5
Spawn14=Sessiloid Calcifier npc|notify|sound|5

[Brell's Temple]
Spawn0=Empowered Reflection npc|notify|sound|5
Spawn1=Gigyn Brute npc|notify|sound|5
Spawn2=Misshapen Formation npc|notify|sound|5
Spawn3=Naglebrak npc|notify|sound|5
Spawn4=Pristine Creation npc|notify|sound|5
Spawn5=Rockslide npc|notify|sound|5
Spawn6=The Groundskeeper npc|notify|sound|5

[Volska's Husk]
Spawn0=Deathspore npc|notify|sound|5
Spawn1=Foreman Growl npc|notify|sound|5
Spawn2=Mature Greken npc|notify|sound|5
Spawn3=Mistress Lisjani npc|notify|sound|5
Spawn4=Scout Flametongue npc|notify|sound|5
Spawn5=Skin Borer Beetle npc|notify|sound|5
Spawn6=Stoneskull Spider npc|notify|sound|5
Spawn7=Slag Golem npc|notify|sound|5
Spawn8=Taskmaster Jialli npc|notify|sound|5
Spawn9=Trickster Flamescar npc|notify|sound|5

[The Convorteum]
Spawn0=A Blazing Basilisk npc|notify|sound|5
Spawn1=Alysse the Librarian npc|notify|sound|5
Spawn2=Animated Lava npc|notify|sound|5
Spawn3=Apexus Enforcer npc|notify|sound|5
Spawn4=Apexus Punisher npc|notify|sound|5
Spawn5=Armethis Keenslice npc|notify|sound|5
Spawn6=Bellikos Bloodsiren npc|notify|sound|5
Spawn7=Deformed Firebug npc|notify|sound|5
Spawn8=Gressie npc|notify|sound|5
Spawn9=Leviathan npc|notify|sound|5
Spawn10=Lithographer Bakaan npc|notify|sound|5
Spawn11=Mistress of Pain npc|notify|sound|5
Spawn12=Priestess of the First npc|notify|sound|5
Spawn13=Sergeant Deepwater npc|notify|sound|5
Spawn14=Slaggard the Smelter npc|notify|sound|5
Spawn15=Spitting Firebug npc|notify|sound|5
Spawn16=Summoner Netikos npc|notify|sound|5
Spawn17=The Collector npc|notify|sound|5
Spawn18=The Scavenger Subjugator npc|notify|sound|5
Spawn19=Twisted Handmaiden npc|notify|sound|5
Spawn20=Warden Bindleskin npc|notify|sound|5

[Al'Kabor's Nightmare]
Spawn0=Drenz npc|notify|sound|5
Spawn1=Emperor Crush npc|notify|sound|5
Spawn2=General Jyleel npc|notify|sound|5
Spawn3=Graster npc|notify|sound|5
Spawn4=Heartwood Master npc|notify|sound|5
Spawn5=Jenni Hollowfield npc|notify|sound|5
Spawn6=Mooto npc|notify|sound|5
Spawn7=Plaguebone Overlord npc|notify|sound|5
Spawn8=Priest of Discord npc|notify|sound|5
Spawn9=Princess Klaknak npc|notify|sound|5
Spawn10=Queen Klaknak npc|notify|sound|5
Spawn11=Winfrey the Mad npc|notify|sound|5
Spawn12=Zyren Shadowriver npc|notify|sound|5

[Erudin Burning]
Spawn0=Brutus npc|notify|sound|5
Spawn1=Damar the Overseer npc|notify|sound|5
Spawn2=Femurstack npc|notify|sound|5
Spawn3=Garnak Pryphan npc|notify|sound|5
Spawn4=Handar Prentius npc|notify|sound|5
Spawn5=Hulkenring npc|notify|sound|5
Spawn6=Kanah the Heartslicer npc|notify|sound|5
Spawn7=Maggotscalp npc|notify|sound|5
Spawn8=The Tome-Eater npc|notify|sound|5
Spawn9=Vindel the Ripper npc|notify|sound|5


[The Feerrott]
Spawn0=Blackbone npc|notify|sound|5
Spawn1=Bouncer Captain Grak npc|notify|sound|5
Spawn2=Bouncer Flerba npc|notify|sound|5
Spawn3=Bouncer Fuga npc|notify|sound|5
Spawn4=Bouncer Hurda npc|notify|sound|5
Spawn5=Bouncer Pruda npc|notify|sound|5
Spawn6=Cyndreelaa npc|notify|sound|5
Spawn7=Diggory the Traveller npc|notify|sound|5
Spawn8=Donna the Explorer npc|notify|sound|5
Spawn9=Enraged Gorilla Patriarch npc|notify|sound|5
Spawn10=Expedition Leader Krupp npc|notify|sound|5
Spawn11=Fearful Spectre npc|notify|sound|5
Spawn12=Festerback npc|notify|sound|5
Spawn13=Huetzin the Brute npc|notify|sound|5
Spawn14=Malice npc|notify|sound|5
Spawn15=Patches npc|notify|sound|5
Spawn16=Sable npc|notify|sound|5
Spawn17=Sentinel Quilaztli npc|notify|sound|5
Spawn18=Shaman Ixchell npc|notify|sound|5
Spawn19=Tanglewolf Alpha npc|notify|sound|5
Spawn20=Temilotzin the Zealot npc|notify|sound|5
Spawn21=Terror Unleashed npc|notify|sound|5
Spawn22=The Leaper npc|notify|sound|5
Spawn23=Vermillion npc|notify|sound|5
Spawn24=Voracious Feeder npc|notify|sound|5
Spawn25=Watcher Yaotl npc|notify|sound|5
Spawn26=Whitepaw npc|notify|sound|5
Spawn27=Xiucozcatl the Feared npc|notify|sound|5

[House of Thule]
Spawn0=Bonecracker npc|notify|sound|5
Spawn1=Darnor the Terror Lord npc|notify|sound|5
Spawn2=Dreameater npc|notify|sound|5
Spawn3=Dreamslayer npc|notify|sound|5
Spawn4=Executioner Brand npc|notify|sound|5
Spawn5=Fearhowler npc|notify|sound|5
Spawn6=Fearsniffer npc|notify|sound|5
Spawn7=Ganborn npc|notify|sound|5
Spawn8=Gibbering Haunt npc|notify|sound|5
Spawn9=Giblets npc|notify|sound|5
Spawn10=Gristle npc|notify|sound|5
Spawn11=Isabeaux Darkdreamer npc|notify|sound|5
Spawn12=Korlofa npc|notify|sound|5
Spawn13=Nightmare Golem npc|notify|sound|5
Spawn14=Nightmare Widow npc|notify|sound|5
Spawn15=Nightscale npc|notify|sound|5
Spawn16=Old Rusty npc|notify|sound|5
Spawn17=Shaman Jor npc|notify|sound|5
Spawn18=Sleepeater npc|notify|sound|5
Spawn19=The Executioner npc|notify|sound|5

"[House of Thule, Upper Floors]"
Spawn0=Angry Galo Maric npc|notify|sound|5
Spawn1=Bloodmane npc|notify|sound|5
Spawn2=Bodabas npc|notify|sound|5
Spawn3=Deceiver Abbit npc|notify|sound|5
Spawn4=Enraged Khalis npc|notify|sound|5
Spawn5=Icefang npc|notify|sound|5
Spawn6=Icy Devourer npc|notify|sound|5
Spawn7=Morzad Agenta npc|notify|sound|5
Spawn8=Morzad Aircastera npc|notify|sound|5
Spawn9=Morzad Earthcastera npc|notify|sound|5
Spawn10=Morzad Firecastera npc|notify|sound|5
Spawn11=Morzad Watercastera npc|notify|sound|5
Spawn12=Nightfang npc|notify|sound|5
Spawn13=Profane Fienda npc|notify|sound|5
Spawn14=Rotticus npc|notify|sound|5
Spawn15=Spitecrawler npc|notify|sound|5
Spawn16=Swindler Keega npc|notify|sound|5
Spawn17=Swirling Fog Elemental npc|notify|sound|5

[Miragul's Nightmare]
Spawn0=Bloodfeather npc|notify|sound|5
Spawn1=Fearstalker npc|notify|sound|5
Spawn2=Foeslicer npc|notify|sound|5
Spawn3=Gilibus the Unseen npc|notify|sound|5
Spawn4=Iglum the Deformed npc|notify|sound|5
Spawn5=Shadowlord Gixblat npc|notify|sound|5
Spawn6=Sotor the Unmerciful npc|notify|sound|5
Spawn7=Soul Taster npc|notify|sound|5

[Morell's Castle]
Spawn0=Bielaisk npc|notify|sound|5
Spawn1=Bishop the Scorned npc|notify|sound|5
Spawn2=Chief Maeder npc|notify|sound|5
Spawn3=Daelai npc|notify|sound|5
Spawn4=Dreamweaver npc|notify|sound|5
Spawn5=Esmeralda the Vengeful npc|notify|sound|5
Spawn6=Feral Jackrabbit npc|notify|sound|5
Spawn7=Forest Phantasm npc|notify|sound|5
Spawn8=Gezriela npc|notify|sound|5
Spawn9=Gnarlvine npc|notify|sound|5
Spawn10=Greeta npc|notify|sound|5
Spawn11=Guardian Ather npc|notify|sound|5
Spawn12=Hans npc|notify|sound|5
Spawn13=Nesseun npc|notify|sound|5
Spawn14=Omander the Devoted npc|notify|sound|5
Spawn15=Oruff the Seer npc|notify|sound|5
Spawn16=Redmur Dreamlancer npc|notify|sound|5
Spawn17=Seawitch Persion npc|notify|sound|5
Spawn18=Silbacle npc|notify|sound|5
Spawn19=Songstress Laioni npc|notify|sound|5
Spawn20=Speckles npc|notify|sound|5
Spawn21=The Constructor npc|notify|sound|5
Spawn22=The Puppeteer npc|notify|sound|5
Spawn23=Wisp of Hope npc|notify|sound|5
Spawn24=Zerkelos the Damned npc|notify|sound|5

[Sanctum Somnium]
Spawn0=a bright warden npc|notify|sound|5
Spawn1=a giant warlord npc|notify|sound|5
Spawn2=a psychotic leprechaun npc|notify|sound|5
Spawn3=a spellsword guardian npc|notify|sound|5
Spawn4=a spellward servant npc|notify|sound|5
Spawn5=Arcane Warden npc|notify|sound|5
Spawn6=Archmagus Erlen npc|notify|sound|5
Spawn7=Archmagus Nesalie npc|notify|sound|5
Spawn8=Beast King npc|notify|sound|5
Spawn9=Bladedancer Guardian npc|notify|sound|5
Spawn10=Conjurer Nallen npc|notify|sound|5
Spawn11=Demonologist Sharra npc|notify|sound|5
Spawn12=Dream Collector npc|notify|sound|5
Spawn13=Dream Destroyer npc|notify|sound|5
Spawn14=Executioner Bashka npc|notify|sound|5
Spawn15=Flesheating Beetle npc|notify|sound|5
Spawn16=a goblin raid leader npc|notify|sound|5
Spawn17=High Priest Casmion npc|notify|sound|5
Spawn18=High Priest Darsia npc|notify|sound|5
Spawn19=Knight Captain Elena npc|notify|sound|5
Spawn20=Knight Captain Rosch npc|notify|sound|5
Spawn21=Larrow the Demented npc|notify|sound|5
Spawn22=a lifeweaver servant npc|notify|sound|5
Spawn23=Master Thief Quentin npc|notify|sound|5
Spawn24=Rites Master Lorett npc|notify|sound|5
Spawn25=a shadow warden npc|notify|sound|5
Spawn26=a shieldbearer guardian npc|notify|sound|5
Spawn27=a soulmage servant npc|notify|sound|5

[The Grounds]
Spawn0=Agraena npc|notify|sound|5
Spawn1=Andrevas npc|notify|sound|5
Spawn2=Angry Wasp npc|notify|sound|5
Spawn3=Arenrhaed npc|notify|sound|5
Spawn4=Argamis npc|notify|sound|5
Spawn5=Beget Cube npc|notify|sound|5
Spawn6=Biunahde npc|notify|sound|5
Spawn7=Bulwark of the Orchard npc|notify|sound|5
Spawn8=Chaotic Heap npc|notify|sound|5
Spawn9=Compost Cube npc|notify|sound|5
Spawn10=Constable Erulin npc|notify|sound|5
Spawn11=Croakem npc|notify|sound|5
Spawn12=Distraught Heap npc|notify|sound|5
Spawn13=Faernoc npc|notify|sound|5
Spawn14=Granger Rivenbel npc|notify|sound|5
Spawn15=Grigoran npc|notify|sound|5
Spawn16=Helias npc|notify|sound|5
Spawn17=Kijaemz npc|notify|sound|5
Spawn18=Lost Golem npc|notify|sound|5
Spawn19=Minadra npc|notify|sound|5
Spawn20=Patch Guardian npc|notify|sound|5
Spawn21=Pelias npc|notify|sound|5
Spawn22=Raze npc|notify|sound|5
Spawn23=Rend npc|notify|sound|5
Spawn24=Riggbit npc|notify|sound|5
Spawn25=Slynassin npc|notify|sound|5
Spawn26=Venilinam npc|notify|sound|5
Spawn27=Vicious Gourd npc|notify|sound|5
Spawn28=Vile Wasp npc|notify|sound|5
Spawn29=Zonoraz npc|notify|sound|5

[The Library]
Spawn0=Archivist Herrdar npc|notify|sound|5
Spawn1=Ardull the Watcher npc|notify|sound|5
Spawn2=Assistant Librarian Vesrad npc|notify|sound|5
Spawn3=Chronicler Cerro npc|notify|sound|5
Spawn4=Compendium of Nightmares npc|notify|sound|5
Spawn5=Curator Majda npc|notify|sound|5
Spawn6=Head Librarian Matilda npc|notify|sound|5
Spawn7=Professor Glumb npc|notify|sound|5
Spawn8=Tome of the Fallen npc|notify|sound|5

[The Well]
Spawn0=Death Spider npc|notify|sound|5
Spawn1=Death Stinger npc|notify|sound|5
Spawn2=Doom Snake npc|notify|sound|5
Spawn3=Fetid Spider npc|notify|sound|5
Spawn4=Maorda npc|notify|sound|5
Spawn5=The Adversary npc|notify|sound|5
[Fear Itself]
spawn0=Ancient Dracoliche npc|notify|sound|5
spawn1=Argendev npc|notify|sound|5
spawn2=Decrepit Warder npc|notify|sound|5
spawn3=Deranged Toad npc|notify|sound|5
spawn4=Dread npc|notify|sound|5
spawn5=Dyalgem npc|notify|sound|5
spawn6=Engorged Spinechiller npc|notify|sound|5
spawn7=Essence of Terror npc|notify|sound|5
spawn8=Giant Phoboplasm npc|notify|sound|5
spawn9=Irak Altil npc|notify|sound|5
spawn10=Ireblind Imp npc|notify|sound|5
spawn11=Iron Fist npc|notify|sound|5
spawn12=Katerra the Anguished npc|notify|sound|5
spawn13=Lorenai npc|notify|sound|5
spawn14=Mastelyn npc|notify|sound|5
spawn15=Mindleech npc|notify|sound|5
spawn16=Nightmare of Thule npc|notify|sound|5
spawn17=Odium npc|notify|sound|5
spawn18=Possessed Samhain npc|notify|sound|5
spawn19=Rerekalen npc|notify|sound|5
spawn20=Shade of Cazic Thule npc|notify|sound|5
spawn21=Shakare npc|notify|sound|5
spawn22=Sharuleth npc|notify|sound|5
spawn23=Tempest Reaver npc|notify|sound|5
spawn24=Twisted Tormentor npc|notify|sound|5
spawn25=Undaleen npc|notify|sound|5
spawn26=Undead Shiverback npc|notify|sound|5
spawn27=Vendula npc|notify|sound|5
spawn28=Wraith of a Shissar npc|notify|sound|5
spawn29=Xoraik npc|notify|sound|5
spawn30=Zykean npc|notify|sound|5
spawn31=#Fright npc
spawn32=#Terror npc|notify|sound|5

"[Argath, Bastion of Illdaera]"
Spawn0=Armor of the Dead npc|notify|sound|5
Spawn1=Bane of Argath npc|notify|sound|5
Spawn2=Blademaster of the Order npc|notify|sound|5
Spawn3=Blades of Forgotten Heroes npc|notify|sound|5
Spawn4=Breath of Ryken npc|notify|sound|5
Spawn5=Burnmaster of the Pillars npc|notify|sound|5
Spawn6=Core of the Mountain npc|notify|sound|5
Spawn7=Emissary Drucifel npc|notify|sound|5
Spawn8=Felsalath npc|notify|sound|5
Spawn9=Gravemaster of the Pillars npc|notify|sound|5
Spawn10=Husk of Starvation npc|notify|sound|5
Spawn11=Illdaera's Tear npc|notify|sound|5
Spawn12=Interrogator Galectes npc|notify|sound|5
Spawn13=Kaledor the Tide Turner npc|notify|sound|5
Spawn14=Kalkek npc|notify|sound|5
Spawn15=Keramar the Naeya npc|notify|sound|5
Spawn16=Legendary Swords npc|notify|sound|5
Spawn17=Reviler of Argath npc|notify|sound|5
Spawn18=Seed of Battle npc|notify|sound|5
Spawn19=Shards of Battle npc|notify|sound|5
Spawn20=Shieldbearer of the Gods npc|notify|sound|5
Spawn21=Tactician Crucidon npc|notify|sound|5
Spawn22=The Collector npc|notify|sound|5
Spawn23=Vigorous Turncoat npc|notify|sound|5

[Valley of Lunanyn]
Spawn0=An angry mob leader npc|notify|sound|5
Spawn1=Archon Haerin npc|notify|sound|5
Spawn2=Enraged Fertility Spirit npc|notify|sound|5
Spawn3=Hungry Spirit npc|notify|sound|5
Spawn4=Lancer Archon Gaoril npc|notify|sound|5
Spawn5=Moonshade npc|notify|sound|5
"Spawn6=Nareneth, the Heart Tree" npc|notify|sound|5
Spawn7=Overgrown Dung Beetle npc|notify|sound|5
Spawn8=Supply Archon Tergat npc|notify|sound|5
Spawn9=The Moonflower npc|notify|sound|5
Spawn10=Aethra the Mad npc|notify|sound|5
Spawn11=Aggrieved Fertility Spirit npc|notify|sound|5
"Spawn12=Arth, Village Guardian" npc|notify|sound|5
Spawn13=Bloodborn Spirit npc|notify|sound|5
Spawn14=Blood npc|notify|sound|5
Spawn15=Bloodstalker npc|notify|sound|5
Spawn16=Elsha the Mournful npc|notify|sound|5
Spawn17=Ker Reega npc|notify|sound|5
Spawn18=Kongar the Enrager npc|notify|sound|5
Spawn19=Lor Reega npc|notify|sound|5
Spawn20=Oashim Progenitor npc|notify|sound|5
Spawn21=Ranger Arcon Daetas npc|notify|sound|5
Spawn22=Taer Reega npc|notify|sound|5
Spawn23=The Battlesteel Dead npc|notify|sound|5
Spawn24=Trooper Arcon Feht npc|notify|sound|5
"Spawn25=Urash, Specter of Death" npc|notify|sound|5

"[Sarith, City of Tides]"
Spawn0=Assassin Thale npc|notify|sound|5
Spawn1=Battlemage Resk npc|notify|sound|5
Spawn2=Bishop Kyzer npc|notify|sound|5
Spawn3=Captain Dahlena npc|notify|sound|5
Spawn4=Dark Mage Naxin npc|notify|sound|5
Spawn5=Death Knight Sharris npc|notify|sound|5
Spawn6=Kaneida npc|notify|sound|5
Spawn7=Lieutenant Vasko npc|notify|sound|5
Spawn8=Life Knight Jasul npc|notify|sound|5
Spawn9=Master Trainer Ganelin npc|notify|sound|5
Spawn10=Ocean Mage Rettun npc|notify|sound|5
Spawn11=Oseka's Chosen Ikallis npc|notify|sound|5
Spawn12=Primal Mage Mollens npc|notify|sound|5
Spawn13=Sarith's Guardian npc|notify|sound|5
Spawn14=Sea Ranger Huren npc|notify|sound|5
Spawn15=Tactician Perak npc|notify|sound|5
Spawn16=The Giant Crab npc|notify|sound|5
Spawn17=The Kraken npc|notify|sound|5
Spawn18=The Megaladon npc|notify|sound|5
Spawn19=Tidalmage Narens npc|notify|sound|5

[Rubak Oseka]
Spawn0=Curate Zlinair npc|notify|sound|5
Spawn1=Evangelizer Runarn npc|notify|sound|5
Spawn2=Holy Ophidian npc|notify|sound|5
Spawn3=Sacred Ophidian npc|notify|sound|5
Spawn4=Slorn the Holy npc|notify|sound|5
Spawn5=Templar Razkin npc|notify|sound|5
Spawn6=Tiuanid the Faithful npc|notify|sound|5
Spawn7=Zealot of Oseka npc|notify|sound|5

[Beasts' Domain]
Spawn0=A Twisted Stangler npc|notify|sound|5
Spawn1=An Ancient Selyrah npc|notify|sound|5
Spawn2=Blightwing npc|notify|sound|5
Spawn3=Bonecracker npc|notify|sound|5
Spawn4=Bonecrusher npc|notify|sound|5
Spawn5=Bopo npc|notify|sound|5
Spawn6=Deathglider npc|notify|sound|5
Spawn7=Deathleaper npc|notify|sound|5
Spawn8=Deathsquirm npc|notify|sound|5
Spawn9=Elder Gotikan npc|notify|sound|5
Spawn10=Jorth Hunter of Beasts npc|notify|sound|5
Spawn11=Karn the Hunter npc|notify|sound|5
Spawn12=King Rex npc|notify|sound|5
Spawn13=Maw Lurker npc|notify|sound|5
Spawn14=Nighthowl npc|notify|sound|5
Spawn15=Nightleaper npc|notify|sound|5
Spawn16=Ribcrusher npc|notify|sound|5
Spawn17=Slaughter npc|notify|sound|5
Spawn18=Stonebark npc|notify|sound|5
Spawn19=Stranglefang npc|notify|sound|5
Spawn20=Swiftwind npc|notify|sound|5
Spawn21=Tangledeath npc|notify|sound|5
Spawn22=Thundercut npc|notify|sound|5
Spawn23=Thunderpunch npc|notify|sound|5
Spawn24=Willowcrush npc|notify|sound|5

[Resplendent Temple]
Spawn0=Advisor Enaris npc|notify|sound|5
Spawn1=Afton the Cleanser npc|notify|sound|5
Spawn2=Ambassador Khorin npc|notify|sound|5
Spawn3=An Animated Servant npc|notify|sound|5
Spawn4=Arms Master Hegul npc|notify|sound|5
Spawn5=Chancellor Mardis npc|notify|sound|5
Spawn6=Chief Recruiter Joceil npc|notify|sound|5
"Spawn7=Cijerst, Lord of Decay" npc|notify|sound|5
Spawn8=Gisette npc|notify|sound|5
Spawn9=Grimlop npc|notify|sound|5
Spawn10=Groundskeeper Areut npc|notify|sound|5
Spawn11=High Guard Alsera npc|notify|sound|5
Spawn12=High Priest Nelori npc|notify|sound|5
Spawn13=Hiqork the Putrid npc|notify|sound|5
Spawn14=An Ivory Serpent npc|notify|sound|5
Spawn15=King Piqiorn npc|notify|sound|5
Spawn16=King Zarq npc|notify|sound|5
Spawn17=Larsena the Lunatic npc|notify|sound|5
Spawn18=Miggles npc|notify|sound|5
Spawn19=Pledgemaster Oeslik npc|notify|sound|5
Spawn20=A Prismatic Selyrah npc|notify|sound|5
Spawn21=The Rat Queen npc|notify|sound|5
Spawn22=The Slothlord npc|notify|sound|5
Spawn23=Summoner Sirqo npc|notify|sound|5
Spawn24=Ungimar npc|notify|sound|5

[Pillars of Alra]
Spawn0=Cysivir the Construction npc|notify|sound|5
Spawn1=Il'Valrikar the Purifier npc|notify|sound|5
Spawn2=Ivrikdal the Infuser npc|notify|sound|5
Spawn3=Korellister the Stoic npc|notify|sound|5
Spawn4=Opholonas the Harvester npc|notify|sound|5
Spawn5=Peacekeeper of Anriella npc|notify|sound|5
Spawn6=Peacekeeper of Erion npc|notify|sound|5
Spawn7=Peacekeeper of Fal`Kaa npc|notify|sound|5
Spawn8=Peacekeeper of Melretia npc|notify|sound|5
Spawn9=Soliadal the Timid npc|notify|sound|5
Spawn10=The Ut`len Depthkeeper npc|notify|sound|5
Spawn11=Tonmek the Mind npc|notify|sound|5
Spawn12=Tsianvar the Studious npc|notify|sound|5
Spawn13=an unusual creature npc|notify|sound|5
Spawn14=V`Dralk the Construct of Shade npc|notify|sound|5
Spawn15=Vak`Ridel the Shadowcaller npc|notify|sound|5
Spawn16=Varinyr the Construct of Life npc|notify|sound|5
Spawn17=Wreliard the Arctender npc|notify|sound|5

[Windsong Sanctuary]
Spawn0=Breezeglider npc|notify|sound|5
Spawn1=The Conductor npc|notify|sound|5
Spawn2=A Fleetfooted Braxi npc|notify|sound|5
Spawn3=The Forlorn Drummer npc|notify|sound|5
Spawn4=The Hornmaster npc|notify|sound|5
Spawn5=Riffmaz the Flute Master npc|notify|sound|5
Spawn6=Saduulj Tsepir npc|notify|sound|5
Spawn7=Stormcaller npc|notify|sound|5
Spawn8=Unvoiced Brute npc|notify|sound|5
Spawn9=The Windrunner npc|notify|sound|5

[City of Bronze]
Spawn0=Archon Kinafu npc|notify|sound|5
Spawn1=Archon Norandi npc|notify|sound|5
Spawn2=Blacksmith Julandi npc|notify|sound|5
Spawn3=Bloodclaw npc|notify|sound|5
Spawn4=Carnifex Korum npc|notify|sound|5
Spawn5=Citizen Jlane npc|notify|sound|5
Spawn6=Citizen Julazir npc|notify|sound|5
Spawn7=Citizen Silaindi npc|notify|sound|5
Spawn8=Cook Goranan npc|notify|sound|5
Spawn9=Deathsqueak npc|notify|sound|5
Spawn10=Fuandir the Master Plotter npc|notify|sound|5
Spawn11=Guard Horlian npc|notify|sound|5
Spawn12=Guard Tuankod npc|notify|sound|5
Spawn13=Guard Tulzix npc|notify|sound|5
Spawn14=Guggles npc|notify|sound|5
Spawn15=A Rabid Selyrah npc|notify|sound|5
Spawn16=A Raging Braxi npc|notify|sound|5
Spawn17=The Record Master npc|notify|sound|5

[Sepulcher of Order]
Spawn0=Agralta npc|notify|sound|5
Spawn1=Alsara the Ansel Ereth npc|notify|sound|5
Spawn2=Bonemeal npc|notify|sound|5
Spawn3=Champion of the Triumvirate npc|notify|sound|5
Spawn4=The Chosen npc|notify|sound|5
Spawn5=Clampgrit npc|notify|sound|5
Spawn6=The Cleaner npc|notify|sound|5
Spawn7=The Dark npc|notify|sound|5
Spawn8=Deepblade npc|notify|sound|5
Spawn9=The Digger npc|notify|sound|5
Spawn10=Eldanum of the Ser Alsa npc|notify|sound|5
Spawn11=The Exalted Ser Alsa Thel npc|notify|sound|5
Spawn12=Excrucidator npc|notify|sound|5
Spawn13=Gleaming Tricor npc|notify|sound|5
Spawn14=Kelkos the Berserk npc|notify|sound|5
Spawn15=Master Arcania npc|notify|sound|5
Spawn16=Master Illum npc|notify|sound|5
Spawn17=Mindlock npc|notify|sound|5
Spawn18=Paleodontis npc|notify|sound|5
Spawn19=Primordial Steel npc|notify|sound|5
Spawn20=Ryken's Boast npc|notify|sound|5
Spawn21=Shadow of the Domain
Spawn22=Spernal
Spawn23=Tegleth
Spawn24=Tendros
Spawn25=The Vine Tender
Spawn26=Wavecrasher
Spawn27=Word Lord

[Shard's Landing]
Spawn0=Alpha Naeya npc|notify|sound|5
Spawn1=Banescale Serpent npc|notify|sound|5
Spawn2=Cobalt npc|notify|sound|5
Spawn3=Elsrop the Crazed npc|notify|sound|5
Spawn4=Iremaw npc|notify|sound|5
Spawn5=Pincerpest npc|notify|sound|5
Spawn6=Plaguespine npc|notify|sound|5
Spawn7=Pyrebeak npc|notify|sound|5
Spawn8=Rockspine npc|notify|sound|5
Spawn9=Stonecoat npc|notify|sound|5
Spawn10=Vilefeaster npc|notify|sound|5

[The Breeding Grounds]
Spawn0=A Vicious Hatchling npc|notify|sound|5
Spawn1=Akyail npc|notify|sound|5
Spawn2=Charra npc|notify|sound|5
Spawn3=Edoth the Ancient npc|notify|sound|5
Spawn4=Gosik npc|notify|sound|5
Spawn5=Iciclane npc|notify|sound|5
Spawn6=King Itkari npc|notify|sound|5
Spawn7=Nefori npc|notify|sound|5
Spawn8=Osalur npc|notify|sound|5
Spawn9=Seros npc|notify|sound|5
Spawn10=Velishan npc|notify|sound|5
Spawn11=Zalifur npc|notify|sound|5

[East Wastes: Zeixshi-Kar's Awakening]
Spawn0=Boradain Glacierbane npc|notify|sound|5
Spawn1=Chief Ry npc|notify|sound|5
Spawn2=Corbin Blackwell npc|notify|sound|5
Spawn3=Drummon Coldshanks npc|notify|sound|5
Spawn4=Ekelng Thunderstone npc|notify|sound|5
Spawn5=Firband the Black npc|notify|sound|5
Spawn6=Fjloaren Icebane npc|notify|sound|5
Spawn7=Galrok the Cold npc|notify|sound|5
Spawn8=Ghrek Squatnot npc|notify|sound|5
Spawn9=Kurlok the Mad npc|notify|sound|5
Spawn10=Nightmane npc|notify|sound|5
Spawn11=Tain Hammerfrost npc|notify|sound|5
Spawn12=Tungo npc|notify|sound|5
Spawn13=Warden Bruke npc|notify|sound|5
Spawn14=Yngaln the Frozen npc|notify|sound|5

"[Grelleth's Palace, the Chateau of Filth]"
Spawn0=Beast Caller Plakt npc|notify|sound|5
Spawn1=Cook Mul npc|notify|sound|5
Spawn2=Dark Ritualist Kopp npc|notify|sound|5
Spawn3=War Machine npc|notify|sound|5
Spawn4=Junkcrafter Nint npc|notify|sound|5
Spawn5=Palace Commander Eroll npc|notify|sound|5
Spawn6=Penkal the Filth Master npc|notify|sound|5
Spawn7=Polluter Staunk npc|notify|sound|5
Spawn8=Rotblade Klonda npc|notify|sound|5
Spawn9=Stitches npc|notify|sound|5
Spawn10=The Forgotten Murderer npc|notify|sound|5

[The Crystal Caverns: Fragment of Fear]
Spawn0=Queen Dracnia npc|notify|sound|5
Spawn1=A Crystal Lurker npc|notify|sound|5
Spawn2=A Dracnid Retainer npc|notify|sound|5
Spawn3=A Focus Gem npc|notify|sound|5
Spawn4=A Gem Collector npc|notify|sound|5
Spawn5=A Hollow Crystal npc|notify|sound|5
Spawn6=A Life Leech npc|notify|sound|5
Spawn7=A Ry`Gorr Enforcer npc|notify|sound|5
Spawn8=A Ry`Gorr Herbalist npc|notify|sound|5
Spawn9=A Ry`Gorr Inspector npc|notify|sound|5
Spawn10=A Stalag Purifier npc|notify|sound|5
Spawn11=A Terror Carver npc|notify|sound|5 
Spawn12=Fear Tainted Tentacle npc|notify|sound|5
Spawn13=Foreman Rixact npc|notify|sound|5
Spawn14=Foreman Smason npc|notify|sound|5
Spawn15=Kreztik npc|notify|sound|5
Spawn16=Overseer Grydon npc|notify|sound|5
Spawn17=Pit Boss Torgud npc|notify|sound|5
Spawn18=Prospector Wersan npc|notify|sound|5

[Kael Drakkel: The King's Madness]
Spawn0=Yetarr npc|notify|sound|5
Spawn1=a diminutive kromrif npc|notify|sound|5
Spawn2=a fey swarm npc|notify|sound|5
Spawn3=Derakor the Vindicator npc|notify|sound|5
Spawn4=Doljek the Insane npc|notify|sound|5
Spawn5=Evanescent Coronach npc|notify|sound|5
Spawn6=Fjeka npc|notify|sound|5
Spawn7=Fjokar Frozenshard npc|notify|sound|5
Spawn8=Gkrean Prophet of Tallon npc|notify|sound|5
Spawn9=Grungol the Eclipse npc|notify|sound|5
Spawn10=Kallis Stormcaller npc|notify|sound|5
Spawn11=Keldor Dek`Torek npc|notify|sound|5
Spawn12=Kyenka npc|notify|sound|5
Spawn13=Pakjol the Hungry npc|notify|sound|5
Spawn14=Reivaj the Battlerager npc|notify|sound|5
Spawn15=Semkak Prophet of Vallon npc|notify|sound|5
Spawn16=Slagheart npc|notify|sound|5
Spawn17=The Avatar of War npc|notify|sound|5
Spawn18=The Idol of Rallos Zek npc|notify|sound|5
Spawn19=The Statue of Rallos Zek npc|notify|sound|5

[Chapterhouse of the Fallen]
Spawn0=The Flesheater npc|notify|sound|5
Spawn1=#A Lost Soul npc|notify|sound|5
Spawn2=A Mournful Spirit npc|notify|sound|5
Spawn3=Braintaster npc|notify|sound|5
Spawn4=Falhotep the Cursed npc|notify|sound|5
Spawn5=Halstor Bonewalker npc|notify|sound|5
Spawn6=Kaficus the Undying npc|notify|sound|5
Spawn7=Plaguetooth npc|notify|sound|5
Spawn8=Ralstok Plaguebone npc|notify|sound|5
Spawn9=Sergeant Malorin npc|notify|sound|5
Spawn10=Sir Raint npc|notify|sound|5

"[Evantil, the Vile Oak]"
Spawn0=Yunaizarn npc|notify|sound|5
Spawn1=A Bloated Toad npc|notify|sound|5
Spawn2=A Blob of Sap npc|notify|sound|5
Spawn3=Burntbark npc|notify|sound|5
Spawn4=Clizik npc|notify|sound|5
Spawn5=Ruaabri npc|notify|sound|5
Spawn6=Seedspitter npc|notify|sound|5
Spawn7=The Ant Queen npc|notify|sound|5
Spawn8=Thornmaw npc|notify|sound|5
Spawn9=Uzrinar the Damned npc|notify|sound|5

[Valley of King Xorbb]
Spawn0=Xorlex the Seer npc|notify|sound|5
Spawn1=Body of the Many npc|notify|sound|5
Spawn2=Companion of the Dead npc|notify|sound|5
Spawn3=Corpsehide npc|notify|sound|5
Spawn4=Deepcore npc|notify|sound|5
Spawn5=Facenibbler npc|notify|sound|5
Spawn6=Facet of Fear npc|notify|sound|5
Spawn7=Frothtooth npc|notify|sound|5
Spawn8=Gruden the Pulverizer npc|notify|sound|5
Spawn9=Ixyl the Claymaster npc|notify|sound|5
Spawn10=Kalken`s Bloody Bones npc|notify|sound|5
Spawn11=Krondal npc|notify|sound|5
Spawn12=Living Shard npc|notify|sound|5
Spawn13=Mindseep npc|notify|sound|5
Spawn14=Ritualist Blezon npc|notify|sound|5
Spawn15=Shroomdeath npc|notify|sound|5
Spawn16=Stormwheel npc|notify|sound|5
Spawn17=Terrorfist npc|notify|sound|5
Spawn18=The Visionary npc|notify|sound|5
Spawn19=Tunnel Slither npc|notify|sound|5
Spawn20=Worker`s Champion npc|notify|sound|5
Spawn21=Xolok the Blind npc|notify|sound|5

[Chelsith Reborn]
Spawn0=A Huge Mistake npc|notify|sound|5
Spawn1=A Possessed Farseer npc|notify|sound|5
Spawn2=A Successful Mistwielder npc|notify|sound|5
Spawn3=Floppy Flick npc|notify|sound|5
Spawn4=Glorig The Underdog npc|notify|sound|5
Spawn5=Gora The Gourdsmasher npc|notify|sound|5
Spawn6=High Diabolist Dynengo npc|notify|sound|5
Spawn7=Silvi The Mistress npc|notify|sound|5
Spawn8=Sliggles The Sneak npc|notify|sound|5
Spawn9=Swordmaster Karla npc|notify|sound|5
Spawn10=The Hundred Hands Of Blood npc|notify|sound|5
Spawn11=The Undefeated Blade npc|notify|sound|5

[Plane of Shadow]
Spawn0=A Thundering Tempest npc|notify|sound|5
Spawn1=An Astral Wanderer npc|notify|sound|5
Spawn2=Darkstone npc|notify|sound|5
Spawn3=Gloomshell npc|notify|sound|5
Spawn4=Kaas Thox npc|notify|sound|5
Spawn5=Kela Rentha Xakra npc|notify|sound|5
Spawn6=Nightwing npc|notify|sound|5
Spawn7=Shakra Za npc|notify|sound|5
Spawn8=The Dark Lady npc|notify|sound|5
Spawn9=Volx Xi Xakra npc|notify|sound|5
Spawn10=Xal Zeth npc|notify|sound|5
Spawn11=Xi Dyn npc|notify|sound|5
Spawn12=Xorla Vor npc|notify|sound|5
Spawn13=Xundraux Xakra npc|notify|sound|5
Spawn14=Zel Kaxri npc|notify|sound|5

[Heart of Fear: The Threshold]
Spawn0=Alsecht the Believer npc|notify|sound|5
Spawn1=Deathfist npc|notify|sound|5
Spawn2=Harbinger Krask npc|notify|sound|5
Spawn3=Ocululor npc|notify|sound|5
Spawn4=Ulzschanoth npc|notify|sound|5
Spawn5=Ythan the Gutripper npc|notify|sound|5

[Heart of Fear: The Rebirth]
Spawn0=A Hoary Gargoyle npc|notify|sound|5
Spawn1=Enasni the Demented npc|notify|sound|5
Spawn2=Glubbus the Fleshmelter npc|notify|sound|5
Spawn3=Ixmilsh the Terrortangler npc|notify|sound|5
Spawn4=Silandra the Cruel npc|notify|sound|5
Spawn5=Torflog the Impaler npc|notify|sound|5
Spawn6=Vizlix the Deceiver npc|notify|sound|5
Spawn7=Zixial the Scaremonger npc|notify|sound|5

[Heart of Fear: The Epicenter]
Spawn0=A Herald of Fear npc|notify|sound|5
Spawn1=A Vision of Fear npc|notify|sound|5
Spawn2=Grizelna the Mad npc|notify|sound|5
Spawn3=Simira the Dreadwidow npc|notify|sound|5
Spawn4=Soulhollow npc|notify|sound|5
Spawn5=Yilsme the Harbinger of Death npc|notify|sound|5

[Ethernere Tainted West Karana]
Spawn0=Brodhas npc|notify|sound|5 
Spawn1=Crazed Scarecrow npc|notify|sound|5
Spawn2=Drezdal npc|notify|sound|5
Spawn3=Ethilen npc|notify|sound|5
Spawn4=Gelden npc|notify|sound|5
Spawn5=Grawrarawr npc|notify|sound|5
Spawn6=Guard Donlan npc|notify|sound|5
Spawn7=Lava Mantle npc|notify|sound|5
Spawn8=Oklaric npc|notify|sound|5
Spawn9=Roon npc|notify|sound|5
Spawn10=Shoon npc|notify|sound|5
Spawn11=Skretch npc|notify|sound|5
Spawn12=Soul Sifter npc|notify|sound|5
Spawn13=Stix npc|notify|sound|5
Spawn14=The Requiest npc|notify|sound|5
Spawn15=Torishal npc|notify|sound|5
Spawn16=Wenteras the Ancient npc|notify|sound|5
Spawn17=a vengeful spirit npc|notify|sound|5
Spawn18=Burning Bones npc|notify|sound|5
Spawn19=Doomscale Diabolist npc|notify|sound|5
Spawn20=Harlow the Blackguard npc|notify|sound|5
Spawn21=Plague Bringer npc|notify|sound|5
Spawn22=Sentinel Jorgl npc|notify|sound|5

[Neriak - Fourth Gate]
Spawn0=Arch Lich Lyra D`Croix npc|notify|sound|5 
Spawn1=Arch Mage X`Cubus npc|notify|sound|5
Spawn2=Archon Kela G`Noir npc|notify|sound|5
Spawn3=Dread Lord Dizok Tolax npc|notify|sound|5
Spawn4=Entrancer R`Ker npc|notify|sound|5
Spawn5=Fleshweaver D`Syss npc|notify|sound|5
Spawn6=Mass of Spite npc|notify|sound|5
Spawn7=Ryzok D`Tol`s Remains npc|notify|sound|5
"Spawn8=Violet, Soul Drinker" npc|notify|sound|5
"Spawn9=Xam, Koada`Dal Slayer" npc|notify|sound|5
Spawn10=Bloody Tome npc|notify|sound|5
Spawn11=Dragoon Torrex npc|notify|sound|5
Spawn12=Evoker K`Lexor npc|notify|sound|5
Spawn13=Guard Captain N`Mar npc|notify|sound|5
Spawn14=Jaleer D`Vinn npc|notify|sound|5
Spawn15=Rilen D`Tradis npc|notify|sound|5

[Bixie Warfront]
"Spawn0=Arachnox, the Dread Widow" npc|notify|sound|5 
Spawn1=a Bixie Guardian npc|notify|sound|5
Spawn2=Dreadmole npc|notify|sound|5
Spawn3=an Enraged Bixie Drone npc|notify|sound|5
Spawn4=Firesting npc|notify|sound|5
Spawn5=Gellwing Bladeslinger npc|notify|sound|5
Spawn6=Monarch Deathwing npc|notify|sound|5
Spawn7=Pollenix npc|notify|sound|5
Spawn8=Princess Honeywing npc|notify|sound|5
"Spawn9=Tleroth, Mistress of the Web" npc|notify|sound|5
Spawn10=Firesting npc|notify|sound|5
"Spawn11=Gellwing, the Corpse Looter" npc|notify|sound|5
"Spawn12=Grolk, The Honey Eater" npc|notify|sound|5


[The Dead Hills]
Spawn0=A Xulous Invader npc|notify|sound|5 
Spawn1=Bloodsucker npc|notify|sound|5
Spawn2=Dark Infector npc|notify|sound|5
Spawn3=Deathcaller Xylok npc|notify|sound|5
Spawn4=Dread Ghoul npc|notify|sound|5
Spawn5=Jattius Rattican npc|notify|sound|5
Spawn6=Lieutenant Robert Ward npc|notify|sound|5
Spawn7=Marcelyn Sjobern npc|notify|sound|5
Spawn8=The Monstrous Minnow npc|notify|sound|5
Spawn9=Oozoroze npc|notify|sound|5
Spawn10=Rat Packleader npc|notify|sound|5
Spawn11=Spirit of the Hills npc|notify|sound|5
Spawn12=Squire Alan Wells npc|notify|sound|5
Spawn13=Squire Gordon Flock npc|notify|sound|5
Spawn14=Squire Thomas Olson npc|notify|sound|5
Spawn15=Vorovelze npc|notify|sound|5
Spawn16=Warpriest Poxxil npc|notify|sound|5

Availability

This plugin is included with the MMOBugs Compile.