OnClientResourceStop: Difference between revisions
Jump to navigation
Jump to search
(Source element of onClientResourceStop is root element of the resource) |
m (→Source) |
||
Line 11: | Line 11: | ||
==Source== | ==Source== | ||
The [[event system#Event source|source]] of this event is the | The [[event system#Event source|source]] of this event is the stopped resource [[root element]]. | ||
==Example== | ==Example== |
Revision as of 04:40, 4 August 2012
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 stopped resource 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
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled