GameTimeToString - Utility

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.

SyntaxEdit

string Function GameTimeToString(float afGameTime) native global

ParametersEdit

  • afGameTime: The game time to convert to a string - in game days passed.

Return ValueEdit

A string representing the date and time that the game time represents.

ExamplesEdit

; 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()))

See AlsoEdit