resource:started

Shared

Fired when a resource has started successfully


Signal

"resource:started"

Arguments

TypeNameDescription
stringnameName 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

React to a resource starting
util.event.on("resource:started", function(name)
    core.engine.print("info", "Resource started:", name)
end)

On this page