I want to know search results multiple tables(in following code) concatenate into only one Table.Please help me how to write script and combine followed script. Thanks.
--Code is here
gg.setRanges(-2080896)
search = {}
v = 1
for i = 7,700,7 do
search[v] = i
v = v + 1
end
print(search[1])
res = {}
for i = 1, 100 do
gg.searchNumber(search[i], gg.TYPE_DOUBLE)
res[i] = gg.getResults(gg.getResultsCount())
gg.clearResults()
end
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Question
Yelay12
I want to know search results multiple tables(in following code) concatenate into only one Table.Please help me how to write script and combine followed script. Thanks.
--Code is here
gg.setRanges(-2080896)
search = {}
v = 1
for i = 7,700,7 do
search[v] = i
v = v + 1
end
print(search[1])
res = {}
for i = 1, 100 do
gg.searchNumber(search[i], gg.TYPE_DOUBLE)
res[i] = gg.getResults(gg.getResultsCount())
gg.clearResults()
end
6 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.