Skip to main content

NetStats_MessagesSent

คำอธิบาย

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

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

ส่งคืน

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

ตัวอย่าง

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

ฟังก์ชั่นที่เกี่ยวข้องกัน