GetTime

From Multi Theft Auto: Wiki
Revision as of 23:28, 17 December 2007 by EAi (talk | contribs)
Jump to navigation Jump to search

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