Lua Events/OnGetTableResult

From PZwiki



Event

OnGetTableResult

Description

Triggered when the game client is receiving a table result from the server.

Parameters

  • ArrayList The row data of the table result.
  • Integer The row identifier of the table result.
  • String The name of the table result.

Examples

local function OnGetTableResult(result, rowId, tableName)
	-- Your code here
end

Events.OnGetTableResult.Add(OnGetTableResult)

See also

No related event.