so. as i cant find any tutorials about xlua mmfi ill just ask here,
i keep getting error "attempt to index field 'values' (a nil value)" with xlua+mmfi
(in editor, there is object called testobj WITH value called xadd)
package.cpath = "./?.dll"
require "mmfi"
-- object setup --
local testObject = mmf.newObjectClass("testobj")
assert(testObject ~= nil)
assert(testObject.className == "testobj")
print(testObject.objectCount)
-- functions --
function test()
testObject.common.values['xadd'] = 1
end