Lua actions are identified using an action type of Lua and setting the specific Lua function and extra parameters (if required) in the action arguments. Any extra parameters will be transferred directly to the Lua function through first argument (a Lua table) and the data can be accessed by using the parameter’s name as the table’s index.
function my_lua_func (mapargs , allargs ) local p = mapargs.paramter1 print("my_lua_func was passed : ".. tostring(p)) end