Thanks ill start to learn this off by heart and erm
Do I add how many seconds in 2 hours or ?
Code:
(2 HOURS VAL);
(2 HOURS VAL);
Timers work using milliseconds, there are 1000 ms in 1 s, 60 * 60 is an hour in seconds, so it would be 3600 * 2 seconds in 2 hours, then multiply it by 1000 to find ms = (3600 * 2) * 1000 = 7,200,000 milliseconds :)Quote:
Thanks ill start to learn this off by heart and ermDo I add how many seconds in 2 hours or ?Code:(2 HOURS VAL);