OnPickupStreamIn

From Onset Developer Wiki
OnPickupStreamIn

Type: Event
Context: Client
Introduced: v1.0

Description

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

Syntax

OnPickupStreamIn(pickup)

Parameters

  • pickup
    The pickup identifier which streamed in.

Example

AddEvent("OnPickupStreamIn", function(pickupId)
    print("Player streamed in pickup "..pickupId..".")
end)

See also