• 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

Macro question

IamBigDaddy

Member
Joined
Oct 14, 2005
RedCents
140¢
I only want to respond to people in my group or one other toon. Below is the line I have to exit the Sub if these conditions are not met. Can someone tell me if this will do what I want please.

Rich (BB code):
      /if ((!${ChatType.Equal[GROUP]}) || (!${ChatType.Equal[TELL]})&&(!${ChatSender.Equal[ToonName]})) /return
 
IamBigDaddy said:
I only want to respond to people in my group or one other toon. Below is the line I have to exit the Sub if these conditions are not met. Can someone tell me if this will do what I want please.

Rich (BB code):
      /if ((!${ChatType.Equal[GROUP]}) || (!${ChatType.Equal[TELL]})&&(!${ChatSender.Equal[ToonName]})) /return
you can also change it to
Rich (BB code):
 /if (!${ChatType.Equal[GROUP]} || !${ChatType.Equal[TELL]} && !${ChatSender.Equal[ToonName]}) /return
 
Macro question

Users who are viewing this thread

Back
Top
Cart