Lua Events/OnRefreshInventoryWindowContainers

From PZwiki



Event

OnRefreshInventoryWindowContainers

Description

Triggered during the process of refreshing inventory containers.

Parameters

  • ISInventoryPage The inventory page being refreshed.
  • String The current state of the refresh process. Possible values are `begin`, `beforeFloor`, `buttonsAdded`, or `end`.

Examples

local function OnRefreshInventoryWindowContainers(iSInventoryPage, state)
	-- Your code here
end

Events.OnRefreshInventoryWindowContainers.Add(OnRefreshInventoryWindowContainers)

See also