Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/12/2023 in all areas

  1. maybe different offset bcz different country, but you can try on apkpure, it should working
    1 point
  2. I have another question for example if I'm using this code: if menu== 1 then gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('195;0;2;0;0::100',gg.TYPE_DOUBLE) your_values= gg.getResults(100) your_values[1].value = 5000 your_values[9].value = 5000 your_values[12].value = 5000 gg.setValues(your_values) gg.clearResults() gg.toast("done") end if menu== 2 then gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('184;10;2,9;0;0::100',gg.TYPE_DOUBLE) your_values2= gg.getResults(100) your_values2[1].value1 = 5000 your_values2[6].value1 = 5000 your_values2[9].value1 = 5000 gg.setValues(your_values2) gg.clearResults() gg.toast("done") end i cant use it twice so i mean the first function is working (menu == 1 but the secount one gives me every time a error but if I'm changing the search number to the same like in menu 1 its working but thats not help me
    1 point
  3. Yeah, and make sure that the index don't change when you restart the game, otherwise this form will not be useful. function your_function() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10~999", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) your_values = gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) your_values[3].value = 323 -- [3] It's the index of your value. your_values[7].value = 9 your_values[9].value = 3 gg.setValues(your_values) gg.clearResults() end
    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.