GetPlayerIP: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(→‎Syntax: OOP syntax added)
mNo edit summary
Line 1: Line 1:
__NOTOC__
{{Server function}}
{{Server function}}
__NOTOC__
This function returns a [[string]] containing the IP address of the [[player]].
This function returns a [[string]] containing the IP address of the [[player]].


Line 25: Line 25:
==See Also==
==See Also==
{{Player functions}}
{{Player functions}}
[[de:GetPlayerIP]]
[[de:GetPlayerIP]]
[[ru:getPlayerIP]]

Revision as of 22:11, 30 September 2014

This function returns a string containing the IP address of the player.

Syntax

string getPlayerIP ( player thePlayer )

OOP Syntax Help! I don't understand this!

Method: player:getIP(...)
Variable: .ip


Required Arguments

  • thePlayer: The player element you want to get the IP of.

Returns

Returns a string containing the requested players's IP, or false if the player passed to the function is invalid.

Example

This example prints a player's IP to the chat.

function printIp ( thePlayer )
	outputChatBox ( "IP: " .. getPlayerIP ( thePlayer ), thePlayer )
end
addCommandHandler ( "ip", printIp )

See Also