Hi, i'm building a small hack but now, i'm having some problems on calling the SendAttackPacket() function.
This is my code for now:
I know it is a mess, I will optimize it as soon as i get this to work.
This is the error that is being showed:
[Only registered and activated users can see links. Click Here To Register...]
And this is the memory region of the function:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
This is my first time coding anything in _asm, but i have been reading a lot about it.
Hope somone can help.
This is my code for now:
HTML Code:
void SendAttack(DWORD BinAddr) {
DWORD *Target = (DWORD*)(BinAddr + 0x0019EC38);
DWORD *TargetAdress = (DWORD*)(*Target + 0x73C);
printf("TargetAdress: %d\n", *TargetAdress);
DWORD FuncAddr = BinAddr + 0x1BF420;
printf("FuncAddr: %d\n", FuncAddr);
DWORD ClassPointer = BinAddr + 0x4846A4;
_asm {
MOV ECX, [ClassPointer]
PUSH [Target]
PUSH 0
CALL FuncAddr
}
}
I know it is a mess, I will optimize it as soon as i get this to work.
This is the error that is being showed:
[Only registered and activated users can see links. Click Here To Register...]
And this is the memory region of the function:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
This is my first time coding anything in _asm, but i have been reading a lot about it.
Hope somone can help.