OnResourceStart: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 7: | Line 7: | ||
|arg1 = Resource resource The resource which has started. | |arg1 = Resource resource The resource which has started. | ||
|notes = This event can be used with [[bindEventHandler|bindEventHandler]].<br> | |notes = This event can be used with [[bindEventHandler|bindEventHandler]].<br> | ||
The [[OnResourceReady|OnResourceReady]] is also called IF the resource is ready (ready = all files downloaded). | The [[OnResourceReady|OnResourceReady]] is also called at the same as this event IF the resource is ready (ready = all files downloaded). | ||
|cancel = true | |cancel = true | ||
|exampleLua = addEventHandler("OnResourceStart", function(event,resource) | |exampleLua = addEventHandler("OnResourceStart", function(event,resource) | ||
Latest revision as of 16:43, 9 November 2025
Event Server and Client
![]()
Online and Offline Cancellable
Available since Server 1.0.0, Client 1.0.0
onResourceStart(Event event, Resource resource)
The onResourceStart event is invoked when a resource has started. The event is triggered after all script files have been ran in the resource's meta.xml file.
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
- This event can be used with bindEventHandler.
- The OnResourceReady is also called at the same as this event IF the resource is ready (ready = all files downloaded).
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