GetTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:
==See Also==
==See Also==
{{World functions}}
{{World functions}}
[[ru:getTime]]

Revision as of 09:54, 7 March 2010

This function is used to get the current time in the game. If you want to get the real server time, use getRealTime.

Syntax

int int getTime ()

Returns

Returns two ints that represent hours and minutes.

Example

local hour, mins = getTime ()
outputChatBox ( "The current time is " .. hour .. ":" .. mins )

See Also

Shared