GetNetworkStats
From Onset Developer Wiki
Description
Gets the clients' NetworkStats
Syntax
GetNetworkStats()
Parameters
- This function has no parameters.
Return Value
- packetlossTotal, packetlossLastSecond, messagesInResendBuffer, bytesInResendBuffer, bytesSend, bytesReceived, bytesResent, bytesSendTotal, bytesReceivedTotal, bytesResentTotal, isLimitedByCongestionControl, isLimitedByOutgoingBandwidthLimit
Example
for name, value in pairs(GetNetworkStats())
print(name .. " -> " .. value)
do