Player::ip: Difference between revisions

From RAGE Multiplayer Wiki
(category)
m (category)
Line 17: Line 17:
{{Player_block}}
{{Player_block}}


[[Category:Player]]
[[Category:Player API]]
[[Category:Server-side Property]]
[[Category:Server-side Property]]

Revision as of 16:58, 17 May 2019

This property returns players ip adress.

Note: this property is read-only.

Getter

  • string Player's connection IP Address

Example

Server-Side
let playerIP = player.ip;
player.outputChatBox("Your IP is: " + playerIP);

See Also