OnPickupStreamIn

From Onset Developer Wiki
Revision as of 18:44, 3 December 2019 by 28days (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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