GetResourceLoadTime

From Multi Theft Auto: Wiki
Revision as of 13:41, 10 August 2021 by Pawelo (talk | contribs) (Add missing OOP info)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Syntax

int getResourceLoadTime ( resource res )

OOP Syntax Help! I don't understand this!

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


Required Arguments

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

Returns

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

Example

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

This code outputs the date and time at which the specified resource started.

function getLoadTime(p,c,res)
	local resource = getResourceFromName(tostring(res))
	if not res or not resource then
		outputChatBox("Syntax: /" .. c .. " [Resource Name]")
	else
		local time = getRealTime(getRealTime().timestamp-getResourceLoadTime(resource))
		outputChatBox("The resource " .. res .. " started at " .. string.format("%i/%i/%i %i:%i:%i",time.monthday,time.month,time.year,time.hour,time.minute,time.second))
	end
end
addCommandHandler("getResourceLoadTime", getLoadTime, false,false) --adds the command handler

See Also