What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [request]Msn block

Pages: (3): « First « 1 2 [ 3 ] Last »
[request]Msn block
Author: Message:
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: [request]Msn block
code:
var allowed;
var restricted = ''; //Edit to Restricted Email
function OnEvent_Signin(){
if (Messenger.MyEmail == restricted && allowed == false){
MsgPlus.DisplayToast("Time Restriction", "You don't have permission to sign in");
Messenger.Signout();
}
if (Messenger.MyEmail == restricted){
MsgPlus.AddTimer("AcTime", 60*60*1000);//Ads a 1 hour timer for access time
}
}

function OnEvent_Timer(TimerId){
if (TimerId == "AcTime"){
allowed = false;
MsgPlus.DisplayToast("Time Restriction", "Your Time is up");
Messenger.Signout();
MsgPlus.AddTimer("Gap", 60*60*1000);//Ads a 1 hour timer for gap between signins.
}
if (TimerId == "Gap"){
allowed = true;
}
}
I gave this to you on WLM this evening, i may create a Configuration Window and make it more secure so that no one can skip this without the password some other day when i am free and don't have school work [Image: xso_cheesy.gif].
09-01-2006 03:37 PM
Profile E-Mail PM Web Find Quote Report
Pages: (3): « First « 1 2 [ 3 ] Last »
« 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