GetPlayerPing: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetPlayerPing(player)}} {{FuncParameters}} {{FuncParam|player|__EDIT_ME__}} {{FuncReturnValue|__E..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Server|1.0}} | {{Info|Function|Server|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Get the ping of the specified player.}} | ||
{{FuncSyntax|GetPlayerPing( | {{FuncSyntax|GetPlayerPing(playerid)}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|player | {{FuncParam|playerid|The player identifier.}} | ||
{{FuncReturnValue|__EDIT_ME__}} | {{FuncReturnValue|__EDIT_ME__}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua> | |||
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) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{Template:PlayerFunctions}} |
Revision as of 13:43, 19 November 2019
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)