Lua Events/OnDoTileBuilding3

From PZwiki



Event

OnDoTileBuilding3

Description

Triggered when a building tile is being set.

Parameters

  • IsoChunk The chunk in which the tile is being set.
  • Boolean Whether the tile should be rendered or not.
  • Integer The x coordinate of the tile being set.
  • Integer The y coordinate of the tile being set.
  • Integer The z coordinate of the tile being set.

Examples

local function OnDoTileBuilding3(chunk, render, x, y, z)
	-- Your code here
end

Events.OnDoTileBuilding3.Add(OnDoTileBuilding3)

See also