Hi All,

I'm still having problems with a script that I've been using for quite some time now.

Code:
on *:START:{ .timerhour 0 1 timesetup }

alias timesetup { .hour }

alias hour {
  if (($remove($time,$mid($time,1,3)) == 00:00) || ($time(HH:nn:ss) == 00:00:00)) {
    COMMANDS
  }
}


It's a little bugged somehow.
Sometimes it doesn't recognise the hour, and thus nothing happens. Imagine you make a count down timer, that deducts every hour... Skipping an hour could be a serious problem...

Does anyone have better idea's on how to make it?
Bulletproof idea's, with maybe a check in it or summin?

I just want to perform some commands, every hour, when the time is xx:00:00

Thanks in advance!