Ana içeriğe geç

NetStats_BytesSent

Description​

Gets the amount of data (in bytes) that the server has sent to the player.

NameDescription
playeridThe ID of the player to get the data from.

Returns​

This function returns the number of bytes the server has sent to the player.

0 is returned if the player is not connected.

Examples​

public OnPlayerCommandText(playerid,cmdtext[])
{
if (!strcmp(cmdtext, "/bytes_sent"))
{
new szString[144];
format(szString, sizeof(szString), "You have sent %i bytes of information to the server.", NetStats_BytesSent(playerid));
SendClientMessage(playerid, -1, szString);
}
return 1;
}