Is there a script to.....? |
Author: |
Message: |
lu_benja
Junior Member
Posts: 43
Joined: Sep 2005
|
O.P. Is there a script to.....?
getting disconected from the messenger in a time that I choose ?
|
|
09-13-2006 06:39 PM |
|
|
Jesus
Scripting Contest Winner
Koffie, my cat ;)
Posts: 623 Reputation: 15
38 / /
Joined: Jul 2005
|
RE: Is there a script to.....?
I'll make it for you now, will be easy
|
|
09-13-2006 06:40 PM |
|
|
lu_benja
Junior Member
Posts: 43
Joined: Sep 2005
|
O.P. RE: Is there a script to.....?
wowww thank you!!
|
|
09-13-2006 06:43 PM |
|
|
Jimbo
Veteran Member
Posts: 1650 Reputation: 18
32 / /
Joined: Jul 2006
|
RE: Is there a script to.....?
code: var allowed;
var restricted = ''; //Edit to your Email
function OnEvent_Signin(){
if (Messenger.MyEmail == restricted && allowed == false){
Messenger.Signout();
}
if (Messenger.MyEmail == restricted){
MsgPlus.AddTimer("AcTime", 60*60*1000);//Ads a 1 hour timer for access time
}
}
That should work but i haven't tested it
quote: originally posted by jesus
I'll make it for you now, will be easy
Sorry, do you want me to delete mine?
This post was edited on 09-13-2006 at 06:52 PM by Jimbo.
|
|
09-13-2006 06:51 PM |
|
|
vaccination
Veteran Member
Posts: 2513 Reputation: 43
32 / / –
Joined: Apr 2005
|
RE: Is there a script to.....?
quote: Originally posted by 134jimbodude
code:
var allowed;
var restricted = ''; //Edit to your Email
function OnEvent_Signin(){
if (Messenger.MyEmail == restricted && allowed == false){
Messenger.Signout();
}
if (Messenger.MyEmail == restricted){
MsgPlus.AddTimer("AcTime", 60*60*1000);//Ads a 1 hour timer for access time
}
}
That should work but i haven't tested it
That isn't going to allow him/her to choose when to sign out though is it? (i don't have any scripting knowledge TBH but it doesn't look like it will )
|
|
09-13-2006 06:54 PM |
|
|
lu_benja
Junior Member
Posts: 43
Joined: Sep 2005
|
O.P. RE: Is there a script to.....?
thanks but I don't know how to make it work
I put the script but it's not showing it
|
|
09-13-2006 06:56 PM |
|
|
Ezra
Veteran Member
Forgiveness is between them and God
Posts: 1960 Reputation: 31
37 / /
Joined: Mar 2003
|
RE: Is there a script to.....?
quote: Originally posted by vaccination
That isn't going to allow him/her to choose when to sign out though is it? (i don't have any scripting knowledge TBH but it doesn't look like it will
nope indeed, because he forgot the timer Event and also I don't think the means the wants to stay online for 1 or 2 hours, but the wants msn to offline on 7pm for example right?
|
|
09-13-2006 06:57 PM |
|
|
Jesus
Scripting Contest Winner
Koffie, my cat ;)
Posts: 623 Reputation: 15
38 / /
Joined: Jul 2005
|
RE: Is there a script to.....?
code: function OnEvent_ChatWndSendMessage(ChatWnd, Message)
{
Debug.Trace(Message.split(' ')[0])
if(Message.split(" ")[0] == "/dsignout")
{
MsgPlus.AddTimer("signout", Message.split(" ")[1] * 60000)
return ""
}
}
function OnEvent_Timer(signout)
{
Messenger.Signout()
}
function OnGetScriptCommands()
{
var commands = "<ScriptCommands>"
commands += " <Command>"
commands += " <Name>dsignout</Name>"
commands += " <Description>Signs you out after a specified amount of time</Description>"
commands += " <Parameters><time in seconds></Parameters>"
commands += " </Command>"
commands += "</ScriptCommands>"
return commands
}
use /dsignout 5 to sign out after 5 seconds minutes.
minutes will be a bit more useful for this purpose
This post was edited on 09-13-2006 at 07:03 PM by Jesus.
|
|
09-13-2006 07:02 PM |
|
|
vaccination
Veteran Member
Posts: 2513 Reputation: 43
32 / / –
Joined: Apr 2005
|
RE: RE: Is there a script to.....?
quote: Originally posted by Ezra
quote: Originally posted by vaccination
That isn't going to allow him/her to choose when to sign out though is it? (i don't have any scripting knowledge TBH but it doesn't look like it will
nope indeed, because he forgot the timer Event and also I don't think the means the wants to stay online for 1 or 2 hours, but the wants msn to offline on 7pm for example right?
Hah i thought it wouldn't, go me
And yes i believe he/she wants wlm to sign out after say 7pm.
|
|
09-13-2006 07:03 PM |
|
|
Jesus
Scripting Contest Winner
Koffie, my cat ;)
Posts: 623 Reputation: 15
38 / /
Joined: Jul 2005
|
RE: Is there a script to.....?
lol thought he meant after a specified amount of time
maybe I'll do that later if no one else volunteers
|
|
09-13-2006 07:05 PM |
|
|
Pages: (3):
« First
[ 1 ]
2
3
»
Last »
|
|