View previous topic :: View next topic |
Author |
Message |
cheongzewei Master Cheater
Reputation: 0
Joined: 20 May 2007 Posts: 463
|
Posted: Fri Apr 25, 2008 11:27 pm Post subject: Scripts? help a noob... |
|
|
Hello, i'm kinda new to scripting with a cheat engine.
let's say i have this adress 01C12BE8, normally it's value will be 0 or 1.
I want to create a script, so that when the frozen box is ticked,the value will be 10.And when disabled, it'll go back to 0/1.
So do i use nop, push eax or what? O_O kinda blur ... _________________
p3t3r96 wrote: | konnr wrote: | Good screen recorder? | paint is good |
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sat Apr 26, 2008 1:11 am Post subject: |
|
|
you want to use an auto assembler script?
Find what writes to 01C12BE8 first, and edit the instruction(s) accordingly. |
|
Back to top |
|
 |
tombana Master Cheater
Reputation: 2
Joined: 14 Jun 2007 Posts: 456 Location: The Netherlands
|
Posted: Sat Apr 26, 2008 3:39 am Post subject: |
|
|
You can use an auto assembler script like this i think:
Code: | [enable]
01C12BE8:
db 10
[disable]
01C12BE8:
db 1
|
|
|
Back to top |
|
 |
cheongzewei Master Cheater
Reputation: 0
Joined: 20 May 2007 Posts: 463
|
Posted: Sat Apr 26, 2008 10:08 am Post subject: |
|
|
tombana wrote: | You can use an auto assembler script like this i think:
Code: | [enable]
01C12BE8:
db 10
[disable]
01C12BE8:
db 1
|
|
thanks _________________
p3t3r96 wrote: | konnr wrote: | Good screen recorder? | paint is good |
|
|
Back to top |
|
 |
|