Skip to main content

NetStats_MessagesSent

Description​

Gets the number of messages the server has sent to the player.

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

Returns​

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