Jump to content

notzagred

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by notzagred

  1. please help me to get value in filter script this my code gg.setRanges(gg.REGION_ANONYMOUS) -- Set memory range to anonymous gg.clearResults() -- Clear previous results gg.searchNumber("2096;10::5", gg.TYPE_DWORD) -- Search for 2096 and 10 with distance 5 gg.refineNumber("2096", gg.TYPE_DWORD, false, gg.SIGN_NOT_EQUAL) -- Exclude 2096 local res1 = gg.getResults(gg.getResultsCount()) for i, v in ipairs(res1) do res1[i].address = res1[i].address + 8 res1[i].flags = gg.TYPE_DWORD end gg.loadResults(res1) gg.searchNumber("12~199", gg.TYPE_DWORD, true, gg.SIGN_EQUAL) -- Search for 12 to 199 local number = gg.getResults(1) local res2 = gg.getResults(26) for i, v in ipairs(res2) do res2[i].address = res2[i].address + 8 res2[i].flags = gg.TYPE_DWORD end gg.loadResults(res2) -- Load modified results gg.searchNumber(dword value from filter 670, gg.TYPE_DWORD, false, gg.SIGN_EQUAL) I want to get value from result 26 above and filter it with '670$' and copy dword this hex 3E9EC670 and search dword value from 3E9EC670 Record_2024-07-19-11-58-22_9e8df3d0c7c1f50248b6ee043a653d26.mp4
×
×
  • 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.