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