OnPickupStreamOut

From Onset Developer Wiki
Revision as of 05:29, 4 December 2019 by 28days (talk | contribs) (Created page with "{{Info|Event|Client|1.0}} {{FuncDescription|This function is called when a player streams out the pickup.}} {{FuncSyntax|OnPickupStreamOut(pickup)}} {{FuncParameters}} {{Fu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
OnPickupStreamOut

Type: Event
Context: Client
Introduced: v1.0

Description

This function is called when a player streams out the pickup.

Syntax

OnPickupStreamOut(pickup)

Parameters

  • pickup
    The pickup identifier which streamed in.

Example

AddEvent("OnPickupStreamOut", function(pickupId)
    print("Player streamed out pickup "..pickupId..".")
end)

See also