What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Is there a script that can respond line-by-line...

Is there a script that can respond line-by-line...
Author: Message:
flarngus
New Member
*


Posts: 2
Joined: Jan 2010
O.P. Is there a script that can respond line-by-line...
Instead of having to use certain keywords to generate a response?  Like, for example, Answering Machine Plus without the receive column?  I was wondering if there was such a script that would allow me to automatically respond to the person, line-by-line, with a delayed response, as if it were talking to a real person?  Thanks.
01-01-2010 12:50 AM
Profile E-Mail PM Find Quote Report
stoshrocket
Senior Member
****

Avatar
formerly methos

Posts: 748
Reputation: 31
33 / Male / Flag
Joined: Aug 2005
RE: Is there a script that can respond line-by-line...
I doubt there's a script that's out there, but with a little help from the scripting documentation I'm sure it's certainly possible.

You could have a look at how answering machine plus takes messages and checks them for the key words, then write in a simple function that is set in motion when a key word is found...

As for the function to send messages, you could just have an array of messages to send, and use for...in to loop through the array, using a delay between each message. Something like this:

Javascript code:
//check for message sent, check for keyword, if found send_messages()
 
function send_messages(){
  var message_array = ["hey","how are you?"];
  for(var message in message_array){
    setTimeout("SendMessage(message)",1250);
  }
}


PS: If you really don't feel up for it, I might try making the script next week after my exams have finished :P

This post was edited on 01-17-2010 at 05:30 PM by stoshrocket.
formerly methos
01-17-2010 04:13 PM
Profile PM Web Find Quote Report
flarngus
New Member
*


Posts: 2
Joined: Jan 2010
O.P. RE: RE: Is there a script that can respond line-by-line...
I've tried to learn the official documentation, and, for the life of me, cannot figure it out.  I would appreciate it if you could make a simple script to respond line-by-line, with a delayed response that can handle multiple IM's at a time.  If this can be done, please let me know.  I appreciate any help that can be given to me.  Thank you.
01-19-2010 08:13 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On