RestartResource: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
__NOTOC__
__NOTOC__
This function restarts a running resource.<br>
This function restarts a running resource.<br>
'''Note:''' This function does not restart the resource immediately, so don't expect that stops or starts until [[onResourceStop]] and [[onResourceStart]] events for that resource is called. This happens after the scripts are done executing for this server frame.
'''Note:''' This function does not restart the resource immediately. Restarts are queued up until the end of the server's frame to ensure that they occur in the correct order (and that dependent resources can start and stop correctly). The resource being restarted will have an [[onResourceStop]] event triggered and the restarted instance will receive an [[onResourceStart]] event. Remember that the element and resource variables will be invalidated during the restart, though of course, the resource's name will not.  


==Syntax==  
==Syntax==  

Revision as of 22:59, 13 April 2008

This function restarts a running resource.
Note: This function does not restart the resource immediately. Restarts are queued up until the end of the server's frame to ensure that they occur in the correct order (and that dependent resources can start and stop correctly). The resource being restarted will have an onResourceStop event triggered and the restarted instance will receive an onResourceStart event. Remember that the element and resource variables will be invalidated during the restart, though of course, the resource's name will not.

Syntax

bool restartResource ( resource theResource )

Required Arguments

  • theResource: the resource you want to restart.

Returns

Returns true if the resource was restarted, false if the restart failed, or an invalid resource was passed.

Example

This function restarts all running resources.

function restartAllResources()
	-- we store a table of resources
	local allResources = getResources()
	-- for each one of them,
	for index, res in ipairs(allResources) do
		-- if it's running,
		if getResourceState(res) == "running" then
			-- then restart it
			restartResource(res)
		end
	end
end

See Also