View previous topic :: View next topic |
Author |
Message |
Armed10 Expert Cheater
Reputation: 0
Joined: 05 Nov 2006 Posts: 147 Location: With you.
|
Posted: Sat Nov 17, 2007 12:11 pm Post subject: Example help (i've read the tuts but i cant find this |
|
|
in need for speed most wanted i wanted to put a code in an Auto assemble script for a trainer but i phailed =s
this is the original code:
00692A96 fld [esi+000000f8]
it is replaced by this code
00692A96 fld [esi+000000f9]
can anyone help me out or give me a hint??
thx in advance
_________________
|
|
Back to top |
|
 |
mapleh4ckz Master Cheater
Reputation: 0
Joined: 20 Sep 2006 Posts: 386 Location: Maplestory
|
Posted: Sat Nov 17, 2007 2:13 pm Post subject: |
|
|
Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
00692A96:
fld [esi+000000f9]
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
00692A96:
fld [esi+000000f8]
|
Now, there may be some Nops to add
go to 00692a96 in memory view and change f8 to f9 and a box will pop up that says something like " The generated code is 1 byte(s) long, but the selected opcode is 2 bytes etc... do you want to replace the rest with nop and you press yes...
So add accordingly the number of nops that you need to to the enable section after fld [esi+000000f9]
_________________
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25805 Location: The netherlands
|
Posted: Sat Nov 17, 2007 5:19 pm Post subject: |
|
|
00692A96 fld [esi+000000f9]
let me guess, random crashes, or instant crash. Or just complete random results?
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
Armed10 Expert Cheater
Reputation: 0
Joined: 05 Nov 2006 Posts: 147 Location: With you.
|
Posted: Wed Nov 21, 2007 8:19 am Post subject: |
|
|
Dark Byte wrote: | 00692A96 fld [esi+000000f9]
let me guess, random crashes, or instant crash. Or just complete random results? |
random.. how did u know?? i found a better code now that doesn't create glitches or crashes
_________________
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25805 Location: The netherlands
|
Posted: Wed Nov 21, 2007 8:32 am Post subject: |
|
|
the original code was
fld [esi+000000f8]
indicating that at esi+f8 is a floating point value
the changed code is:
fld [esi+000000f9]
which means you are writing 1 byte after the start of a 4/8 byte floating point value. So the normal reads would read the value at f8, and getting a unpredicted result after the first byte
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
|