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

Tell hell (1 Viewer)

tradeskillerz

New member
Joined
Mar 1, 2006
RedCents
I'm looking for someone to give me tips on what I can do here.

I have two toons on a desktop and one on a laptop. The toon on the laptop just sits in bazaar and has sound, the other two toons are on a computer with a bad sound card.

So what i'm looking for is some code that will recognize when one of the two desktop toons gets a tell. Upon recognizing that, I would like them to send my laptop a tell so that I'm aware of it.

If anyone has any tips on how to do this I would really appreciate the help.

Thank you
 
Rich (BB code):
#Event GotTell		"#1# tells you, '#2#'"
   Sub Event_GotTell
      /tell BazaarBot ${Me.Name} Just Recieved a tell.
   /return

Stick this event in any macro your running, and have /doevents in the main loop. Any tell recieved on the computer this is running will send another tell to your bazaarbot saying you got a tell.

Change BazaarBot to your laptops char's name.

Then you can setup a similar event on the laptop that will beep at you when you get a tell.
Rich (BB code):
#Event GotTell		"#1# tells you, '#2#'"
   Sub Event_GotTell
      /beep
      /beep
      /beep
   /return
 
This is how I do it:
Rich (BB code):
#Event BotTells			"#1# tells you, '#2#'"

Rich (BB code):
Sub Event_BotTells(string Line,string Sender,string Chat)
/bc ${Sender} told me: ${Chat}
/return

So when any of my toons get a tell I can see it in my EQBC channel :P
 
Tell hell

Users who are viewing this thread

Back
Top