武装突袭 Wiki
Advertisement
Introduced with Operation Flashpoint version 1.00
  

点击图片可看到更多讯息

开始使用于

游戏:
Operation Flashpoint
版本:
1.00

描述

描述:
Returns the current ingame time in hours.

基本句法

句法:
Number = daytime
返回值:
Number - Time using a 24 hour clock.

范例

范例1:
; assumme it is 16:30
_daytime = daytime
returns 16.5

额外资讯

多人游戏:
Returns the current local ingame time in hours.
也可以看看:
datedateToNumbertimeskipTime

注意事项

此处撰写句法皆为可行用法. 可到官网[1]专页回报错误. 你可以使用讨论页面或是论坛来进行讨论.
新增注意事项 | 如何新增?

Notes

Bottom Section

Posted on September 23, 2014 - 02:00 (UTC)
Benargee
To change daytime To 24 hour format with hours, minutes, and seconds use this: //daytime = 1.66046 _hour = floor daytime; _minute = floor ((daytime - _hour) * 60); _second = floor (((((daytime) - (_hour))*60) - _minute)*60); _time24 = text format ["%1:%2:%3",_hour,_minute,_second]; //_time24 = 1:39:37 Note: Not perfect method, "12:03:06" will display as "12:3:6", more script needed to remove this. Other methods might exist for basic functionality.
Advertisement