I'm trying to figure out how to create a script that checks the $time every minute, and when the $time is right, it /flashs. Will this work:

Code:
alias timecheck1 { 
  .timer 1 60 .timecheck2 
}

alias timecheck2 {
  if ($time < 20:50:01) { .timecheck1 }
  elseif ($time > 20:50:01) { /flash -r10 UNBANNED | halt }
}