PDA

View Full Version : Hunter List with Prefixes



Silicon2543
03-15-2024, 04:02 PM
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 (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:


<?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




<?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.

Immortalis69
03-18-2024, 02:49 PM
"The issue I'm having is it does not label the mob so it appears at the top of the Spawn List."

On the map window, in the spawn list, click on "Name" and it will sort the spawns alphabetically by name with [C], [H] and [R] at the top of the list (because '[' will come before 'A']).




"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."

I use it for hunter as well but when I go into a zone, I edit the zone file and add the hunter mobs for each zone under the hunter label. When I kill one, I move the name under the caution label so it still appears at the top as a special mob but I know if I've already killed it or not.

Silicon2543
03-18-2024, 08:32 PM
Thank you.

I was hoping there was a way to convert the formatting easily so it labels them for all the existing files. As it stands, the current files I have do not label them appropriately. I might just be doing something wrong.