I dont understand parameters in MQ, I know what's required to do this, just need the variables for 'who sent tell' and/or the whole string afterwards.#chat tell
Sub Event_Chat
/tell hardcoded_user From Var1, Var0
/return
Moderator: MacroQuest Developers

I dont understand parameters in MQ, I know what's required to do this, just need the variables for 'who sent tell' and/or the whole string afterwards.#chat tell
Sub Event_Chat
/tell hardcoded_user From Var1, Var0
/return
Code: Select all
#chat tell
sub Main
:loop
/doevents
/goto :loop
/return
sub Event_chat
/tell Master @param1 told me: @param2
/return
Code: Select all
sub Event_chat(MsgType,MsgFrom,MsgText)
/if @MsgType==tell /tell Master @MsgFrom told me: @MsgText
/return
