GameTimeToString - Utility
Revision as of 18:56, 14 February 2012 by imported>Catwheezle (→See Also)
Member of: Utility Script
Converts the passed-in game time (in game days passed) to a string detailing the date and time it represents. The resulting format is: "MM/DD/YYYY HH:MM" and uses a 24-hour clock.
Syntax
string Function GameTimeToString(float afGameTime) native global
Parameters
- afGameTime: The game time to convert to a string - in game days passed.
Return Value
A string representing the date and time that the game time represents.
Examples
; Print out the current date and time - will look something like "Current date and time: 07/12/0713 10:31"
Debug.Trace("Current date and time: " + Utility.GameTimeToString(Utility.GetCurrentGameTime()))