GetStreamedPlayersForPlayer: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetStreamedPlayersForPlayer(player)}} {{FuncParameters}} {{FuncParam|player|__EDIT_ME__}} {{FuncR...")
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Returns the list of players streamed to the specified player.}}


{{FuncSyntax|GetStreamedPlayersForPlayer(player)}}
{{FuncSyntax|GetStreamedPlayersForPlayer(player)}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|player|__EDIT_ME__}}
{{FuncParam|player|The player identifier.}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|The array of players streamed to the client.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
local streamedPlayers = GetStreamedPlayersForPlayer(playerid)
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
{{ServerPlayerFunctions}}

Latest revision as of 14:45, 26 June 2021

GetStreamedPlayersForPlayer

Type: Function
Context: Server
Introduced: v1.0

Description

Returns the list of players streamed to the specified player.

Syntax

GetStreamedPlayersForPlayer(player)

Parameters

  • player
    The player identifier.

Return Value

  • The array of players streamed to the client.

Example

local streamedPlayers = GetStreamedPlayersForPlayer(playerid)

See also