NetStats MessagesSent

NetStats_MessagesSent

Description:
Function NetStats_MessagesSent gets the number of messages the server has sent to the player.
Function NetStats_MessagesSent 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:
The number of messages the server has sent to the player.


Examples:
public OnPlayerCommandText(playerid,cmdtext[])
{    
    if(!strcmp(cmdtext, "/msgsent"))
    {
        new szString[144];
        format(szString, sizeof(szString), "You have recieved %i network messages.", NetStats_MessagesSent(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.