GetPlayerPing: Difference between revisions
From Onset Developer Wiki
X7airworker (talk | contribs) |
No edit summary |
||
Line 13: | Line 13: | ||
<syntaxhighlight lang="Lua> | <syntaxhighlight lang="Lua> | ||
CreateTimer(function() | CreateTimer(function() | ||
local ping = | local ping = 400 | ||
for k, v in ipairs(GetAllPlayers()) do | for k, v in ipairs(GetAllPlayers()) do | ||
if GetPlayerPing(v) > ping then | if GetPlayerPing(v) > ping then |
Revision as of 13:51, 19 November 2019
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)