With what you wrote you're saying you you do NOT want anything BEFORE 3pm to trigger it but you also want it triggered on anything BEFORE 1:30pm? Anything that's before 3pm will be before 1:30 pm.

Now, I'm going to assume for a second that you want it to trigger at anytime BETWEEN 1:30pm and 3pm?

If so...

Code:
if ( ( $Gettok($asctime(HH:nn:ss),1,58) <= 15 ) && ( $calc($Gettok($asctime(HH:nn:ss),1,58) + $Gettok($asctime(HH:nn:ss),2,58) / 60 ) >= 13.5 ) ) { do stuff here }


There's probably an easier way, using Regex. I'm tired and the brain doesn't want to be bothered with Regex though.

Last edited by Thrull; 23/03/08 03:55 AM.

Yar