Lua Events/OnLoad

From PZwiki



Event

OnLoad

Description

Triggered when a game is loading, after Lua Events/OnGameStart.

Parameters

No parameter.

Examples

local function OnLoad()
	-- Your code here
end

Events.OnLoad.Add(OnLoad)

See also