Epoch/Sources/epoch_code/compile/missions/tasks/traderDiag_timePlease.sqf
Andrew Gregory 30edcfb449 Task Mission System
Update for task system.
2016-05-31 16:28:07 +01:00

13 lines
260 B
Plaintext

_hour = str(date select 3);
_min = str(date select 4);
if(count _hour < 2)then{
_hour = "0" + _hour;
};
if(count _min < 2)then{
_min = "0" + _min;
};
[format ["<t size='1.6' color='#99ffffff'>The time is %1:%2.</t>",_hour, _min], 5] call Epoch_dynamicText;