06.06.2016, 11:11
Create a timer to run every minute and check if the minutes are equal to 0. If minutes are equal to 0, that means a new hour began.
Код:
SetTimer("Function1",60000,true); public Function1() { new hours,minutes,seconds; gettime(hours,minutes,seconds); if(minutes==0) { // New hour began } return 1; }