ConfigTable()
Description
Section titled “Description”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.
Arguments
Section titled “Arguments”This function does not accept any arguments.
Return
Section titled “Return”- Table:
The returned table contains key value pairs with configuration information. See the example below.
Example
Section titled “Example”This example prints the content of the returned table.
| Copy CodeLua |
| ``` |
| return function () |
-- Prints the content of the ConfigTablefor key,value in pairs(ConfigTable()) do Printf(key .. " : " .. value)endend