GetPlayerIP

From Onset Developer Wiki
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