A
gg.getResults(15, nil, nil, nil, 2209826816, 2209826816)
Size: a a a
A
S
A
A
S
A
A
A
A
S
A
A
A
KG
S
local queue = {current = 0}
function queue:add(something)
table.insert(self, something)
end
function queue:get()
self.current = self.current + 1
if self.current > #self then
self.current = 1
end
return self[self.current]
end
KG
local queue = {current = 0}
function queue:add(something)
table.insert(self, something)
end
function queue:get()
self.current = self.current + 1
if self.current > #self then
self.current = 1
end
return self[self.current]
end
TT