Multi Offset

05/06/2014 19:35 reload!#1
Hello guys :D I have a problem with offset in C++, there are a two offset and for search pointer i must sum offset with Address, but when i sum offset to address, it's wrong
Code :
PHP Code:
DWORD Baddress ReadProcessMemory(0,(LPVOID)0x1A,0,0,0); //Example
DWORD offset1 0x1// Example
DWORD offset2 0x2// Example
DWORD pointer Baddress offset1 offset2//Example 
Sorry for my bad english. Thanks :)
05/06/2014 21:07 Rorc#2
Thread.Move(Section("C/C++"));
05/06/2014 22:05 ​Tension#3
[Only registered and activated users can see links. Click Here To Register...] This is a quite nice tutorial.
05/08/2014 04:55 _Entropia_#4
try this code ;D
PHP Code:
int lal;
readProcessMemory(Open,(LPVOID)BaseAddress,&lal,sizeof(int),NULL);
lal += 0x48;
ReadProcessMemory(Open,(LPVOID)lal,&lal,sizeof(int),NULL);
lal += 0x50
..

PHP Code:
WriteProcessMemory(Open,(LPVOID)lal,... 
05/08/2014 15:01 reload!#5
Thanks ! Work :)