getResourceLoadTime | Multi Theft Auto: Wiki Skip to content

getResourceLoadTime

Client-side
Server-side
Shared

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


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

OOP Syntax Help! I don't understand this!

  • Method: resource:getLoadTime(...)
  • Variable: .loadTime

Syntax

int getResourceLoadTime ( resource res )
Required Arguments
  • res: the resource you want to know the load time of.

Returns

  • int: value

If successful, returns the UNIX timestamp when the resource was loaded, otherwise false. Use in conjunction with getRealTime in order to retrieve detailed information.

Code Examples

shared

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

local res = getResourceFromName ( "scoreboard" )
if res then
local time = getRealTime(getResourceLoadTime(res)) --Gets all the data we need from UNIX time format, see getRealTime() for more details
outputConsole ( "scoreboard was last loaded on: " .. string.format("%i/%i/%i %i:%i:%i",time.monthday,time.month,time.year,time.hour,time.minute,time.second)) --this will be something like this: scoreboard was last loaded on: 10/07/2017 14:13:10
end