| View previous topic :: View next topic |
| Author |
Message |
A-VORONKIN How do I cheat?
Reputation: 0
Joined: 07 Oct 2014 Posts: 2
|
Posted: Thu Oct 29, 2015 2:42 pm Post subject: Conver Cheat Engine AssemblerScript to FASM |
|
|
Hello, I have this AssemblerScript:
| Code: | [ENABLE]
alloc(newmem,2048,"game.exe"+4B90646)
label(returnhere)
label(originalcode)
label(exit)
newmem:
mov [rax+08],0100100
originalcode:
mov eax,[rax+08]
sub eax,[rbx+000000A4]
exit:
jmp returnhere
"game.exe"+4B90646:
jmp newmem
nop
nop
nop
nop
returnhere:
[DISABLE]
dealloc(newmem)
"game.exe"+4B90646:
mov eax,[rax+08]
sub eax,[rbx+000000A4] |
I want to use it in MemorySharp libery. It supports using FASM. So how to conver this AssemblerScript to FASM?
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Thu Oct 29, 2015 11:25 pm Post subject: |
|
|
You need to learn how to use the library at hand, in this case MemorySharp, in order to do what you are looking to do. There is not much, if any, change needed to make this work in FASM in general, outside of the custom Cheat Engine specific things. (Which you will have to change regardless to work with MemorySharp.)
_________________
- Retired. |
|
| Back to top |
|
 |
panraven Grandmaster Cheater
Reputation: 62
Joined: 01 Oct 2008 Posts: 958
|
Posted: Fri Oct 30, 2015 12:24 am Post subject: Re: Conver Cheat Engine AssemblerScript to FASM |
|
|
Doesn't MemorySharp only support 32-bit atm?
_________________
- Retarded. |
|
| Back to top |
|
 |
A-VORONKIN How do I cheat?
Reputation: 0
Joined: 07 Oct 2014 Posts: 2
|
Posted: Fri Oct 30, 2015 7:48 am Post subject: Re: Conver Cheat Engine AssemblerScript to FASM |
|
|
| panraven wrote: | | Doesn't MemorySharp only support 32-bit atm? |
Yes, only 32-bit. Do you know good memory library that supports x64?
|
|
| Back to top |
|
 |
|