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;
}