OnPickupStreamOut

From Onset Developer Wiki
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