Skip to content

ConfigTable()

The ConfigTable Lua function returns a table with some configuration information. This is information only. The function does not have any actual functions. The table is not sorted.

This function does not accept any arguments.

  • Table:
    The returned table contains key value pairs with configuration information. See the example below.

This example prints the content of the returned table.

Copy CodeLua
```
return function ()
-- Prints the content of the ConfigTable
for key,value in pairs(ConfigTable()) do
Printf(key .. " : " .. value)
end

end