Code: Select all
| Lang.mac
| Create a hotkey for button 6
| Select your language
| /macro lang
| Send a tell to abort
| 10_15_03 by bob_the_builder
#chat tell
sub Main
/declare abort global
/varset abort 0
:loop
/press 6
/doevents
/if n @abort==0 /goto :loop
/endmacro
Sub Event_Chat
/echo Got a tell, ending
/varset abort 1
/return
