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:
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
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Is there a script that can respond line-by-line... - by flarngus on 01-01-2010 at 12:50 AM
RE: Is there a script that can respond line-by-line... - by stoshrocket on 01-17-2010 at 04:13 PM
RE: RE: Is there a script that can respond line-by-line... - by flarngus on 01-19-2010 at 08:13 AM


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