GetPlayerPing

From Onset Developer Wiki
Revision as of 13:47, 19 November 2019 by X7airworker (talk | contribs) (→‎Example)
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 = ServerData["max_ping"]
	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

Template:PlayerFunctions