View previous topic :: View next topic |
Author |
Message |
vil33 Cheater
Reputation: 0
Joined: 29 Jul 2020 Posts: 34
|
Posted: Wed Jul 29, 2020 3:49 am Post subject: scan and replace aob |
|
|
hello...
i need someone to help me ,i tired about that
first i want make a cheat table
Search for aspd 1
Quote: | F0 ?? ?? ?? 00 00 80 3F |
Search for aspd 2
Quote: | F0 ?? ?? ?? 00 00 FF 3F |
i want to scan and replace aspd1 to aspd but when i active the script there some error [ not responding ] then the script do not want to active
script
Code: | [ENABLE]
Aobscan(_aob1, F0 ?? ?? ?? 00 00 80 3F)
Aobscan(_aob2, F0 ?? ?? ?? 00 00 FF 3F)
alloc(newmem,64)
createthread(newmem)
newmem:
mov esi,_aob2
mov edi,_aob1
mov ecx,#8
rep movsb
ret
[DISABLE |
help me master to solve it
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3320
|
Posted: Wed Jul 29, 2020 9:46 am Post subject: |
|
|
What are you trying to achieve?
There are far better ways to copy stuff.
Check the wiki on readmem()
|
|
Back to top |
|
 |
vil33 Cheater
Reputation: 0
Joined: 29 Jul 2020 Posts: 34
|
Posted: Wed Jul 29, 2020 8:22 pm Post subject: |
|
|
Csimbi wrote: | What are you trying to achieve?
There are far better ways to copy stuff.
Check the wiki on readmem() |
can you teach me or can you explain to me master?
this is my first time to make cheat table
|
|
Back to top |
|
 |
Betcha Expert Cheater
Reputation: 4
Joined: 13 Aug 2015 Posts: 232 Location: Somewhere In Space
|
Posted: Thu Jul 30, 2020 3:14 am Post subject: Re: scan and replace aob |
|
|
vil33 wrote: | i want to scan and replace aspd1 to aspd |
Code: | [ENABLE]
Aobscan(_aob1, F0 ?? ?? ?? 00 00 80 3F)
registersymbol(_aob1)
_aob1:
db F0 ?? ?? ?? 00 00 FF 3F
[DISABLE]
_aob1:
db F0 ?? ?? ?? 00 00 80 3F
unregistersymbol(_aob1) |
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3320
|
Posted: Thu Jul 30, 2020 4:19 am Post subject: |
|
|
Using the code in the first post:
Code: |
[ENABLE]
Aobscan(_aob1, F0 ?? ?? ?? 00 00 80 3F)
Aobscan(_aob2, F0 ?? ?? ?? 00 00 FF 3F)
_aob1:
readmem(_aob2,8)
[DISABLE]
|
This will crash in case there are instructions there that use offsets relative to the instruction itself (EIP or RIP).
I.e. jmp, call, etc.
Work around those (do not just copy).
The ones you have here seems to be okay.
Mind you, this code does not save the original code (neither did your original).
That is something you'd want to do so you can disable it correctly.
That would be another readmem from a location where you backed it up to.
|
|
Back to top |
|
 |
vil33 Cheater
Reputation: 0
Joined: 29 Jul 2020 Posts: 34
|
Posted: Mon Aug 03, 2020 12:25 am Post subject: Re: scan and replace aob |
|
|
Betcha wrote: | vil33 wrote: | i want to scan and replace aspd1 to aspd |
Code: | [ENABLE]
Aobscan(_aob1, F0 ?? ?? ?? 00 00 80 3F)
registersymbol(_aob1)
_aob1:
db F0 ?? ?? ?? 00 00 FF 3F
[DISABLE]
_aob1:
db F0 ?? ?? ?? 00 00 80 3F
unregistersymbol(_aob1) |
|
It work master, but aob was change its different address.
How do we change the address what we want [specific address]
ADDADRES.PNG
When i try fill _aob1 at "Add Address Manually"
The Adress what show is different
240 = wrong adress
128 = correct adrres
CE.PNG
F0 ?? ?? ?? 00 00 80 3F
Code: | 0F0BAA00 = F0 / 240
0F0BAA06 = 80 / 128 |
LISTADDRESS.PNG
i want change 80 to FF, help me master i tired about that
is there another way to automatically run? when i active the script automatic change the address without "add address manually"[/img]
Description: |
|
Filesize: |
15.95 KB |
Viewed: |
4399 Time(s) |

|
Description: |
|
Filesize: |
25.69 KB |
Viewed: |
4399 Time(s) |

|
Description: |
|
Filesize: |
5.01 KB |
Viewed: |
4399 Time(s) |

|
|
|
Back to top |
|
 |
Betcha Expert Cheater
Reputation: 4
Joined: 13 Aug 2015 Posts: 232 Location: Somewhere In Space
|
Posted: Wed Aug 05, 2020 1:45 am Post subject: Re: scan and replace aob |
|
|
You can drag your value inside the script and lock it whenever your script is active.
Code: | [ENABLE]
Aobscan(_aob1, F0 ?? ?? ?? 00 00 80 3F)
registersymbol(_aob1)
_aob1:
db F0 ?? ?? ?? 00 00 FF 3F
[DISABLE]
_aob1:
db F0 ?? ?? ?? 00 00 80 3F
unregistersymbol(_aob1) |
And i don't understand why don't you just make aob script for your value?
|
|
Back to top |
|
 |
vil33 Cheater
Reputation: 0
Joined: 29 Jul 2020 Posts: 34
|
Posted: Wed Aug 05, 2020 2:10 am Post subject: Re: scan and replace aob |
|
|
Betcha wrote: | You can drag your value inside the script and lock it whenever your script is active.
Code: | [ENABLE]
Aobscan(_aob1, F0 ?? ?? ?? 00 00 80 3F)
registersymbol(_aob1)
_aob1:
db F0 ?? ?? ?? 00 00 FF 3F
[DISABLE]
_aob1:
db F0 ?? ?? ?? 00 00 80 3F
unregistersymbol(_aob1) |
And i don't understand why don't you just make aob script for your value? |
it's okay master? coz the adress dynamic ,keep changing
i'm so sorry master i never know ,before you teach me
thank you so much master ,you are very helpfull
|
|
Back to top |
|
 |
Betcha Expert Cheater
Reputation: 4
Joined: 13 Aug 2015 Posts: 232 Location: Somewhere In Space
|
Posted: Wed Aug 05, 2020 3:29 am Post subject: Re: scan and replace aob |
|
|
Make AOB script so you can do whatever with your value.
|
|
Back to top |
|
 |
vil33 Cheater
Reputation: 0
Joined: 29 Jul 2020 Posts: 34
|
Posted: Wed Aug 05, 2020 8:28 pm Post subject: Re: scan and replace aob |
|
|
Betcha wrote: | Make AOB script so you can do whatever with your value. |
ok master, in case when i re login game the script no identify value, how identify the value master? or i must "add adress manually"?
|
|
Back to top |
|
 |
Betcha Expert Cheater
Reputation: 4
Joined: 13 Aug 2015 Posts: 232 Location: Somewhere In Space
|
|
Back to top |
|
 |
vil33 Cheater
Reputation: 0
Joined: 29 Jul 2020 Posts: 34
|
Posted: Thu Aug 06, 2020 6:43 am Post subject: Re: scan and replace aob |
|
|
Betcha wrote: | vil33 wrote: | when i re login game the script no identify value, how identify the value master? or i must "add adress manually"? |
It's pretty messy way to do it, but it answers your question:
Look what he does with his value in the video and repeat steps.
Cheat Engine tutorial playlists:
|
it's work for me master,my problem has solved because you
thank you for you time master ,sorry for disturbing your time
have a nice day
|
|
Back to top |
|
 |
|