What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! General » Status when locked

Status when locked
Author: Message:
Jesus
Scripting Contest Winner
****

Avatar
Koffie, my cat ;)

Posts: 623
Reputation: 15
37 / Male / Flag
Joined: Jul 2005
RE: RE: RE: Status when locked
quote:
Originally posted by fatfreechicken
(You'll need to manually change your status though when you unlock however)
I added some code to fix this
code:
ChangedOnLock = false

function OnEvent_MessengerLocked(){
    if (Messenger.MyStatus == 3){
        Messenger.MyStatus = 5; //Set to BRB
        ChangedOnLock = true;
    }
}

function OnEvent_MessengerUnlocked(){
    if (Messenger.MyStatus == 5 && ChangedOnLock == true){
        Messenger.MyStatus = 3; //Revert to Online
        ChangedOnLock = false;
    }
}
This will only revert your status to Online if it was set to BRB by this script while locking messenger.

This post was edited on 02-19-2008 at 04:12 AM by Jesus.
Man is least himself when he is in his own person. Give him a mask and he will tell you the truth. (Oscar Wilde)
02-19-2008 04:12 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Status when locked - by bimmerdriver on 02-11-2008 at 06:08 AM
RE: Status when locked - by Justin on 02-12-2008 at 10:05 PM
RE: RE: Status when locked - by pollolibredegrasa on 02-17-2008 at 11:03 PM
RE: RE: RE: Status when locked - by bimmerdriver on 02-18-2008 at 04:46 AM
RE: RE: RE: Status when locked - by Jesus on 02-19-2008 at 04:12 AM
RE: Status when locked - by Quantum on 02-12-2008 at 10:17 PM
RE: Status when locked - by Jesus on 02-12-2008 at 11:01 PM
RE: RE: Status when locked - by bimmerdriver on 02-17-2008 at 10:28 PM
RE: Status when locked - by RaceProUK on 02-19-2008 at 02:16 AM


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