Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/17/2024 in all areas

  1. It's not a good idea to do that for many results (like 100k-200k+), since you will most likely run out of memory, but you can test how it goes in your case. Here is a function to concatenate results from table of tables with results: function concatResults(resultsList) local mergedResults = {} local index = 0 for _, results in ipairs(resultsList) do for __, result in ipairs(results) do index = index + 1 mergedResults[index] = result end end return mergedResults end And example of it's usage: local resultsList = {} for i = 7, 700, 7 do gg.clearResults() gg.searchNumber(tostring(i), gg.TYPE_DOUBLE) resultsList[#resultsList + 1] = gg.getResults(gg.getResultsCount()) end local allResults = concatResults(resultsList)
    1 point
  2. there is no GG script like il2cppdumper with GG. There is script to dump the libs individually: libil2cpp.so and metadata.dat dumping script (#rpaaz4p) When using il2cppd dumper mistakes can happen. It's not big deal. Try again. Or what you mean? Did you try doing it correctly and still got an error?
    1 point
×
×
  • 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.