Trainer Search

MrAntiFun

Staff member
Website Admin
Joined
Apr 20, 2014
Messages
22,224
Reaction score
34,493
You have to break it down to steps ,
  1. You need to get the module size of DarkSoulsIII.exe ,Then add the first offset to it which is 0x046c3aa8 ---- Firstoffset = Modulesize +0x046c3aa8
  2. Then read memory at first address using the function ReadProcessMemory();
  3. Then check if the address you read is valid by checking if its value is greater than 0x00010000
  4. Then add the 2nd offset to the value you read from the process , SecondOffsetAddr = ValueRead+0x40
  5. Then read memory at the second offset using ReadProcessMemory(); and use SecondOffsetAddr as a value .
  6. Repeat with rest of offset until you read last offset .
 

YAN5000

New Member
Joined
Nov 22, 2014
Messages
4
Reaction score
0
MrAntiFun hello, are you using your own trainer form? if so its c#?
if yes can you tell me if this is datagridview in your trainer (hotkeys) how to make it transparent? its custom control on winforms or its just WPF?
 
Top