GetStreamedPickups

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
GetStreamedPickups

Type: Function
Context: Client
Introduced: v1.0

Description

Get all the streamed pickups for the client.

Syntax

GetStreamedPickups()

Parameters

  • This function has no parameters.

Return Value

  • Returns a table with all the pickups streamed to the client.

Example

local pickups = GetStreamedPickups()
if #pickups == 0 then
    print("No pickups are streamed.")
end

See also

__EDIT_ME__