OnResourceStop: Difference between revisions

From GTA Connected
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 6: Line 6:
|desc = a resource stops
|desc = a resource stops
|arg1 = Resource resource The resource which has stopped.
|arg1 = Resource resource The resource which has stopped.
|arg2 = bool stoppingForRestart The status of whether the resource is restarting.
|arg2 = bool stoppingForRestart The status of whether the resource is restarting. (Where restarting is achieved via [[resource.restart|resource.restart]] or the restart command)
|cancel = true
|cancel = true
|exampleLua = addEventHandler("OnResourceStop", function(event,resource,stoppingForRestart)
|exampleLua = addEventHandler("OnResourceStop", function(event,resource,stoppingForRestart)

Latest revision as of 03:10, 26 February 2024

Event Server and Client icon-iii.png icon-vc.png icon-sa.png icon-iv.png Online and Offline Cancellable

Available since Server 1.0.0, Client 1.0.0

onResourceStop(Event event, Resource resource, bool stoppingForRestart)

The onResourceStop event is invoked when a resource stops.

Parameters

1) Event event The event object for this event.
2) Resource resource The resource which has stopped.
3) bool stoppingForRestart The status of whether the resource is restarting. (Where restarting is achieved via resource.restart or the restart command).

Attributes

cancellable This event can be cancelled, by using event.preventDefault.

Notes

There aren't any notes for this event.

Examples

Example 1 - Lua:

addEventHandler("OnResourceStop", function(event,resource,stoppingForRestart)
    outputChatBox("Resource ".. resouce.name .." has stopped."..(stoppingForRestart and " (restarting)" or ""), COLOUR_RED)
end)

Compatibility

There isn't any compatibility information for this event.

Related

Server Related

icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnResourceStart
icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnResourceStop


Client Related

icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnResourceReady
icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnResourceStart
icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnResourceStop