resource:started
Shared
Fired when a resource has started successfully
Signal
"resource:started"Arguments
| Type | Name | Description |
|---|---|---|
string | name | Name of the resource that started |
On the server, starting a resource also notifies all connected clients.
- Clients will automatically receive and register the resource after this fires on the server.
Example
util.event.on("resource:started", function(name)
core.engine.print("info", "Resource started:", name)
end)