mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
13 lines
220 B
Plaintext
13 lines
220 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 ["The time is %1:%2.",_hour, _min], 5] call Epoch_message; |