What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » New Script Ideas

New Script Ideas
Author: Message:
Chris4
Elite Member
*****

Avatar

Posts: 4461
Reputation: 84
32 / Male / Flag
Joined: Dec 2004
RE: New Script Ideas
If you search the forums, a thread called "Script Request - Ignore specific contacts", a script has been made to ignore contacts.

Just go to Plus! > Preferences > Scripts > "Create New", call it Ignore Script, paste the code and save.

Then use !ignore to ignore a contact and !unignore to stop ignoring them.

All credit to markee for making it.

code:
var list = Array();

function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind)
{
for (i=0; i<list.length;i++)
{
if (Origin === Messenger.MyContacts.GetContact(list[i]).Name)
{
ChatWnd.SendMessage("/close")
}
else
{
return Message;
}
}
}

function OnEvent_ChatWndSendMessage(ChatWnd,Message)
{
if (Message === "!ignore")
{
var ChatWndContacts = ChatWnd.Contacts;
if(ChatWndContacts.Count == 1)
{
var e = new Enumerator(ChatWndContacts);
var Contact = e.item();
list[list.length] = Contact.Email
}
return "";
ChatWnd.SendMessage("/close")
}
else if (Message === "!unignore")
{
var ChatWndContacts = ChatWnd.Contacts;
if(ChatWndContacts.Count == 1)
{
var e = new Enumerator(ChatWndContacts);
var Contact = e.item();
for (i=0;i<list.length;i++)
{
if(Contact.Name === list[i])
{
list[i] = "";
}
}
return "";
}
}
}

This post was edited on 09-18-2006 at 03:17 PM by Chris4.
Twitter: @ChrisLozeau
09-18-2006 03:14 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
New Script Ideas - by kvnhmmd on 09-18-2006 at 02:50 AM
RE: New Script Ideas - by Voldemort on 09-18-2006 at 02:53 AM
RE: New Script Ideas - by kvnhmmd on 09-18-2006 at 02:57 AM
RE: New Script Ideas - by Deco on 09-18-2006 at 01:47 PM
RE: RE: New Script Ideas - by MicroWay on 09-18-2006 at 02:29 PM
RE: New Script Ideas - by Chris4 on 09-18-2006 at 03:14 PM
RE: New Script Ideas - by kvnhmmd on 09-19-2006 at 12:43 AM
RE: New Script Ideas - by deAd on 09-19-2006 at 01:10 AM
RE: New Script Ideas - by markee on 09-19-2006 at 05:11 AM
RE: New Script Ideas - by cloudhunter on 09-19-2006 at 09:31 AM
RE: New Script Ideas - by Deco on 09-19-2006 at 07:43 PM
RE: New Script Ideas - by deAd on 09-19-2006 at 08:38 PM
RE: New Script Ideas - by Spunky on 09-19-2006 at 08:55 PM
RE: New Script Ideas - by Shondoit on 09-19-2006 at 09:19 PM
RE: New Script Ideas - by deAd on 09-19-2006 at 09:29 PM
RE: New Script Ideas - by markee on 09-19-2006 at 09:29 PM
RE: New Script Ideas - by deAd on 09-19-2006 at 09:43 PM
RE: New Script Ideas - by cloudhunter on 09-19-2006 at 11:52 PM
RE: New Script Ideas - by deAd on 09-19-2006 at 11:57 PM
RE: New Script Ideas - by cloudhunter on 09-20-2006 at 12:04 AM
RE: New Script Ideas - by CookieRevised on 09-20-2006 at 12:40 AM
RE: New Script Ideas - by deAd on 09-20-2006 at 02:24 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