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

Macro question (1 Viewer)

IamBigDaddy

Member
Joined
Oct 14, 2005
RedCents
80¢
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