This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEBUG_MODE = true | |
DEBUG_PIPE = print | |
SHOW_ADDRESS = true | |
MTA_COMPATIBLE = false | |
local function getVariableValue(level, variable) | |
local index, name, value, skip = 1 | |
-- Check if variable name contains a dot (table access) | |
if variable:find("%.") ~= nil then |
NewerOlder