OnPickupStreamOut: Difference between revisions

From Onset Developer Wiki
(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...")
 
(No difference)

Latest revision as of 05:29, 4 December 2019

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