StopResource

From Multi Theft Auto: Wiki
Revision as of 15:44, 29 August 2007 by Talidan (talk | contribs) (corrected example, cleaned up slightly.)
Jump to navigation Jump to search

This function stops a running resource.

Syntax

bool stopResource ( resource theResource )

Required Arguments

  • theResource: the resource that should be stopped.

Returns

Returns true if the resource was stopped, false if the stopping failed, or an invalid resource was passed.

Example

This function stops all running resources except the current one.

function stopAllResources()
    -- we store a table of resources
    local allResources = getResources()
    -- for each one of them,
    for i, resource in ipairs(allResources) do
        -- if it's running, and it is not the current resource
        if ( getResourceState(resource) == "running" ) and ( resource ~= getThisResource() ) then
            -- then stop it
            stopResource(resource)
        end
    end
end

See Also