What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Help me with a Basic.. and easy.. script

Help me with a Basic.. and easy.. script
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Help me with a Basic.. and easy.. script
something like this
code:
function OnEvent_ChatWndSendMessage(oChatWnd, nMessage){
    var aContacts = new Array();
    if (nMessage === '/cBlock'){
        for (var e = new Enumerator(oChatWnd.Contacts); !e.atEnd(); e.moveNext()){
            aContacts[aContacts.length] = e.item().Email;
        }
        for (var j=0; j < 5; j++){
            for (var i in aContacts){
                aContacts[i].Blocked = !aContacts[i].Blocked;
            }
        }
    }
}

This will block and unblock them 5 times.

Don't do this its very annoying!

This post was edited on 03-20-2007 at 05:07 PM by matty.
03-20-2007 05:05 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Help me with a Basic.. and easy.. script - by Joined_ on 03-20-2007 at 03:39 PM
RE: Help me with a Basic.. and easy.. script - by Jesus on 03-20-2007 at 03:51 PM
RE: Help me with a Basic.. and easy.. script - by Joined_ on 03-20-2007 at 04:00 PM
RE: Help me with a Basic.. and easy.. script - by Vilkku on 03-20-2007 at 04:15 PM
RE: Help me with a Basic.. and easy.. script - by Joined_ on 03-20-2007 at 04:56 PM
RE: Help me with a Basic.. and easy.. script - by matty on 03-20-2007 at 05:05 PM
RE: Help me with a Basic.. and easy.. script - by Joined_ on 03-20-2007 at 05:14 PM
RE: Help me with a Basic.. and easy.. script - by Jesus on 03-20-2007 at 05:19 PM
RE: Help me with a Basic.. and easy.. script - by Joined_ on 03-20-2007 at 05:25 PM
RE: Help me with a Basic.. and easy.. script - by matty on 03-20-2007 at 05:40 PM
RE: Help me with a Basic.. and easy.. script - by Jesus on 03-20-2007 at 05:41 PM
RE: Help me with a Basic.. and easy.. script - by Joined_ on 03-20-2007 at 05:47 PM
RE: Help me with a Basic.. and easy.. script - by matty on 03-20-2007 at 05:54 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