IsValidPlayer: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 11: Line 11:


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
print("Valid Player: " .. IsValidPlayer(player) and "Yes" or "No")
</syntaxhighlight>


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

Latest revision as of 14:38, 26 June 2021

IsValidPlayer

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Checks whether the specified player is connected to the server or not.

Syntax

IsValidPlayer(player)

Parameters

  • player
    The player id

Return Value

  • Returns true if the player is connected, otherwise false.

Example

print("Valid Player: " .. IsValidPlayer(player) and "Yes" or "No")

See also