|
Hello,
I would like to use a list structure for calling Lua function. So some explanation.
I have got a function e.g.
function test({…})
do first call
do some print
do second call
do some print again
….
end
I have got also a "program counter" which is started by 1. On 1 its should run "do first call" on 2 "do some print" and so on.
I would like to use a Lua function, but I would like to run this function step-by-step. I can use a if construct to check the current
"program counter value" and run the correct command, but this is not very nice.