GetTime

From Multi Theft Auto: Wiki
Revision as of 09:13, 5 April 2012 by Arran Fortuna (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

This example adds the command gettime which outputs the game time

Click to collapse [-]
Client
function currentTime()
    local hour, minutes = getTime()
    outputChatBox( "The current time is "..hour..":"..minutes )
end
addCommandHandler("gettime", currentTime)

See Also