OnClientResourceStop

From Multi Theft Auto: Wiki

Jump to: navigation, search

This event is triggered when a resource is stopped.

Parameters

resource stoppedResource
  • stoppedResource: the resource that was stopped.

Source

The source of this event is the stoped resource's root element.

Example

This example outputs name of resource that was started.

addEventHandler( "onClientResourceStop", getRootElement( ),
    function ( stoppedRes )
        outputChatBox( "Resource stopped: " .. getResourceName( stoppedRes ) );
    end
);

See Also

Client resource events

Client event functions

FROM VERSION 1.3.1 ONWARDS