• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

/If Hide Check help. (1 Viewer)

Joined
Aug 31, 2005
RedCents
90¢
Yep nob question but I guess it makes it simple to answer.
How would you write an /if statement to check if you're hidden or invisible
Looking for something to check
/if ${Me.Invis} == True {
Dostuffhere !
}

I just dont know how to check the skill or the invis state
 
You're on the right track, you just need to put it in parantheses :)

Rich (BB code):
/if (${Me.Invis}) {
    /call MyDoStuffHereSubRoutine
}

Invis is a boolean (TRUE or FALSE), part of the "spawn member". You should be aware that, quote; "also includes both successful and failed hides as well as shroud of stealth".

Since it also includes a failed hide, perhaps you should combine it with some sort of Con event check.

Rich (BB code):
#Event IndiffCon "#1#regards you indifferentlyu#*#"
Sub Event_IndiffCon(string Line, string MyTarget)
    /echo You're either invisible to ${MyTarget}, ${MyTarget} see through your invis/hide, or ${MyTarget} is merely just indifferent to you ;)
/return
 
Aye I read the manual about it being a True/False return and Hide/Failed Hide/SoS being included. But I have a 100% chance to hide successfully. Its just if something other than that breaks the hide. I.e. A see invis mob hitting me, I wanted it to check for that then re-hide or let well enough alone...accordingly.
 
/If Hide Check help.

Users who are viewing this thread

Back
Top