What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Group Chat Blocker

Group Chat Blocker
Author: Message:
sdollins
New Member
*


Posts: 1
Joined: Aug 2009
O.P. Group Chat Blocker
Hi,

I've had tons of issues with people dragging me into group chats. I was using the script that asks if you accept or decline, but I want something that will just automatically leave and not bother me. It's very annoying. I believe this should be possible but I have no idea how to go about doing it. If anyone like to create this script, it would be very much appreciated. Oh, a on/off command would be good, too.


Thank you,
Scott

Edit: I ended up just doing it myself.

http://scottsblog.us.to/storage/2009/08/GroupChatBlocker.plsc

This post was edited on 08-16-2009 at 12:52 PM by sdollins.
08-16-2009 09:59 AM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Group Chat Blocker
I would recommend using this:

Javascript code:
function OnEvent_ChatWndCreated( pChatWnd ) {
    if ( pChatWnd.Contacts.Count !== 1 ) {
        pChatWnd.SendMessage('Sorry, I do not participate in group conversations. Goodbye.'); // send  good bye message
        pChatWnd.SendMessage('.pif'); // kick the participants on your end
        Interop.Call( 'user32', 'SendMessageW', pChatWnd.Handle, 0x10 /* WM_CLOSE */, 0, 0 ); // close the window
    }
}

08-17-2009 01:26 PM
Profile E-Mail PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: Group Chat Blocker
quote:
Originally posted by matty
pChatWnd.SendMessage('.pif'); // kick the participants on your end

Does that still actually work?
<Eljay> "Problems encountered: shit blew up" :zippy:
08-17-2009 09:48 PM
Profile PM Find Quote Report
vaccination
Veteran Member
*****

Avatar

Posts: 2513
Reputation: 43
32 / Male / –
Joined: Apr 2005
RE: Group Chat Blocker
quote:
Originally posted by Spunky
quote:
Originally posted by matty
pChatWnd.SendMessage('.pif'); // kick the participants on your end

Does that still actually work?
dunno, but send a 110mb link and you'll be kicked
[Image: jumbled.png]
08-17-2009 10:19 PM
Profile PM 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