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 = {}
Edited by Yelay12v = 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
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now