Shoutbox

[request] Away auto message sender - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [request] Away auto message sender (/showthread.php?tid=79531)

[request] Away auto message sender by MicroChip123 on 12-01-2007 at 04:51 PM

Well I am new to this messenger plus live thing and can someone please write me a script that just sends a message to some one when they talk to me when my status is away.

So it says something like this

Joe Blogs says: hi
MicroChip123 Says: I am away soz

I have looked at the auto takers and they are all to complex because of words that have to be said to get the bot to say stuff

Thanks in advance to any one that can help


RE: [request] Away auto message sender by absorbation on 12-01-2007 at 04:55 PM

You can already do this. Set your status to away using the contact list and Messenger Plus! Live will bring up an options window :):

[Image: attachment.php?pid=868225]


RE: [request] Away auto message sender by warmth on 12-01-2007 at 04:56 PM

Why don't you try the built in feature of Messenger Plus! Live (MP!L) in self??? just put you away and a 15 seconds window will appear to let you personalize the message and other stuffs... you can access this windows throughout the preferences of MP!L too and make some presets status messages... ;) good look...


RE: [request] Away auto message sender by MicroChip123 on 12-01-2007 at 05:45 PM

i just what a script and the built in one is not very good


RE: [request] Away auto message sender by vikke on 12-01-2007 at 05:48 PM

Here you go.

code:
function OnEvent_OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
  if(Messenger.MyStatus == 7)
  {
    ChatWnd.SendMessage("I'm Away!");
  }
  else if(Messenger.MyStatus == 6)
  {
    ChatWnd.SendMessage("I'm Idle!");
  }
}

This one has a lot of flaws, for instance, if your contact sends you 2 messages, it will answer twice. You can replace the "I'm Away!" and "I'm Idle!" texts, just don't forget the quote-marks.