Shoutbox

[request]Msn block - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [request]Msn block (/showthread.php?tid=65612)

[request]Msn block by Jimbo on 08-30-2006 at 03:39 PM

Ok, my sister really annoys me sometimes so can someone create a script that only allows her to stay online for a certain time(just tell me where to put this and i will put it in)

When her time is up, can msn display a toast that says:

quote:
Your time is up on msn, contact 134jimbodude if you want to stay on msn for longer.



thanks
RE: [request]Msn block by matty on 08-30-2006 at 03:44 PM

[Release] Visitor control

Search?


RE: [request]Msn block by ForestPlus! on 08-30-2006 at 03:46 PM

Well you probably don't wanna pay for it, but there is a program which u put how long she's allowed on there and when the times up it'll disconnect her..
This programe is called Mom says no

Otherwise ill keep searching for something like it for free, (as i have the same problem) and tell you if i find anything:P


RE: [request]Msn block by Jimbo on 08-30-2006 at 03:49 PM

yes, thats the sort of thing i want forestland

Matty, Visitor control doesn't shut down her msn after a certain amount of time. or does it?


RE: [request]Msn block by ForestPlus! on 08-30-2006 at 03:57 PM

Okay, i will keep looking for something like that, allthought it might be hard to find.. It probably would be easier if someone could make it a script, and have thier remaining time in the corner of the contact list or something:P...
regardless, i shall keep trying.


RE: [request]Msn block by Jimbo on 08-30-2006 at 03:59 PM

Thanks:D


RE: [request]Msn block by ForestPlus! on 08-30-2006 at 04:06 PM

Well heres something i found, but it doesn't last forever..:(

Mom says no -free trail

Theres a free trial available(Y), but it only last 14 days(N)..
But if the problems really annoying you, you can download it for 14 days.... and who knows, it might be stupid enough to let you un-install it then re-install it again so u get another 14 days!

Any good?


RE: [request]Msn block by Jimbo on 08-30-2006 at 04:10 PM

Thanks forestland, but i hate free trials because you only get half the features and they only lasts for about 14 days.

thanks anyway

quote:
Originally posted by ForestLand
and who knows, it might be stupid enough to let you un-install it then re-install it again so u get another 14 days!


No free trial is that stupid!It would only work if you deleted all the registry files and all the application data, and to be honest, i can't be bothered


RE: [request]Msn block by ForestPlus! on 08-30-2006 at 04:15 PM

Another solution, beg a Plus! genius (dazmatic, chrono, Zahid, you get the idea) to make the script for you?:P


RE: [request]Msn block by Jimbo on 08-30-2006 at 04:16 PM

lol, already trying that in Private messages
* Jimbo hopes that scripters are reading this


RE: [request]Msn block by Felu on 08-30-2006 at 04:24 PM

quote:
Originally posted by ForestLand
Another solution, beg a Plus! genius (dazmatic, chrono, Zahid, you get the idea) to make the script for you?[Image: msn_tongue.gif]
[Image: rofl.gif], I dont think they are good at scripting :p.

quote:
Originally posted by 134jimbodude
lol, already trying that in Private messages
* 134jimbodude hopes that scripters are reading this
|-). If you want me to make one, find out my WLM id add me and then ask for it :p.
RE: [request]Msn block by Jimbo on 08-30-2006 at 04:27 PM

How can i, when your WLM isn't in your profile


RE: [request]Msn block by ForestPlus! on 08-30-2006 at 04:43 PM

Maybe patchou will put it in as a feature for the next msgplus! live?


RE: [request]Msn block by Chris4 on 08-30-2006 at 04:56 PM

quote:
Originally posted by ForestLand
Maybe patchou will put it in as a feature for the next msgplus! live?

Highly doubt it.

quote:
Originally posted by 134jimbodude
How can i, when your WLM isn't in your profile
PM him ;)
RE: [request]Msn block by Jimbo on 08-30-2006 at 04:58 PM

he's going to make it for me tomorrow, but if anyone can do it before that, i would be very grateful


So chornonewb, when are you going to come online to WLM and make it for me?
RE: [request]Msn block by Kenji on 08-31-2006 at 12:08 PM

Be pateint, hes in a differnt time zone, hes probally sleeping or at school, and if you look hes offline on here aswell..


RE: [request]Msn block by Jimbo on 08-31-2006 at 12:09 PM

oh yeah
do you know what timezone he is in?


RE: [request]Msn block by ForestPlus! on 08-31-2006 at 01:27 PM

Urm... probably somewhere like america or canada, where it is early morning over there (correct me if i'm wrong:P)

But if you do wanna find out what time zone he's in, look on the Time zone script thread and when he goes on wlm/msn you can check it;)


RE: [request]Msn block by Felu on 08-31-2006 at 01:46 PM

I just came back, i have done the basic coding just a few bugs to fix and a configuration window to make [Image: msn_tongue.gif]. And my Time Zone is GTM + 5:30(Calcutta, Delhi, Mumbai, Madras)

I will sign in only where WLM stops crashing :dodgy:


RE: [request]Msn block by Jimbo on 09-01-2006 at 10:15 AM

Chrono, reply to my pm, its not working!you haven't tested it have you?


RE: [request]Msn block by Felu on 09-01-2006 at 03:37 PM

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].