• 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

Forward

Bronx

Member
Joined
Oct 22, 2005
RedCents
10¢
looking for a mac that will forward tells from the boxxed toon, to my main. any help with this be great guys. thanks~
 
#Chat Tell

Sub Event_Chat(ChatType,Sender,ChatText)
/if (${ChatType.Equal[tell]} /${ChatChannel} ${Sender} told me ${ChatText})
/return
 
Last edited:
how would i make it so its a mac by itself, i just wanna know if someone sends tell to my box when im not looking at it. thanks~
 
Rich (BB code):
#chat tell

Sub Main
   :loop
      /doevents
   /goto :loop
/return

Sub Event_Chat(ChatType,Sender,ChatText)
   /tell <main's name> ${ChatText}
/return

Don't need to do a chat type check, since the directive tells it to look for only tells anyway. ;)

-CodeCaster
 
codecaster said:
Rich (BB code):
#chat tell

Sub Main
   :loop
      /doevents
   /goto :loop
/return

Sub Event_Chat(ChatType,Sender,ChatText)
   /tell <main's name> ${ChatText}
/return

Don't need to do a chat type check, since the directive tells it to look for only tells anyway. ;)

-CodeCaster


this was perfect till i ran into boxing on a computer screen i cant see, so wanted to know if it is at all possible for it to relay to you soandso told you "____", know who sent you tell would make it easier to reply!

thanks for your help
 
Rich (BB code):
#chat tell

Sub Main
   :loop
      /doevents
   /goto :loop
/return

Sub Event_Chat(ChatType,Sender,ChatText)
   /tell <main's name> ${Sender} told you ${ChatText}
/return
 
Forward

Users who are viewing this thread

Back
Top
Cart