What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] Very Simple Responder

[Request] Very Simple Responder
Author: Message:
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
RE: [Request] Very Simple Responder
Using:
- Event ChatWnd_ReceiveMessage
- Func ChatWnd::SendMessage

There is no on/off switch. I want you to try out Plus! scripting and create a boolean variable.
JScript code:
var messages = new Array(), i=0;
messages[0] = "First Message";
messages[1] = "Second Message";
messages[2] = "Third Message";
 
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message){
if(Origin != Messenger.MyName){
if(i == messages.length)i=0;
ChatWnd.SendMessage(messages[i++]);
}
}


This post was edited on 04-16-2009 at 04:09 AM by roflmao456.
[quote]
Ultimatess6
: What a noob mod
04-16-2009 04:08 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Request] Very Simple Responder - by sam06 on 04-15-2009 at 08:52 PM
RE: [Request] Very Simple Responder - by sam06 on 04-15-2009 at 09:01 PM
RE: [Request] Very Simple Responder - by roflmao456 on 04-16-2009 at 04:08 AM
RE: [Request] Very Simple Responder - by sam06 on 04-16-2009 at 07:40 AM
RE: [Request] Very Simple Responder - by roflmao456 on 04-18-2009 at 07:00 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