I want to use a for loop to create multiple varibles (with names that are the same except for the last character) in lua
for i= 1, 10, 1 do
marker+i = "do things"
end
pretty much I what I want to get is: marker0, marker1, marker2 and so on. and I guess there is something wrong with marker+i
I get an error. Thank you.
marker={},marker[i]=....