View previous topic :: View next topic |
Author |
Message |
qqqqq2890621 How do I cheat?
Reputation: 0
Joined: 14 Jun 2010 Posts: 0
|
Posted: Tue Jun 15, 2010 5:11 am Post subject: AUTO ASSEMBLER's question |
|
|
help me IOI
After the code injected
the game was close
The reason is anything??
[ENABLE]
label(back)
00108000:
mov edx,FFFFFFFF
mov [ecx+eax+04],edx
jmp back
00551BEC:
jmp 00108000
nop
back:
[DISABLE]
00551BEC:
mov [ecx+eax+04],edx
|
|
Back to top |
|
 |
Freiza Grandmaster Cheater
Reputation: 22
Joined: 28 Jun 2010 Posts: 662
|
Posted: Sat Jul 17, 2010 3:19 pm Post subject: |
|
|
you didnot allocate the memory
use alloc(newmem,2048)
|
|
Back to top |
|
 |
XaLeX Expert Cheater
Reputation: 0
Joined: 19 Aug 2008 Posts: 226
|
Posted: Sat Jul 17, 2010 5:45 pm Post subject: |
|
|
I think he's using a codecave, that's why he hasn't allocated memory.
Anyway, it could be the 0xFFFFFFFF. if that value is a signed integer, it would be set to -1. try changing the first F to a 7 (0x7FFFFFFF).
Or, you could have done something wrong with the nop's. Could you post a snippet of the original code?
|
|
Back to top |
|
 |
Recifense I post too much
Reputation: 166
Joined: 17 Mar 2008 Posts: 3688 Location: Pernambuco - Brazil
|
Posted: Thu Jul 22, 2010 6:41 am Post subject: |
|
|
Hi,
The instruction mov [ecx+eax+04],edx is 4 bytes long. The the instructions in the hacking point take 6 bytes. Thatīs one of the reasons for crashing.
00551BEC:
jmp 00108000 // 5 bytes
nop // 1 byte
back:
Cheers!
|
|
Back to top |
|
 |
|