I am attempting to have MySEQ label the Hunter mobs that are currently alive in zone with [H].
I found the following thread that contains a large amount of the Hunter mobs already in XML files

https://www.showeq.net/forums/showthread.php?7643-hunter-achievement-filter-files


The issue I'm having is it does not label the mob so it appears at the top of the Spawn List.

I went into the settings to make sure the Caution filter has a prefix, it does.
I manually entered the mobs for Laurion's Inn and got it to work the way I wanted to, but I could not figure a way to automate it for the hundreds of zones.

This is the example I've been working with:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE seqfilters SYSTEM "seqfilters.dtd">
<!-- Hunter of Crystal Caverns -->
<seqfilters>
    <section name="Caution">
        <oldfilter><regex>Name:.*Crystal Grinder</regex></oldfilter>
        <oldfilter><regex>Name:.*Gem collector</regex></oldfilter>
        <oldfilter><regex>Name:.*Life Leech</regex></oldfilter>
        <oldfilter><regex>Name:.*Queen Dracnia</regex></oldfilter>
    </section>
</seqfilters>

This is the example of how it worked for Laurion's Inn

Code:
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE seqfilters SYSTEM "seqfilters.dtd">
<seqfilters>
    <section name="Hunt">
#a brood queen
#a djinn
#a lich
#a luggald
#a queen recluse
#a queen widow
#a spectre
#a water dragon
#an efreeti
#an owlbear
#a geonid
    </section>
    <section name="Caution">
    </section>
     <section name="Danger">
    </section>
    <section name="Alert">
    </section>
    <section name="Email">
    <section name="Primary">
    </section>
    <section name="Offhand">
    </section>
</seqfilters>

Any advice would be greatly appreciated.