Memory Dump - AngryCarrot789/MemoryEngine360 GitHub Wiki

Accessible in File > Memory Dump.... This will read a memory region from the console and write it to a file on your computer.

The first dialog requests the Start/Length values for the memory region. The 2nd dialog asks if you want to freeze the console (to speed up the download), and the 3rd dialog asks you where to save the file containing the data.

image

Note that the xbox 360 is a big-endian system, so if you plan on processing the binary file in cheat engine and your CPU is little-endian (which it most likely is), you'll need to either scan using a big-endian data type, or figure out the little-endian equivalent which you can do in HxD by pasting the number as big-endian then switch the mode to little-endian.

For example, if you want to search for 65783 (hex 00 01 00 F7), you'll actually have to search for -150994688 (hex F7 00 01 00 or 4143972608 if scanning for an unsigned integer).