View previous topic :: View next topic |
Author |
Message |
Dr.Disrespect Grandmaster Cheater
Reputation: 3
Joined: 17 Feb 2016 Posts: 526
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Nov 16, 2016 12:52 pm Post subject: |
|
|
Are you sure that this approach is necessary?
|
|
Back to top |
|
 |
Dr.Disrespect Grandmaster Cheater
Reputation: 3
Joined: 17 Feb 2016 Posts: 526
|
Posted: Wed Nov 16, 2016 12:56 pm Post subject: |
|
|
++METHOS wrote: | Are you sure that this approach is necessary? |
I think it's 90% necessary, I am not 100% sure though.
I just want to know, is this possible?
Edit:
The game that I am trying to hack is football manager, and I am dealing with the array that stores the data of each team. I want the user to specify which team's data to be pulled out from the array. And that's why I want to aobscan this way.
_________________
**************
A simple example is better then ten links. 
Last edited by Dr.Disrespect on Wed Nov 16, 2016 1:01 pm; edited 1 time in total |
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Nov 16, 2016 1:00 pm Post subject: |
|
|
With LUA, I think it should be possible. But, I would be curious to know why you think that it is necessary.
EDIT:
I just saw your edit. If that is the case, why not just provide them all?
|
|
Back to top |
|
 |
Dr.Disrespect Grandmaster Cheater
Reputation: 3
Joined: 17 Feb 2016 Posts: 526
|
Posted: Wed Nov 16, 2016 1:02 pm Post subject: |
|
|
++METHOS wrote: | With LUA, I think it should be possible. But, I would be curious to know why you think that it is necessary. |
I just updated my post above with more information.
_________________
**************
A simple example is better then ten links.  |
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Nov 16, 2016 1:05 pm Post subject: |
|
|
Yes, but I still do not understand. Is there s separate array for each team? If so, having all of the data available to the user would be best, so that no input is required on their part. Not only that, but unless you convert the data, you will need to explain to the user which hex values to use for each team and so forth - assuming that I am understanding you even a little.
|
|
Back to top |
|
 |
Dr.Disrespect Grandmaster Cheater
Reputation: 3
Joined: 17 Feb 2016 Posts: 526
|
Posted: Wed Nov 16, 2016 1:18 pm Post subject: |
|
|
++METHOS wrote: | Yes, but I still do not understand. Is there s separate array for each team? If so, having all of the data available to the user would be best, so that no input is required on their part. Not only that, but unless you convert the data, you will need to explain to the user which hex values to use for each team and so forth - assuming that I am understanding you even a little. |
I think you understand me correctly. I have not found the first team (index) in that array (just one array), but I think your suggestion is good, which is having all of the data available to the user.
Anyway, I will try to figure it out. Thanks, ++METHOS.
BTW, is the person in your avatar Messi, from Barcelona? I wanted to ask you a long time ago, LOL.
_________________
**************
A simple example is better then ten links.  |
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Nov 16, 2016 1:24 pm Post subject: |
|
|
No.
|
|
Back to top |
|
 |
Dr.Disrespect Grandmaster Cheater
Reputation: 3
Joined: 17 Feb 2016 Posts: 526
|
Posted: Wed Nov 16, 2016 1:32 pm Post subject: |
|
|
Thanks.
_________________
**************
A simple example is better then ten links.  |
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Nov 16, 2016 1:38 pm Post subject: |
|
|
lol
It's Methos from Highlander.
|
|
Back to top |
|
 |
ParkourPenguin I post too much
Reputation: 152
Joined: 06 Jul 2014 Posts: 4702
|
Posted: Wed Nov 16, 2016 2:52 pm Post subject: |
|
|
I dunno if you could do that with pure AA, but here's a Lua solution.
Code: | [ENABLE]
{$lua}
local number = 1000 -- don't know how you want the user to input the value
return string.format('aobscanmodule(INJECT,game.exe,8D 52 02 88 01 8D 49 01 %02X %02X)', number & 0xff, number >> 8 & 0xff)
{$asm}
alloc(newmem,$1000)
... |
(The 2 wildcards at the end of the signature were removed because they're pointless)
_________________
I don't know where I'm going, but I'll figure it out when I get there. |
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Wed Nov 16, 2016 5:47 pm Post subject: |
|
|
Code: | local number = inputQuery("Team Number", "Enter your team number:", 1000) |
|
|
Back to top |
|
 |
|