NetStats MessagesRecvPerSecond
From SA-MP Wiki
NetStats_MessagesRecvPerSecond
Description:
Gets the number of messages the player has received in the last second.
(playerid)
playerid | The ID of the player to get the data from. |
Return Values:
the number of messages the player has received in the last second.
Example Usage:
public OnPlayerCommandText(playerid,cmdtext[]) { if(!strcmp(cmdtext, "/msgpersec")) { new szString[144]; format(szString, sizeof(szString), "You have received %i network messages in the last second.", NetStats_MessagesRecvPerSecond(playerid)); SendClientMessage(playerid, -1, szString); } return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- GetPlayerNetworkStats: Gets a player networkstats and saves it into a string.
- GetNetworkStats: Gets the servers networkstats and saves it into a string.
- NetStats_GetConnectedTime: Get the time that a player has been connected for.
- NetStats_MessagesReceived: Get the number of network messages the server has received from the player.
- NetStats_BytesReceived: Get the amount of information (in bytes) that the server has received from the player.
- NetStats_MessagesSent: Get the number of network messages the server has sent to the player.
- NetStats_BytesSent: Get the amount of information (in bytes) that the server has sent to the player.
- NetStats_PacketLossPercent: Get a player's packet loss percent.
- NetStats_ConnectionStatus: Get a player's connection status.
- NetStats_GetIpPort: Get a player's IP and port.