Lua Events/OnPostMapLoad

From PZwiki



Event

OnPostMapLoad

Description

Triggered after a cell is loaded.

Parameters

  • IsoCell The cell which was loaded.
  • Integer The world x coordinate of the cell which was loaded.
  • Integer The world y coordinate of the cell which was loaded.

Examples

local function OnPostMapLoad(cell, worldX, worldY)
	-- Your code here
end

Events.OnPostMapLoad.Add(OnPostMapLoad)

See also