DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ GetYearMonthDayUTC()

proto void GetYearMonthDayUTC ( out int year,
out int month,
out int day )

Returns UTC system date.

Аргументы
[out]yearint Year
[out]monthint Month
[out]dayint Day
Возвращает
void
int year = 0;
int month = 0;
int day = 0;
GetYearMonthDayUTC(year, month, day);
Print(year);
Print(month);
Print(day);
>> year = 2015
>> month = 3
>> day = 24
proto void Print(void var)
Prints content of variable to console/log.
proto void GetYearMonthDayUTC(out int year, out int month, out int day)
Returns UTC system date.

Используется в AutoTestFixture::SaveXMLReport().