What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Help] Auto Talking Script

[Help] Auto Talking Script
Author: Message:
makeshift
New Member
*


Posts: 3
Joined: Jun 2007
O.P. Huh?  [Help] Auto Talking Script
Hi,

I'm new to scripting in MSN, and have only just got through the tutorial, so far i've been wanting to make a very simple Auto Talker, example:
quote:
Bob: How are you?
Me: (Auto Talker) Alright, you?


I've been playing with a script that can supposedly do this, and can be changed and edited very quickly to do it, it's the Auto Nothing 1.1 Beta ( No, i wasn't going to just edit a couple of things and release it, i was just using it as a learning experiance).

While testing the Auto Nothing, i found that when my friends type to me while i'm working ( Like if they say wuu2 ), it doesn't automaticly reply, even when it's turned on, and it's scripting says it should, so, as that isn't working for me, could anybody please quickly nip up a script for me which will do as i would like, with maybe toasts for when it's on and off, and a menu for "Is Auto Talker on/off?" which will tell you if it's on/off, and another bit in there for "Turn On/Turn Off".

I know i'm irritating and you'll probably flame me, but i would like help, and you will get credits, thankyou.

This post was edited on 06-10-2007 at 08:23 PM by makeshift.
06-10-2007 07:37 PM
Profile E-Mail PM Find Quote Report
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
RE: [Help] Auto Talking Script
Have a look at this
06-10-2007 07:41 PM
Profile E-Mail PM Find Quote Report
makeshift
New Member
*


Posts: 3
Joined: Jun 2007
O.P. RE: [Help] Auto Talking Script
Hmmm, thankyou :), that is what i would like to make in the future, but currently that's too hard for me to edit, all i need is a VERY simple script.

This post was edited on 06-10-2007 at 08:18 PM by makeshift.
06-10-2007 08:16 PM
Profile E-Mail PM Find Quote Report
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: [Help] Auto Talking Script
Hi makeshift, it's good to hear that people are genuinely interested in learning how to script something from start to finish.

For a really simple script which does this you first need to use the OnEvent_ChatWndReceiveMessage event which is documented in the Scripts Documentation. This "event is fired when a new message is received in a chat window" and provides you with among a variety of other things (see scripting docs), the message which was received:
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind) {

    //Firstly, this event function is triggered when any message is added to the conversation including ones which we send to others, so we need to make sure that the person who sent this message wasn't us (note that Origin is one of the parameters which was passed to this function and contains the Nickname of the contact which sent the message)
    if(Origin != Messenger.MyName) {

        //The person who sent the message wasn't me, now you need to check if the message is the message which we are looking for
        if(Message == "How are you?") {

            //The contact has typed the message we're looking for so we need to reply!
            ChatWnd.SendMessage("Alright, you?");

        }
    }
}

This post was edited on 06-11-2007 at 05:32 AM by Volv.
06-11-2007 05:31 AM
Profile PM Find Quote Report
makeshift
New Member
*


Posts: 3
Joined: Jun 2007
O.P. RE: [Help] Auto Talking Script
Brilliant, thanks!
06-12-2007 03:47 PM
Profile E-Mail PM Find Quote Report
jollyscripts
Junior Member
**


Posts: 16
Joined: Aug 2007
RE: [Help] Auto Talking Script
thanks for the script,

i wondered if there is a way to write it for multiple messages

i tried..

(Message == "hi","hello")

but that makes the script have an error, any hep?
08-14-2007 12:42 PM
Profile E-Mail PM Find Quote Report
Jona
Junior Member
**

Avatar
Saving boredom!

Posts: 16
Reputation: 1
31 / Male / Flag
Joined: Oct 2006
RE: RE: [Help] Auto Talking Script
quote:
Originally posted by jollyscripts
thanks for the script,

i wondered if there is a way to write it for multiple messages

i tried..

(Message == "hi","hello")

but that makes the script have an error, any hep?

I'm also a newbie in scripting but I figured this out :P

(Message="hi" || Message="hello")
08-31-2007 02:19 PM
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