GetResourceLoadTime

From Multi Theft Auto: Wiki
Revision as of 11:59, 21 May 2009 by Sebassje (talk | contribs)
Jump to navigation Jump to search

Gets the date and time at which a resource was last loaded in the server.

Syntax

string getResourceLoadTime ( resource res )

Required Arguments

  • res: the resource you want to know the load time of.

Returns

If successful, returns seconds from loadtime, otherwise false.

Example

This code outputs the date and time at which the scoreboard resource was last loaded.

local res = getResourceFromName ( "scoreboard" )
if res then
    outputConsole ( "scoreboard was last loaded on: " .. getResourceLoadTime(res) )
end

See Also