Native referenceFiveM

GET_LOCAL_TIME

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

Description: ``` Gets local system time as year, month, day, hour, minute and second.
Example usage:
int year;
int month;
int day;
int hour;
int minute;
int second;
or use std::tm struct
TIME::GET_LOCAL_TIME(&year, &month, &day, &hour, &minute, &second);

Back to CLOCK