GetPlayerPing: Difference between revisions
From Onset Developer Wiki
No edit summary |
X7airworker (talk | contribs) |
||
Line 12: | Line 12: | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua> | <syntaxhighlight lang="Lua> | ||
CreateTimer( | CreateTimer(function() | ||
local ping = ServerData["max_ping"] | local ping = ServerData["max_ping"] | ||
for k, v in ipairs(GetAllPlayers()) do | for k, v in ipairs(GetAllPlayers()) do | ||
Line 19: | Line 19: | ||
end | end | ||
end | end | ||
end) | end, 10000) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{Template:PlayerFunctions}} | {{Template:PlayerFunctions}} |
Revision as of 13:47, 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 = 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)