QUOTE (-Mystic- @ Nov 21 2008, 04:05 PM)

Not bad at all, but you should go by a 24hr clock"not real time... that'd be forever"
Example.
Seconds =
CODE
var[001] Seconds + 1
wait 2 frames
condition brach
if var[001] Seconds >=60
var[001] Seconds = 0
var[002] Minutes = [001] + 1
ende case
wait 2 frames
if var[002] Munutes >=60
var[002] Minutes = 0
var[003] Hours = [003] + 1
end case
wait 2 frames
Just a clock timer, works great, but if you're going by real time, you need to have a wait 60; at the end of the event because 60/60=1 second;
Um i know that im not that great at this but i wana take a shot at it, lets see if i understand what this script does, every 60 seconds it turns into 1 min, but also restarts the seconds clock, right???? and the same with minutes and hours??? that way after 12 hrs itll be nite and then day again???