GetPlayerIP: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 22: Line 22:


{{RelatedFunctions}}
{{RelatedFunctions}}
{{Template:PlayerFunctions}}
{{ServerPlayerFunctions}}

Latest revision as of 20:42, 27 May 2021

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