Facebook Timelock

By Aaron Russell Last update Jun 20, 2009 — Installed 228 times. Daily Installs: 2, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 3, 1, 0, 1, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0

There are 5 previous versions of this script.

// ==UserScript==
// @name           Facebook Timelock
// @namespace      Aaron Russell
// @include        http://www.facebook.com/home.php
// ==/UserScript==

//Time is in hours counting from midnight
var start = "0";
var end = "8";
var message = "You're Too Drunk";
var redirect = "http://www.google.com";
var d=new Date();
var time=d.getHours();

if (start<=time && time<=end) 
{
alert(message);
window.location=redirect;
}