If I wanted to end a macro by simply hitting <ENTER> or such ... is that possible? Example:
Code: Select all
|=============================================================================
|------------------------------- Tell Alert v1.0 ------------------------------
|--------------------------- Audio /tell Notification ------------------------
|-----------------------------------------------------------------------------
|--- Usage: /macro Tell
|--- Spouts out a series of beeps when you've recieved a tell. Handy
|--- for being AFK while LFG for example.
|-----------------------------------------------------------------------------
|--- By: a_troll_01 (5/14/04)
|--- Enjoy!
|=============================================================================
#event Tell "#*#tells you#*#"
|=============================================================================
Sub Main
/echo Tell Alert Activated!
:MainLoop
/doevents
/delay 2s
/goto :MainLoop
/endmacro
|=============================================================================
Sub Event_Tell
:BeepLoop
/beep
/delay 1s
/goto :BeepLoop
/returnCode: Select all
Sub Event_Tell
:BeepLoop
/beep
/delay 1
/goto :BeepLoop
/return
