What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Skype & Live Messenger » Blocking SweetIM requests

Blocking SweetIM requests
Author: Message:
FineWolf
Full Member
***

Avatar
Space Artist

Posts: 188
Reputation: 12
– / Male / Flag
Joined: Sep 2003
RE: Blocking SweetIM requests
Create a script, put that in it:

code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    var found = Message.search(/sweetim/i);
    if(found != -1)
        {
        return "* Message Filtered";
        }
    else
        return Message;
}


and if you want to be fancy and tell them to stop sending that crap:

code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    var found = Message.search(/sweetim/i);
    if(found != -1 && Origin != Messenger.MyName)
    {
        ChatWnd.SendMessage("I am not interested in your SweetIM crap, please stop sending it to me!");
        return "* Message Filtered";
    }
    else
        return Message;
}


This post was edited on 06-30-2006 at 07:42 PM by FineWolf.
[Image: spacesigkj4.png]
06-30-2006 07:30 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Blocking SweetIM requests - by stephen_wq on 06-30-2006 at 07:14 AM
RE: Blocking SweetIM requests - by FineWolf on 06-30-2006 at 07:30 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