| View previous topic :: View next topic |
| Author |
Message |
Invader Advanced Cheater
Reputation: 0
Joined: 19 Mar 2012 Posts: 78
|
Posted: Sat Aug 25, 2012 5:13 am Post subject: How To Change Asm To Tmk |
|
|
I Mean That IF my code was like that
mov eax,1 How To Change It To Some Thing Like that
Poke 42506A 894304
this not mean that Poke 42506A 894304 mean mov eax+1 i just use it as example.
thanks advanced
|
|
| Back to top |
|
 |
n0 m3rcY Cheater
Reputation: 0
Joined: 18 Jun 2012 Posts: 42
|
Posted: Mon Aug 27, 2012 3:35 pm Post subject: |
|
|
Do you mean you want to change the instructions in the game? You'd just write the opcodes. Look in the byte window of the dissassembler.
| Code: |
0004: b8 01: mov eax,1
|
or however it looks. You'd just write the correct bytes, ie if you wanted mov eax,2 you'd change the bytes to b8 02. So POKE 0005 02 would be your command.
|
|
| Back to top |
|
 |
Studio80 Advanced Cheater
Reputation: 2
Joined: 12 Sep 2012 Posts: 83
|
Posted: Thu Sep 13, 2012 10:42 pm Post subject: |
|
|
I think he means how people generate the "Poke Code" from ASM.
1. You need T-Search, download T-Search and open it.
2. In T-Search you see a big button with "EasyWrite" written on it. Click on it and it will open up.
3. Click the icon that shows a white page. It will open up the EASYWRITE INTERPERTER.
4. Now you need to write you code. First we need to write the adress. Lets say our code is:
| Code: | | 40404040 - MOV EAX,1 |
We need to write down the adress first in EasyWrite, and followed by the code so:
| Code: | Offset 40404040
MOV EAX,1 |
5. Now hit the CHECK button and then the TMK button. You should get this as a result:
| Code: | | Poke 404040 B8 01 00 00 00 |
Thats it, I really hope it helped you out. If it wasn't late here (6:39 in the morning and I still did not sleep) I would have made some pics etc. If you have more questions I can make a small video tutorial for you if you want.
|
|
| Back to top |
|
 |
|