GetPlayerIP: Difference between revisions

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


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
{{Template:PlayerFunctions}}

Revision as of 17:01, 13 December 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

Template:PlayerFunctions