Lua Events/OnFillContainer

From PZwiki



Event

OnFillContainer

Description

Triggered after a container has been filled.

Parameters

  • String The room name in which the container is installed.
  • String The type of the container that is being filled.
  • ItemContainer The container that is being filled.

Examples

local function OnFillContainer(roomName, containerType, itemContainer)
	-- Your code here
end

Events.OnFillContainer.Add(OnFillContainer)

See also