dxGetStatus | Multi Theft Auto: Wiki Skip to content

dxGetStatus

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 gets information about various internal datum.

Syntax

table dxGetStatus ( )

Returns

  • table: value

Returns a table with the following entries:

Code Examples

shared
addCommandHandler("getinfo",
function ()
local info = dxGetStatus ()
for k, v in pairs (info) do
outputChatBox (k .. " : " .. tostring (v))
end
end
)