Variables & types
Variables are used to store data that can have different types, they can be numbers, text or arrays.
How do they work
local neurox = {}
neurox.system_variables = {}
return neuroxDEFINE NEUROX
SET a = 0neurox.system_variables = {
["a"] = {
["varData"] = 0,
["varType"] = "int"
}
}Usage & examples
Forbidden variables names
Last updated