Table support

hi everyone,
I have a question for table.
for example i have a lot of table table1object, table2object, table3object …
and i give a number with for
example code
local table1object = {};
local table2object = {};

for i = 1 , 3 do
if(i ~= 1) then
table…i…object[i] = 2000;
else
table…i…object[i] = 3000;
end
end

its give me error
how can i access to table…i…object ?
thanks… [import]uid: 87094 topic_id: 17542 reply_id: 317542[/import]

… operator is for string so it is obvious that it will give you error. may be u can use nested table
:slight_smile: [import]uid: 12482 topic_id: 17542 reply_id: 66666[/import]