| View previous topic :: View next topic |
| Author |
Message |
SomethingRandom How do I cheat?
Reputation: 0
Joined: 02 Aug 2012 Posts: 5
|
Posted: Thu Aug 02, 2012 6:46 pm Post subject: [Help] Dynamic memory address - Saints Row 3 SKIDROW |
|
|
Hey guys, I'm trying to get the memory offset for money in Saints Row 3. I'm fairly new to memory address hacking, but have a bit of experience in C/C++. I want to make a simple trailer to start with, but I'm having trouble finding the offset because its a dynamic address.
I know how to find the address (search for current amount of money + 00), so I did so 3 different times, and got the following:
15CDC280
15C9C280
15D4C280
The memory addresses are very similar, but there's got to be a way to get a base, and then the correct offset...
Any help would be greatly appreciated.
Thanks.
|
|
| Back to top |
|
 |
mgr.inz.Player I post too much
Reputation: 222
Joined: 07 Nov 2008 Posts: 4438 Location: W kraju nad Wisla. UTC+01:00
|
|
| Back to top |
|
 |
SomethingRandom How do I cheat?
Reputation: 0
Joined: 02 Aug 2012 Posts: 5
|
Posted: Fri Aug 03, 2012 3:28 pm Post subject: |
|
|
| Yeah, I've tried pointer scans, by the third rescan, there's no addresses left. I've also tried using the "Find out what accesses/writes this address" with no luck. When using the windows debugger and VEH debugger, the game crashes, and a BSOD when using the kernelmode debugger (using windows 7 x64). This game is being a tricky little bastard.
|
|
| Back to top |
|
 |
SomethingRandom How do I cheat?
Reputation: 0
Joined: 02 Aug 2012 Posts: 5
|
Posted: Sat Aug 04, 2012 12:22 am Post subject: |
|
|
A little update, I've made some progress.
With the help from another thread i was able to stop the game from crashing when injecting the debugger.
I was able to find an address, that is static and with using "Find out what addresses this instruction accesses", and always returns the correct dynamic address for the health.
The address: saintsrowthethird_dx11.AK::MemoryMgr::SetMonitoring+5AC816 (00BBE0E6)
Bytes: 8B 8F B01C0000
Opcode: mov ecx,[edi+00001CB0]
The problem now is I don't really know what this "Find out what addresses this instruction accesses" does, so I don't know how to re create it in c++ to make a test trainer.
|
|
| Back to top |
|
 |
|