getNetworkUsageData | Multi Theft Auto: Wiki Skip to content

getNetworkUsageData

Client-side
Server-side
Shared

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function returns a table containing network usage information about inbound and outbound packets.

Syntax

table getNetworkUsageData ( )

Returns

Returns a table with two fields: "in" and "out". Each of these contain a table with two fields: "bits" and "count". Each of these contain a table with 256 numeric fields ranging from 0 to 255, containing the appropriate network usage data for such packet id.

  • table: value

Code Examples

shared

This example adds commandndthat shows info about all inbound packets with bits bigger than zero.

addCommandHandler("nd",
function ()
local networkData = getNetworkUsageData()["in"]
for i, val in pairs(networkData["count"]) do
if networkData["bits"][i] > 0 then
outputChatBox("ID: " .. i .. ": " .. val .. " - " .. networkData["bits"][i] .. "b")
end
end
end)