| View previous topic :: View next topic |
| Author |
Message |
vk496 How do I cheat?
Reputation: 0
Joined: 07 Jul 2012 Posts: 1
|
Posted: Sat Jul 07, 2012 6:32 am Post subject: Help to create script |
|
|
Hi
1º: sorry for my bad english
I need you help for one script that i´m creating
when i turn on one hack, the adress
3ce731 (007CE731)
3ce732 (007CE732)
3ce733 (007CE733)
3ce734 (007CE734)
3ce735 (007CE735)
3ce736 (007CE736)
is 90, and when i close the hack, the adress:
3ce731 (007CE731) is 29 98 84010000 and the rest of the adresess are removed.
I tried to create a script in auto assemble:
| Code: | [enable]
007CE731:
db 90
007CE732:
db 90
007CE733:
db 90
007CE734:
db 90
007CE735:
db 90
007CE736:
db 90
[disable]
007CE731:
db 29 98 84010000
007CE732:
db 00
007CE733:
db 00
007CE734:
db 00
007CE735:
db 00
007CE736:
db 00 |
the problem is when i active it, all are OK, but when i turn off it, the game colapse
I need to know how to edit the code to delete adress in the part of [disable]
and again, sorry for my bad english  |
|
| Back to top |
|
 |
mikeb55 How do I cheat?
Reputation: 0
Joined: 07 Jul 2012 Posts: 1 Location: Europe
|
Posted: Sat Jul 07, 2012 7:33 am Post subject: try this |
|
|
Try this:
| Code: | [enable]
007CE731:
db 90 90 90 90 90 90
[disable]
007CE731:
db 29 98 84010000
|
|
|
| Back to top |
|
 |
Fresco Grandmaster Cheater
Reputation: 4
Joined: 07 Nov 2010 Posts: 600
|
Posted: Sat Jul 07, 2012 6:41 pm Post subject: |
|
|
Correct, and for a better understanding than the bytes you could try:
| Code: | [ENABLE]
007CE731:
db 90 90 90 90 90 90 / nop * 6
[DISABLE]
007CE731:
sub [eax+00000184],ebx |
_________________
... Fresco |
|
| Back to top |
|
 |
|