onResourceStart

Revision as of 20:25, 12 May 2020 by PerikiyoXD (talk | contribs) (Typo: resouce -> resource)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

function(Event event, Resource resource)

The onResourceStart event is invoked when a resource starts.

Parameters

1) Event event The event object for this event.
2) Resource resource The resource which has started.

Attributes

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

Notes

Examples

Example 1 - Lua:

addEventHandler("OnResourceStart", function(event,resource) outputChatBox("Resource ".. resource.name .." has started.", COLOUR_RED) end)

Compatibility

There isn't any compatibility information for this event.

Related

Server Related

        OnResourceStart
        OnResourceStop


Client Related

        OnResourceReady
        OnResourceStart
        OnResourceStop