Originally posted by Mint
Is anybody using this and could you please offer any tips on where to find stuff? I would like the game's options.
When I dump the memory within a set range, then alter a game setting and dump again, there's loads of differences between the two when comparing in a hex editor. It's impossible for me to pin down the correct area
With GT5 it was just one change, is this because it was static save file and not real time?
Working with real time is not the same as working with a save file. A save file is basically a snapshot of a bunch of the variables from a running program, saved in a particular order so they can read back. In RTE those variables are not just read back to one spot in memory; they are assigned to variables that could exist anywhere in memory.
When using CCdebugger the numbers in red are those that changed since the last refresh, I almost never use auto refresh because of this. Also as you page down the numbers in red are those that are different in that position on the screen and not necessarily changed since the last scan. Use the load refresh button to look for changes.
The game regions: The region that starts at 0x00010000 is the EBOOT.bin, all other regions are game dependent. One exception is the 0xC0000000 region. That is almost always the stack, you should not change anything in there, there is rarely anything of use in that region.
It looks like you already found something interesting. It could possibly be the X,Y,Z,H,P,B values for the camera by the look of the picture you posted.