Trying to exclude two specific monsters from /target.

Need some help with that macro you're working on or aren't quite sure how to get your macro to do something? Ask here!

Moderator: MacroQuest Developers

nimblefoot
a lesser mummy
a lesser mummy
Posts: 33
Joined: Sun Jun 29, 2003 11:50 am

Trying to exclude two specific monsters from /target.

Post by nimblefoot » Mon Nov 17, 2003 11:17 am

Here's my problem: I need to select from a group of monsters all within relative proximity of each other (same z axis as well), except two of them need to be excluded.

My first though was to exclude via spawn ID, but MQ won't allow multiple parameters of notid.

Is there something easy that I'm missing? Is there a simple way to cycle through targets without messy $target(distance) code?

Thanks for any help.

Falco72
a hill giant
a hill giant
Posts: 215
Joined: Fri Sep 26, 2003 3:24 am

Post by Falco72 » Mon Nov 17, 2003 1:26 pm

Add the id to an alert list using

Code: Select all

/alert add X id Y
where X is the alert list you want to use (from 1 to infinitum) and Y is the mob id.
Then make a target using the noalert option, like this

Code: Select all

/target noalert X
where X is the alert list you used before.
You can add how many id you want to the alert list and those ids will be excluded by the /target command.

nimblefoot
a lesser mummy
a lesser mummy
Posts: 33
Joined: Sun Jun 29, 2003 11:50 am

Post by nimblefoot » Mon Nov 17, 2003 2:42 pm

Ahh thanks, I'll try that. I didn't know you could add IDs to the alert list, I thought it was all done via mob names.