How can i load the addresses from new allocated memory pages. When i use gg.loadResults it only loads the addresses from the already existing memory pages. The script is supposed to load the table 'q'. Which are addresses from new allocated memory pages.
I want to edit all the bytes to some UTF16 characters using gg.editAll. But do let me know if there is other way.
menu ={}
menu[1]={address = gg.allocatePage(gg.PROT_WRITE)+0x10, flags = gg.TYPE_QWORD}
strings ={}
loop =0for i, v in ipairs(menu)dofor i=1,118do
strings[#strings +1]={address = menu[1].address + loop, flags = gg.TYPE_BYTE}
loop = loop +1endend
q = gg.getValues(strings)
gg.loadResults(q)
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.
Question
Platonic
How can i load the addresses from new allocated memory pages. When i use gg.loadResults it only loads the addresses from the already existing memory pages. The script is supposed to load the table 'q'. Which are addresses from new allocated memory pages.
I want to edit all the bytes to some UTF16 characters using gg.editAll. But do let me know if there is other way.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.