GetNetworkUsageData

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.

Example

This example adds command nd that 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)

See Also