NetStats BytesSent

NetStats_BytesSent

Description:
Function NetStats_BytesSent gets the amount of data (in bytes) that the server has sent to the player.
Function NetStats_BytesSent was added in 0.3z and will not work in earlier versions!


Parameters:
(playerid)
int playerid The ID of the player to get the data from.


Return Values:
-


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;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.