Jump to content
  • 0

clearResults() for value in save


kotako

Question

Posted

Gg have clearResults() but its clear only value in Search, any way how to clear value in save?

3 answers to this question

Recommended Posts

Posted
local a = gg.getResults(gg.getResultsCount())
gg.clearResults()
local b = {
	1234,
	5678,
	9810
}
local c = {}
for z, x in next, b do
	c[x] = z
end
local d = {}
for z, x in next, a do
	if c[x.value] then
		d[#d + 1] = x
	end
end
gg.loadResults(d)

Many ways this is one 

Posted
1 hour ago, MonkeySAN said:

Thx

15 minutes ago, HEROGAMEOfficial said:
local a = gg.getResults(gg.getResultsCount())
gg.clearResults()
local b = {
	1234,
	5678,
	9810
}
local c = {}
for z, x in next, b do
	c[x] = z
end
local d = {}
for z, x in next, a do
	if c[x.value] then
		d[#d + 1] = x
	end
end
gg.loadResults(d)

Many ways this is one 

Thx too

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.