In my stupidness I forgot to add the CRONS for this too work so add this to your cron_minute.php file
$db->query("UPDATE `maintenance` SET hour=hour-1 WHERE minute = 0");
$db->query("UPDATE `maintenance` SET minute=minute+59 WHERE minute = 0");
$db->query("UPDATE `maintenance` SET minute=minute-1 WHERE minute > 0");
$db->query("DELETE FROM maintenance WHERE hour=0 AND minute=0");
$db->query("DELETE FROM maintenance WHERE hour=-1");
Extremlely sorry about that I know its been a few years since i added this mod I thought i Added the Cron aswell