I'm not sure about the script. You will have to ask the creator.
But in the case of Rxhacker you have to set the right regions. On the emulator your metadata was stored in Ca. I also assume that in region Anonymous you had no data. I had that issue to which the script did not work.
Open the script and set the region on line 578 to gg.REGION_C_ALLOC
function A_base_value()
gg.setRanges(gg.REGION_C_ALLOC) -- set C_ALLOC
gg.loadResults(gg.getListItems())
gg.clearList()
gg.searchPointer(offst)
count = gg.getResultsCount()
if count == 0 then
found_("A_base_value")
return 0
end
tel = gg.getResults(count)
gg.addListItems(tel)
end
Should fix the issue.
In my case i had to change every gg.REGION_C_ALLOC to gg.REGION_ANONYMOUS because Ca was 0MB for me. And all relevant data was in Anonymous as you can see in screenshot.
script works fine after: