GetPlayerPing

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

Description

This function returns the ping (communication time between the client and server) of a specified player.

Syntax

int getPlayerPing ( player player )

Required Arguments

  • player: The player whose ping you want to determine.

Example

intPing = getPlayerPing ( findPlayer ( "Someguy" ) )
serverChat ( "Someguy's ping is ", intPing, "." )