yes you are right thank you.Quote:
Is not so easy dude!
You need to know how to use multi level pointers on C/C++
You cannot change a value directly of a virtual address. :)
Well, actually you can, but is not a good way.
I know to manipulate all lvl pointers in c/c++ its not that hard I just need to know if its a lvl 1 or 2 or 3 etc
@genisisVI
take this example it will help you in multi lvl pointers
PHP Code:
#define ADDR_BASE 0x0B8BBF0
#define OFFSET_BAR_COMBO 0x73a1
#define OFFSET_VALUE_COMBO 0x7384
if (GetKeyState(VK_F9) < 0)
{
int i = 0;
while(i == 0){
DWORD BAR_COMBO = *(DWORD*)ADDR_BASE;
*(DWORD*)(BAR_COMBO+OFFSET_BAR_COMBO) = 0;
DWORD VALUE_COMBO = *(DWORD*)ADDR_BASE;
*(DWORD*)(VALUE_COMBO+OFFSET_VALUE_COMBO) = 0;
if (GetKeyState(VK_F10) < 0)
i = 1;
Sleep(1);
}
}