GetPlayerGameVersion: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetPlayerGameVersion(player)}} {{FuncParameters}} {{FuncParam|player|__EDIT_ME__}} {{FuncReturnVa...")
 
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Get the player's game version.}}


{{FuncSyntax|GetPlayerGameVersion(player)}}
{{FuncSyntax|GetPlayerGameVersion(player)}}


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


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Gets the version as an integer.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua">
local function OnPlayerJoin(player)
    AddPlayerChat(player, "Your game version is: "..GetPlayerGameVersion(player))
end
AddEvent("OnPlayerJoin", OnPlayerJoin)
</syntaxhighlight>


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

Latest revision as of 20:40, 27 May 2021

GetPlayerGameVersion

Type: Function
Context: Server
Introduced: v1.0

Description

Get the player's game version.

Syntax

GetPlayerGameVersion(player)

Parameters

  • player
    The player identifier.

Return Value

  • Gets the version as an integer.

Example

local function OnPlayerJoin(player)
    AddPlayerChat(player, "Your game version is: "..GetPlayerGameVersion(player))
end
AddEvent("OnPlayerJoin", OnPlayerJoin)

See also