Quote:
|
Originally Posted by Velox Cruentus
seconds = (timevar*5)%60;
minutes = int((timevar*5)/60)%60;
hours = int((timevar*5)/(60*60))%24;
days = int((timevar*5)/(60*60*24));
I believe? I'm not sure. I did this pretty fast.
|
What do you suppose would happen if timevar incremented during the execution of your script?