I came across another problem with the script:
js code:
function OnEvent_ChatWndSendMessage( ChatWnd, Message )
{
// See if I'm not busy yet
if( Messenger.MyStatus !== 4 ) {
// Set to busy
Messenger.MyStatus = 4;
}
// Return the unmodified message
// Never forget to return something for ChatWndSendMessage!
return Message;
}
When my auto-message responds it changes my status to busy. How do I fix that?
EDIT: Spent some time on it and I'm thinking I should use something like
js code:
{
if(Message == "<insert my auto-message>"
Messenger.MyStatus = 7;
}
But it doesn't work.
~ 5n4k3