GetPlayerPing

From Onset Developer Wiki
Revision as of 13:43, 19 November 2019 by 28days (talk | contribs)
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

  • __EDIT_ME__

Example

CreateTimer(PingKicker, 10000, function()
	local ping = ServerData["max_ping"]
	for _, j in ipairs(GetAllPlayers()) do
		if GetPlayerPing(j) > ping then
			KickPlayer(j, "You were kicked for high ping.")
		end
	end
end)

See also

Template:PlayerFunctions