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:
stephen_wq
Junior Member
**

Avatar
Fireball!

Posts: 57
– / Male / –
Joined: Sep 2004
O.P. Blocking SweetIM requests
I have contacts with SweetIM installed. I dont want this, i dont need this, and i hate the annoying requests that come up when they use it.
quote:
news:Your.buddy.sent.you.a.new.Nudge,.get.it.with.the.new.SweetIM.at http://www.sweetim.com/s.asp?ref=1&ses=21502052&r...50002)(Gun)\@TCEN
I will do anything, to block these requests, as it annoys the hell out of me.
Ive tried word filtering, its too long, and it would take ages to add each of them.

This post was edited on 06-30-2006 at 07:15 AM by stephen_wq.
06-30-2006 07:14 AM
Profile E-Mail PM Find Quote Report
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 »


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