• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Mob Check

PinkWonder

Member
Joined
Feb 25, 2008
RedCents
111¢
I was wondering if someone could help me with a very simple macro. What I want is something that I can run with an input variable say something like "/macro check Innoruuk"

Then it would take the variable name Innoruuk and just do a /target Innoruuk It would then Check the target and if the target was "Innoruuk" and not just Innoruuk's chosen, or any of the other mob times with innoruuk in the name, then it would send out a text line or something I could audio trigger.
 
if you going to use this on P99 you will get banned, since they flag all /target thats more then 220 range, since a client cant target anything longer then that, if you can you use MQ2 and will be flagged and banned
 
Try something along the lines of
Rich (BB code):
/if (${Spawn.Name.Equal[Innoruuk]}) /echo Innoruuk is here!
does a search for the spawn and does not target.
 
Spiken I don't play on P99, but thanks for the warning
Sidden thanks for the response, if anyone knows how to tweak that to pull the name from a variable that I set when I run the macro that would help a lot, otherwise I'll just have to edit the macro for each new target, or set up multiple macros.
 
Try this:

/mac mobcheck Innoruuk

Spawn search does partial matching, have to compare inside a loop to get the one(s) that only exact match.

Rich (BB code):
Sub Main(string MobName)
    /declare a int
    /for a 1 to ${SpawnCount[npc ${MobName}]}
        /if (${Me.NearestSpawn[${a},npc ${MobName}].CleanName.Equal[${MobName}]}) /echo ${MobName} is here!
    /next a
/return
 
Mob Check

Users who are viewing this thread

Back
Top
Cart