GetPlayerIP: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetPlayerIP(player)}} {{FuncParameters}} {{FuncParam|player|__EDIT_ME__}} {{FuncReturnValue|__EDI..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Server|1.0}} | {{Info|Function|Server|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Returns players IP address}} | ||
{{FuncSyntax|GetPlayerIP(player)}} | {{FuncSyntax|GetPlayerIP(player)}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|player| | {{FuncParam|player|Player whos IP address you want to get}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Players IP Address}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
--Do not use this without verifying if user using this command is an admin!! | |||
function getIP(player, otherplayer) | |||
local otherplayer = tonumber(otherplayer) | |||
AddPlayerChat(player, GetPlayerName(otherplayer) .. "'s IP address is: " .. GetPlayerIP(otherplayer)) | |||
end | |||
AddCommand('getip', getIP) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
__EDIT_ME__ | __EDIT_ME__ |
Revision as of 20:27, 13 November 2019
Description
Returns players IP address
Syntax
GetPlayerIP(player)
Parameters
- player
Player whos IP address you want to get
Return Value
- Players IP Address
Example
--Do not use this without verifying if user using this command is an admin!!
function getIP(player, otherplayer)
local otherplayer = tonumber(otherplayer)
AddPlayerChat(player, GetPlayerName(otherplayer) .. "'s IP address is: " .. GetPlayerIP(otherplayer))
end
AddCommand('getip', getIP)
See also
__EDIT_ME__