Native referenceFiveM

GET_POSIX_TIME

0xDA488F299A5B164E CLOCK
FUNCTION SIGNATURE
void GET_POSIX_TIME(int* year, int* month, int* day, int* hour, int* minute, int* second);
Property Value
Native Name GET_POSIX_TIME
Hash 0xDA488F299A5B164E
Return Type void
Parameters year (int*), month (int*), day (int*), hour (int*), minute (int*), second (int*)

Description: ``` Gets system time as year, month, day, hour, minute and second.
Example usage:
int year;
int month;
int day;
int hour;
int minute;
int second;
TIME::GET_POSIX_TIME(&year, &month, &day, &hour, &minute, &second);

Back to CLOCK