GetTime

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

These two examples adds the command gettime which outputs the local game time and the server game time.

Click to collapse [-]
Client
function currentTime()
    local timehour, timeminute = getTime()
    outputChatBox( "The current game time is "..timehour..":"..timeminute )
end
addCommandHandler("gettime", currentTime)
Click to collapse [-]
Server
function currentTime(sourcePlayer)
    local timehour, timeminute = getTime()
    outputChatBox( "The current game time (server) is "..timehour..":"..timeminute, sourcePlayer )
end
addCommandHandler("gettime", currentTime)

See Also