RestartResource: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(add oop syntax)
Line 9: Line 9:
bool restartResource ( resource theResource )
bool restartResource ( resource theResource )
</syntaxhighlight>  
</syntaxhighlight>  
 
{{OOP||[[resource]]:restart}}
===Required Arguments===  
===Required Arguments===  
*'''theResource:''' the [[resource]] you want to restart.
*'''theResource:''' the [[resource]] you want to restart.

Revision as of 16:28, 1 January 2015

This function restarts a running resource. Restarting will destroy all the elements that the resource has created (as stopping the resource does).

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 )

OOP Syntax Help! I don't understand this!

Method: resource:restart(...)


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