Skip to main content

NetStats_MessagesReceived

คำอธิบาย

Gets the number of messages the server has received from the player.

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

ส่งคืน

This function returns the number of messages the server has received from the player. 0 is returned if the player is not connected.

ตัวอย่าง

public OnPlayerCommandText(playerid,cmdtext[])
{
if (!strcmp(cmdtext, "/msgs"))
{
new szString[144];
format(szString, sizeof(szString), "You have sent %i network messages.", NetStats_MessagesReceived(playerid));
SendClientMessage(playerid, -1, szString);
}
return 1;
}

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