| View previous topic :: View next topic |
| Author |
Message |
Thunderstruck Newbie cheater
Reputation: 0
Joined: 29 Apr 2007 Posts: 16 Location: 39.531, -76.438
|
Posted: Fri Oct 15, 2010 7:39 pm Post subject: Auto Assembler Script with Pointer Offsets |
|
|
Currently, I'm working on a script for but I'm not really sure how to go about this. I'm trying to make an auto assembler script using pointers that have two offsets.
I noticed in another thread (/viewtopic.php?t=4868) that this can be done for a pointer but I'm not really sure about entering the offsets.
| Code: | | Arcania.exe+008A9314: |
In this case, the offsets are 11 and 75C.
So in summary my question is, how would I enter that into a auto assembler script?
| Description: |
|
| Filesize: |
34.72 KB |
| Viewed: |
8540 Time(s) |

|
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25820 Location: The netherlands
|
Posted: Fri Oct 15, 2010 9:01 pm Post subject: |
|
|
try:
| Code: |
[[Arcania.exe+008A9314]+75c]+11:
|
alternatively inside a code cave:
| Code: |
mov eax,[Arcania.exe+008A9314]
mov eax,[eax+75c]
lea eax,[eax+11]
//eax now contains the address
|
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
Thunderstruck Newbie cheater
Reputation: 0
Joined: 29 Apr 2007 Posts: 16 Location: 39.531, -76.438
|
Posted: Sun Oct 17, 2010 12:33 am Post subject: |
|
|
| Thanks, I'll give it a shot.
|
|
| Back to top |
|
 |
|