Issue I444.2 [80,exhancement,api,resolved] simion.import() now accepts parameters to forward to loaded function. As of 8.0.5-TEST13, simion.import() can accept additional parameters that will get passed to the function loaded. -- file: hello.lua local a,b,c = ... print(a,b,c) -- file: main.lua simion.import('hello.lua', 5,6,7) Implemented in 8.0-5-TEST13.