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|__EDIT_ME__}}
{{FuncDescription|Returns players IP address}}


{{FuncSyntax|GetPlayerIP(player)}}
{{FuncSyntax|GetPlayerIP(player)}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|player|__EDIT_ME__}}
{{FuncParam|player|Player whos IP address you want to get}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Players IP Address}}


== Example ==
== Example ==
__EDIT_ME__
<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

GetPlayerIP

Type: Function
Context: Server
Introduced: v1.0

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__