GetPlayerPing: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 23: Line 23:


{{RelatedFunctions}}
{{RelatedFunctions}}
{{Template:PlayerFunctions}}
{{ServerPlayerFunctions}}

Latest revision as of 20:42, 27 May 2021

GetPlayerPing

Type: Function
Context: Server
Introduced: v1.0

Description

Get the ping of the specified player.

Syntax

GetPlayerPing(playerid)

Parameters

  • playerid
    The player identifier.

Return Value

  • Returns the player ping in integer.

Example

CreateTimer(function()
	local ping = 400
	for k, v in ipairs(GetAllPlayers()) do
		if GetPlayerPing(v) > ping then
			KickPlayer(v, "You were kicked for high ping.")
		end
	end
end, 10000)

See also