What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Request: Mimic what people says

Request: Mimic what people says
Author: Message:
kolibanat
New Member
*

Avatar

Posts: 3
– / – / Flag
Joined: Jul 2006
O.P. Request: Mimic what people says
I had a script/plugin doing this for me a long time ago but i cant find any now..

want it to make me send same message back to people as they write to me.. i dont use away messages, i think this is more comfortable.
also i kind of need it as a amateur bot thing for a thing im working with..

shouldnt be so much work to fix, please!


just to be really clear..

quote:
Friend says:
Hello! :)
Me says:
Hello! :)
Friend says:
How are you?
Me says:
How are you?
Friend says:
What?
Me says:
What?
Friend says:
Stop imitate me.. L
Me says:
Stop imitate me.. L
09-06-2008 03:30 PM
Profile E-Mail PM Web Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
RE: Request: Mimic what people says
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message){
if(Origin !== Messenger.MyName) ChatWnd.SendMessage(Message);
}

should work but Plus! has a limit on ChatWnd.SendMessage so it might stop working after 15 messages sent in a period of time :P.


it's a really simple script to do, just read the scripting documentation and you'll learn how to do more ;)

This post was edited on 09-06-2008 at 04:45 PM by roflmao456.
[quote]
Ultimatess6
: What a noob mod
09-06-2008 04:44 PM
Profile PM Web Find Quote Report
kolibanat
New Member
*

Avatar

Posts: 3
– / – / Flag
Joined: Jul 2006
O.P. RE: Request: Mimic what people says
Nice! :) it works! :D thank you! (L)

but, what a stupid limit :|


and.. how do i fix so that only a specific signed in email can use this.. (described in "Your first script")
im using polygami and i just want one of them to use the script :p
09-06-2008 05:14 PM
Profile E-Mail PM Web Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: Request: Mimic what people says
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message){
if(Origin !== Messenger.MyName && Messenger.MyEmail==="your@email.com") ChatWnd.SendMessage(Message);
}

The 15 message limit is there to stop scripts like this "spamming" people with messages. Although, if you were to send 14 messages through a script, then actually send a message, the script can continue for another 15 messages :p
<Eljay> "Problems encountered: shit blew up" :zippy:
09-06-2008 06:19 PM
Profile PM Find Quote Report
kolibanat
New Member
*

Avatar

Posts: 3
– / – / Flag
Joined: Jul 2006
O.P. RE: Request: Mimic what people says
Thank you :) works perfect!
09-06-2008 06:38 PM
Profile E-Mail PM Web 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