What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Children Timer

Children Timer
Author: Message:
NiteMare
Veteran Member
*****

Avatar
Giga-Byte me

Posts: 2497
Reputation: 37
36 / Male / Flag
Joined: Aug 2003
RE: Children Timer
quote:
Originally posted by thedestroyer
Ok, something like...

quote:
var Sec = 0;
var Min = 0;
var Hrs = 0;
var Days = 0;
var Weeks = 0;

function OnEvent_Signin(Email)
{
var Email_1 = "default@hotmail.com";  // Your children email
var Email_2 = "";
if (Email_1 == Email || Email_2 == Email) {
MsgPlus.AddTimer("Time",1000);
}
}

function OnEvent_Timer(sTimerId)
{
    if (sTimerId == "Time") {   
       
        if (Sec == "60") {
            Sec = 0;
            Min = Min + 1;
        }
        if (Min == "60") {
            Hrs = Hrs + 1;
            Min = 0;
        }
        if (Hrs == "24") {
            Hrs = 0;
            Days = Days + 1;
        }
        if (Days == "7") {
            Days = 0;
            Weeks = Weeks + 1
        }
        var OnlineTime = "Online: " + Days + " days, " + Hrs + " hours, " + Min + " mins and " + Sec + " seconds";
        Messenger.MyPersonalMessage = OnlineTime
        Debug.Trace(OnlineTime);
        Sec = Sec + 1;
        MsgPlus.AddTimer("Time",1000);
                if ((Hrs == "2") && (Sec >= "0") && (Min >=0)) {
         var Message = "Your time is over !" ;
        Message = MsgPlus.RemoveFormatCodes(Message);
         MsgPlus.DisplayToast("Max Time", Message,'notify.mp3');
         Messenger.signout();
       
         } 
    }
}[/code]

i don't see a differance there:P
but this is what i'm talking about, mind you its not tested, and could have bugs

code:
//put this where you force them to sign out

AddTimer("access",60 * 60 * 1000); //Sets a timer for an hour


OnEvent_Timer(TimerId ){
    //if the timer is the access timer
    if (TimerId == "access")
        //set the variable to true, allowing signin access
        allowaccess == true;
    }

}


OnEvent_Signin(sEmail){
    //if the time is to short between signing back in
    if (allowaccess == false){
        //auto sign them out again
        Messenger.Signout();
    }
}

[Image: sig/]
I'll never forget what she said 6709 days, 8 hours, 40 minutes, 27 seconds ago
Need hosting? Check
out my website. we can help you out :)
07-05-2006 03:22 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Children Timer - by thedestroyer on 06-27-2006 at 09:27 AM
RE: Children Timer - by Sunshine on 06-27-2006 at 12:48 PM
RE: Children Timer - by alexp2_ad on 06-27-2006 at 12:57 PM
RE: Children Timer - by thedestroyer on 07-05-2006 at 02:44 PM
RE: Children Timer - by NiteMare on 07-05-2006 at 03:11 PM
RE: Children Timer - by thedestroyer on 07-05-2006 at 03:16 PM
RE: Children Timer - by NiteMare on 07-05-2006 at 03:22 PM
RE: Children Timer - by Voldemort on 07-05-2006 at 03:31 PM
RE: Children Timer - by thedestroyer on 07-05-2006 at 05:25 PM
RE: Children Timer - by NiteMare on 07-05-2006 at 05:49 PM


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