OnPlayerResourceStart

From Multi Theft Auto: Wiki
Revision as of 15:23, 20 September 2021 by LopSided (talk | contribs) (Initial page creation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

20809

Parameters

resource loadedResource
  • loadedResource: The resource that was loaded on the client

Source

The source of this event is the player who loaded the resource.

Example

This example shows how you can trigger a custom event clientside defined in the same resource as soon as the player is ready (resource loaded on client).

addEventHandler("onPlayerResourceStart", root, function(loadedResource)
	outputChatBox(getResourceName(loadedResource) .. " started for " .. getPlayerName(source))

	-- Trigger a custom clientside event defined in this resource
	if (getResourceRootElement(loadedResource) == resourceRoot) then
		triggerClientEvent(source, "onClientCustomEvent", source) 
	end
end)

Requirements

This template will be deleted.

See Also

Resource events


Event functions