OnPickupStreamOut

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.
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