I find it handy for times when I'm busy doing something else on my PC and have EQ running in the background; for instance, if you like to turn on LFG and then go browse the web or watch TV while you're waiting and group invite.
I have also taken just the event code and added to most other macros that I run so that I get an audible beep on any tell so that I don't miss one, especially when boxing multiple accounts.
Anyway, here it is:
Code: Select all
| beep.mac : A simple macro that watches for any tell and beeps.
| Author : Qirx
| Version : v1.0 10-Jan-2005 13:30 CST
| Useage : /macro beep
| Description : This macro basically just loops waiting for a tell and beeps. Useful if you're doing something else
| : on your PC and want to know if a /tell comes in (like if you're LFG).
#event tell "#1# tells you, #2#"
Sub Main
/echo Will beep if get any /tell.
:Loop
/delay 1s
/doevents
/goto :Loop
/return
Sub Event_tell
/beep
/return



