GetPlayerPing: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
{{FuncParam|playerid|The player identifier.}} | {{FuncParam|playerid|The player identifier.}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Returns the player ping in integer.}} | ||
== Example == | == Example == | ||
Line 14: | Line 14: | ||
CreateTimer(PingKicker, 10000, function() | CreateTimer(PingKicker, 10000, function() | ||
local ping = ServerData["max_ping"] | local ping = ServerData["max_ping"] | ||
for | for k, v in ipairs(GetAllPlayers()) do | ||
if GetPlayerPing( | if GetPlayerPing(v) > ping then | ||
KickPlayer( | KickPlayer(v, "You were kicked for high ping.") | ||
end | end | ||
end | end |
Revision as of 13:44, 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(PingKicker, 10000, 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)