OnDoorStreamIn: Difference between revisions

From Onset Developer Wiki
(Create OnDoorStreamIn)
 
mNo edit summary
 
Line 14: Line 14:
end)
end)
</syntaxhighlight>
</syntaxhighlight>
{{RelatedFunctions}}
{{DoorClientEvents}}

Latest revision as of 12:55, 2 October 2021

OnDoorStreamIn

Type: Event
Context: Client
Introduced: v1.0

Description

This event is called when a player streams in the door.

Syntax

OnDoorStreamIn(door)

Parameters

  • door
    The door identifier which streamed in.

Example

AddEvent("OnDoorStreamIn", function (door)
    AddPlayerChat("OH! You just streamed in a door "..door..".")
end)

See also