Shoutbox

[Request] "user offline" notice - 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] "user offline" notice (/showthread.php?tid=61907)

[Request] "user offline" notice by djnerve on 06-28-2006 at 04:51 PM

Heyy guys!

You know what really really bugs me, it's when you're chatting away and you don't notice but they have actually gone offline. stupid thing doesnt tell you at the top anymore.

Could anyone code a script to add it back or just plain text saying user offline?


  Thanks, Ste


RE: [Request] by qgroessl on 06-28-2006 at 04:52 PM

When doesn't say that anymore?... did you patch your Messenger at all?


RE: [Request] by absorbation on 06-28-2006 at 04:54 PM

You can use the events feature in Messenger Plus! ;).


RE: [Request] by djnerve on 06-28-2006 at 05:05 PM

i dont want a pop  up tho it would annoy the hell out of me. nt patched it yet going to use mess patch when i can be arsed.


RE: [Request] by hmaster on 06-28-2006 at 05:47 PM

Make a new script and add this:

code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
var Contacts = ChatWnd.Contacts;
var e = new Enumerator(Contacts);
for(; !e.atEnd(); e.moveNext())
{
    var Contact = e.item();
        if(Contact.Status == 1) {
            MsgPlus.DisplayToastContact("Offline Notification","[b]Your message has been blocked[/b]","because the contact is offline.","Sounds\\notify.mp3");
            return "";
        }
}
return Message;
}
It'll show a toast if the contact is offline. This stops you from offline messaging though so you'll have to turn it off if you want it to work :P Might package it later with an option. Thanks to Stigmata for the help :)
RE: [Request] by Three6Mafia on 06-28-2006 at 06:06 PM

If u have lost the info bar, that notifies you that the person is offline, away, busy, etc.. I reccomend you re-open your mess-patch and edit your current settings... uncheck "yellow info bar" under the "conversation window options"


Pretty Straight Forward:
VVVVVVVVVVVVVVVVVVV
[Image: yellowinfo5nd.jpg]


Oh and look under Aaron on your contact list, stephen...You will find me there :D

o0o
* Three6Mafia bes tricksy


RE: [Request] "user offline" notice by djnerve on 06-28-2006 at 11:32 PM

Aaron the mannnnnnnn! elped me with all sorts tonight haha top lad!


RE: [Request] "user offline" notice by Mr. Bougo on 06-29-2006 at 07:12 AM

hmaster > why the enumerator? In multi-user chats, offline contacts are kicked out the "chatroom", no?


RE: [Request] "user offline" notice by Three6Mafia on 07-02-2006 at 07:34 AM

You Are Bloody Welcome Stephen!
hehe told you to check your WLM contact list to find me :P


RE: [Request] "user offline" notice by wlmcrap on 07-06-2006 at 11:57 PM

Heres the script that i made. It pops up a toast with the person who signs outs name + signed out.