i've tried but is not giving me any result
i just need to retrive the value of the new address and use it to search again
gg.searchNumber("19811;1065353216;10616;10606;10611::", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 5)
r = gg.getResults(gg.getResultsCount())
t = {}
t[1] = {}
t[1].address = r[1].address - 0x8
t[1].flags = gg.TYPE_DWORD
t = gg.getValues(t)
AccID = t[1].value
gg.searchNumber("AccID;40;6;1065353216::", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 5)
r = gg.getResults(gg.getResultsCount())
for some reason using AccID = r[1].value is working but i need the new address value that is t[1].address = r[1].address - 0x8 and is giving nil result using t[1].value