GetResourceLastStartTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{server function}}
Used to check the last starting time and date of a function
Used to check the last starting time and date of a function



Revision as of 11:30, 11 August 2007

Used to check the last starting time and date of a function

Syntax

string getResourceLastStartTime ( resource theResource )

Required Arguments

  • theResource: The resource of which you'd like to check the last starting time and date.

Returns

Returns a string with the time and date, or false if the resource does not exist.

Example

This function outputs to chatbox when the current resource was started.

function whenStarted()
    local startTime = getResourceLastStartTime ( getThisResource() )    --Get the time and date
    outputChatBox( "This resource was started on: " .. startTime )    --tell everybody when the current resource was started.
end

See Also