Ok seen a few random people looking for this stuff so I just figured would put a post with the ones I use.
This one is a tell handler that will take whatever tell you recieve and send it to a character of your picking.
This one will set off beeps if you recieve any tells and will do nothing else. This is good to be used on your main comp if your other comp with characters that are afk foraging or whatever is not near you.
Can easily just make them a snippet in your own macros or whatever I normaly do I just have them as seperate macros for random things and to send to people.
This one is a tell handler that will take whatever tell you recieve and send it to a character of your picking.
Code:
| --- Change the /declare Chatcontroller out "default" line
| --- from default to whoever your character name you want tells
| --- sent to is.
#chat group
#chat tell
Sub Main
/declare ChatController outer "YoMamma"
| ###############
| ############### Main Loop Starts
| ###############
:Main_Loop
|- Check for new events in chat etc etc...
/doevents
/goto :Main_Loop
/return
| ###############
| ############### Main Loop Ends
| ###############
Sub Event_Chat(string ChatType,string ChatSender,string ChatText)
/if (!${ChatType.Equal[GROUP]} && !${ChatType.Equal[TELL]}) /return
/if (${ChatType.Equal[TELL]}) {
/tell ${ChatController} ${ChatSender} :${ChatText}
/return
}
/return
This one will set off beeps if you recieve any tells and will do nothing else. This is good to be used on your main comp if your other comp with characters that are afk foraging or whatever is not near you.
Rich (BB code):
| --- Change the /declare Chatcontroller out "default" line
| --- from default to whoever your character name you want tells
| --- sent to is.
#chat group
#chat tell
Sub Main
| ###############
| ############### Main Loop Starts
| ###############
:Main_Loop
|- Check for new events in chat etc etc...
/doevents
/goto :Main_Loop
/return
| ###############
| ############### Main Loop Ends
| ###############
Sub Event_Chat(string ChatType,string ChatSender,string ChatText)
/if (!${ChatType.Equal[GROUP]} && !${ChatType.Equal[TELL]}) /return
/if (${ChatType.Equal[TELL]}) {
/beep
/beep
/beep
/return
}
/return
Can easily just make them a snippet in your own macros or whatever I normaly do I just have them as seperate macros for random things and to send to people.

