daytime: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}") |
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:Scripting Commands OFP 1.[4-9]{2}(\|(\{\{uc:\{\{PAGENAME\}\}\}\}|#))?\]\] " to "") |
||
Line 30: | Line 30: | ||
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] | ||
{{GameCategory|arma1|Scripting Commands}} | {{GameCategory|arma1|Scripting Commands}} | ||
{{GameCategory|arma2|Scripting Commands}} | {{GameCategory|arma2|Scripting Commands}} | ||
{{GameCategory|arma3|Scripting Commands}} | {{GameCategory|arma3|Scripting Commands}} |
Revision as of 23:21, 24 March 2021
Description
- Description:
- Description needed
- Multiplayer:
- Returns the current local ingame time in hours.
- Groups:
- EnvironmentMission InformationTime
Syntax
- Syntax:
- Syntax needed
- Return Value:
- Return value needed
Examples
- Example 1:
daytime; // returns 16.5 given it is 16:30 (4.30pm) in game
- Example 2:
- Get hour, minute, seconds:
private _daytime = daytime; // assuming daytime returns 1.66046 private _hours = floor _daytime; // 1 private _minutes = floor ((_daytime - _hours) * 60); // 39 private _seconds = floor ((((_daytime - _hours) * 60) - _minutes) * 60); // 37
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note