What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » automatic initiate boss protection

automatic initiate boss protection
Author: Message:
SkykeN
New Member
*


Posts: 2
Joined: May 2004
O.P. automatic initiate boss protection
Hi, I have a question, is there an option to automaticly initiate the boss protection after a couple of minutes not using messenger? Is this possible, maybe with some plugin?

This post was edited on 03-22-2010 at 10:24 AM by SkykeN.
03-22-2010 10:22 AM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: automatic initiate boss protection
Here is a quick script that will lock messenger when you status is set to idle.

In order for this to work WLM has to be allowed to change your status to idle after X minutes of inacctivity.
Javascript code:
function OnEvent_MyStatusChange (nStatus) {
    if (nStatus === STATUS_IDLE) {
        Messenger.LockMessenger = true;
    }
}

03-22-2010 01:07 PM
Profile E-Mail PM Find Quote Report
SmokingCookie
Senior Member
****

Avatar

Posts: 815
Reputation: 15
30 / Male / Flag
Joined: Jul 2007
RE: RE: automatic initiate boss protection
quote:
Originally posted by matty
Javascript code:
function OnEvent_MyStatusChange (nStatus) {
    if (nStatus === STATUS_IDLE) {
        Messenger.LockMessenger = true;
    }
}



Well, that ain't working at all. Should be like this:

JScript code:
function OnEvent_MyStatusChange (nStatus) {
    if (nStatus === STATUS_IDLE) {
        Messenger.LockMessenger(true);
    }
}


This post was edited on 04-12-2010 at 07:32 PM by SmokingCookie.
04-12-2010 07:32 PM
Profile PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: automatic initiate boss protection
Wow did I seriously do that. Good catch!
04-12-2010 07:38 PM
Profile E-Mail 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