How to change x2 master points schedule to morning
Quote:
server startup is the same day of the schedule, skip this.dayofweek hour minute second frequency eventid
sunday
0 20 0 0 0 227//acquire a day po 2 x event start
0 22 0 0 0 228//acquire a day po 2 x event ends
monday
1 20 0 0 0 227//acquire a day po 2 x event start
1 22 0 0 0 228//acquire a day po 2 x event ends
on tuesday,
2 20 0 0 0 227//acquire a day po 2 x event start
2 22 0 0 0 228//acquire a day po 2 x event ends
on wednesday,
3 20 0 0 0 227//acquire a day po 2 x event start
3 22 0 0 0 228//acquire a day po 2 x event ends
thursday
4 20 0 0 0 227//acquire a day po 2 x event start
4 22 0 0 0 228//acquire a day po 2 x event ends
friday
5 20 0 0 0 227//acquire a day po 2 x event start
5 22 0 0 0 228//acquire a day po 2 x event ends
saturday
6 20 0 0 0 227//acquire a day po 2 x event start
6 22 0 0 0 228//acquire a day po 2 x event ends
any idea?
Re: How to change x2 master points schedule to morning
6 20 0 0 0 227
6 is the day of the week from 0 sunday to 6 saturday
20 is the hour in a 24 military format
0 will be minutes: from 0 to 60
0 will be seconds: same as above
0 I don't know
227 event ID.
so lets say you want the event at 9:30 AM your string will look like this
6 9 30 0 0 227
Re: How to change x2 master points schedule to morning
Quote:
Originally Posted by
Eliana Gherbaz
6 20 0 0 0 227
6 is the day of the week from 0 sunday to 6 saturday
20 is the hour in a 24 military format
0 will be minutes: from 0 to 60
0 will be seconds: same as above
0 I don't know
227 event ID.
so lets say you want the event at 9:30 AM your string will look like this
6 9 30 0 0 227
@Eliana Gherbaz
Thank you ;)