Lua Events/OnLoad

From PZwiki
< Lua Events(Redirected from Lua Events/OnLoad)



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