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:
thedestroyer
New Member
*


Posts: 5
Joined: Jun 2006
O.P. RE: Children Timer
I've make a provisional one:

code:
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"; //Change to your children email
var Email_2 = "";

if (Email == Email_1 || Email == Email_2) {
MsgPlus.AddTimer("Time",1000);
}

else {}

}

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
        }
        Debug.Trace(OnlineTime);
        Sec = Sec + 1;
        MsgPlus.AddTimer("Time",1000);
       
        if (Hrs == "2") {
            var Message = "Bye Bye !";
            Message = MsgPlus.RemoveFormatCodes(Message);
             MsgPlus.DisplayToast("Your time is over", Message,'notify.mp3');
             Messenger.signout();         } 

    }
}


I need that children can't connect after the signout :D
Hi !
07-05-2006 02:44 PM
Profile E-Mail PM 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