Shoutbox

[REQUEST] Auto-invite - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [REQUEST] Auto-invite (/showthread.php?tid=63718)

[REQUEST] Auto-invite by YottabyteWizard on 07-21-2006 at 05:59 AM

On the oldtimes, when existed MSN Messenger 4.6/4.7 I had a program which autoinvited users to a conversation when they leaved the conversation.

Ex.: When I left a multiple user conversation, a bot or script will add me back to that conversation.

Could it be possible?


RE: [REQUEST] Auto-invite by markee on 07-21-2006 at 07:39 AM

Try this:

code:
function OnEvent_ChatWndContactRemoved(ChatWnd,Email) //starts when someone exits
{
  ChatWnd.SendMessage("/invite "+Email) //invites contact back
}
This should be what you want, it only works for conversations with 3 or more people and the person that leaves must have you in their allowed list for it to work :)
RE: [REQUEST] Auto-invite by andrey on 07-21-2006 at 08:34 AM

wtf people usually have a reason when they're leaving a group chat :-/


RE: [REQUEST] Auto-invite by The_Joker on 07-21-2006 at 08:49 AM

lol, that's mean...
Usually if people keep adding me they get *blocked* :P
This script gonna raise the block button usage...
(Funny, just seen a script to auto-exit a conference, coincidence?)


RE: [REQUEST] Auto-invite by markee on 07-21-2006 at 08:51 AM

If the person wih the script is blocked by the person wh exits the chat then it should get out of the convo.  Also if you signout or appear offline it will also exit the convo (and any other convos too).


RE: [REQUEST] Auto-invite by The_Joker on 07-21-2006 at 09:00 AM

Blocking the person doesn't exit the convo.
Appear offline or sign-out does.
Blocking just prevent from the person from REinviting u (not from some1 else in the convo though :()


RE: [REQUEST] Auto-invite by markee on 07-21-2006 at 09:15 AM

quote:
Originally posted by The_Joker
Blocking the person doesn't exit the convo.
Appear offline or sign-out does.
Blocking just prevent from the person from REinviting u (not from some1 else in the convo though :()
It might not exit out but it allows you to then exit and not be automatically invited back.  I personally don't want the script but if someone has asked for it I might as well help them and explain how to prevent this from happening to you if someone uses this script with you.