What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Help me please - Script with counter and auto-response

Help me please - Script with counter and auto-response
Author: Message:
sbari
New Member
*


Posts: 12
– / Male / Flag
Joined: Oct 2009
O.P. RE: Help me please - Script with counter and auto-response
quote:
Originally posted by roflmao456
Try out the MsgPlus.AddTimer and ChatWnd.SendMessage functions.

I explained my problem. When I put the ChatWnd, it does not recognize.

Can you help me please?
I want the script to write one sentence every 20 minutes, when my status is "busy".

Thank you very much.

Here is my code if it helps you.

var messages = new Array(), i=0;
messages[0] = "First Message";
messages[1] = "Second Message";
messages[2] = "Third Message";
function OnEvent_Initialize(MessengerStart)
{
}
function OnEvent_Uninitialize(MessengerExit)
{
}

function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message)
{
    if(Origin != Messenger.MyName)
    {
        if(!i[ChatWnd.Handle])i[ChatWnd.Handle]=0;
        if(i[ChatWnd.Handle] == messages.length)i[ChatWnd.Handle]=0;
        ChatWnd.SendMessage(messages[i[ChatWnd.Handle]++]);
    }
}


up :(
10-04-2009 09:51 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Help me please - Script with counter and auto-response - by sbari on 10-03-2009 at 06:24 PM
RE: Help me please - Script with counter and auto-response - by roflmao456 on 10-03-2009 at 06:33 PM
RE: Help me please - Script with counter and auto-response - by sbari on 10-04-2009 at 09:51 AM
RE: Help me please - Script with counter and auto-response - by ArkaneArkade on 10-04-2009 at 09:57 PM
RE: Help me please - Script with counter and auto-response - by Spunky on 10-04-2009 at 10:54 PM
RE: Help me please - Script with counter and auto-response - by Nathan on 10-04-2009 at 11:46 PM
RE: RE: Help me please - Script with counter and auto-response - by ryxdp on 10-05-2009 at 12:40 AM
RE: Help me please - Script with counter and auto-response - by Spunky on 10-05-2009 at 12:37 AM
RE: Help me please - Script with counter and auto-response - by sbari on 10-05-2009 at 10:55 AM
RE: Help me please - Script with counter and auto-response - by sbari on 10-05-2009 at 11:18 AM
RE: Help me please - Script with counter and auto-response - by matty on 10-05-2009 at 01:02 PM
RE: Help me please - Script with counter and auto-response - by sbari on 10-05-2009 at 04:35 PM
RE: Help me please - Script with counter and auto-response - by matty on 10-05-2009 at 04:36 PM
RE: Help me please - Script with counter and auto-response - by sbari on 10-05-2009 at 05:05 PM
RE: RE: Help me please - Script with counter and auto-response - by sbari on 10-05-2009 at 05:13 PM
RE: Help me please - Script with counter and auto-response - by matty on 10-08-2009 at 05:10 PM
RE: Help me please - Script with counter and auto-response - by sbari on 10-08-2009 at 09:09 PM
RE: Help me please - Script with counter and auto-response - by sbari on 10-09-2009 at 10:40 AM
RE: Help me please - Script with counter and auto-response - by sbari on 10-09-2009 at 10:42 AM
RE: Help me please - Script with counter and auto-response - by matty on 10-09-2009 at 12:52 PM
RE: Help me please - Script with counter and auto-response - by sbari on 10-09-2009 at 02:18 PM
RE: Help me please - Script with counter and auto-response - by sbari on 10-09-2009 at 02:33 PM


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