Hi, i want to copy the entire memory region and paste it into text
however selecting it manually is very slow
is there a way to select the entire memory region?
i want to copy the original memory region and then compare it with the changed memory region (because i dont know what address is changed).
making use of winmerge, i will be able to know which is the address being changed and what are the changes.
saving it as memory region (CEM file) does not allow me to compare
Copy entire memory region - How to do That?
Re: Copy entire memory region - How to do That?
Why not just change the start/stop addresses (under the value type) to the start/end of the memory region and do an unknown initial value scan and then a changed scan?
However you can use a little lua code to select it:
alternatively
just change the address(es)/size and run the code in the lua engine.
Note that getMemoryViewForm returns the main form that you get when clicking the "Memory view" button in CE.
However you can use a little lua code to select it:
Code: Select all
getMemoryViewForm().DisassemblerView.SelectedAddress = 0x20000
getMemoryViewForm().DisassemblerView.SelectedAddress2 = 0x21002
Code: Select all
local start = 0x20000
local size = 0x1002
getMemoryViewForm().DisassemblerView.SelectedAddress = start
getMemoryViewForm().DisassemblerView.SelectedAddress2 = start+size
Note that getMemoryViewForm returns the main form that you get when clicking the "Memory view" button in CE.
Re: Copy entire memory region - How to do That?
Hey bro,
Thank you for answer. Selecting all addressses is working but how to copy it? I try to copy all bytes that selected but I cannot paste it in notepad. Why???
Thank you for answer. Selecting all addressses is working but how to copy it? I try to copy all bytes that selected but I cannot paste it in notepad. Why???
Re: Copy entire memory region - How to do That?
A simple ctrl+c and then ctrl+v in notepad works for me... of course make sure the memory viewer is selected before copying
Re: Copy entire memory region - How to do That?
HAHAHAHAH I am so stupid.... I was trying to use CTRL+ALT+C but it wasn't working .... I don't know why I want always to choose the hard way...
I have last question - I need plugin to cheat engine 6.7 which will be showing me the changes in memory region after activating scripts. Can stealth edit plugin v2.4 can do that?
I have last question - I need plugin to cheat engine 6.7 which will be showing me the changes in memory region after activating scripts. Can stealth edit plugin v2.4 can do that?
Re: Copy entire memory region - How to do That?
I've never used stealth edit but as far as I know it doesn't, not sure of any other plugin either.
Who is online
Users browsing this forum: No registered users