Skip to main content

NetStats_BytesSent

คำอธิบาย

Gets the amount of data (in bytes) that the server has sent to the player.

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

ส่งคืน

[edit]

ตัวอย่าง

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

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