| View previous topic :: View next topic |
| Author |
Message |
Friedeggs911 How do I cheat?
Reputation: 0
Joined: 05 Feb 2017 Posts: 2
|
Posted: Wed Feb 08, 2017 11:38 am Post subject: Can i change All AOB Results at once ? please help |
|
|
Can i change All AOB Results at once ? please help
i wanna know how to change 2 or more similar AOB results cuz seems that i can't make the AOB Code unique ... already very long
|
|
| Back to top |
|
 |
Filipe_Br Master Cheater
Reputation: 3
Joined: 07 Jan 2016 Posts: 272 Location: My house
|
Posted: Wed Feb 08, 2017 12:00 pm Post subject: Re: Can i change All AOB Results at once ? please help |
|
|
Use Lua script
| Code: | my_aob = "89 83 80 04 00 00 8D 55 D4"
result = AOBScan(my_aob, "-W*X-C")
for i=0, result.Count-1 do
writeBytes(result[i], 0x90, 0x90, 0x90, 0x90, 0x90, 0x90)
end |
_________________
... |
|
| Back to top |
|
 |
Friedeggs911 How do I cheat?
Reputation: 0
Joined: 05 Feb 2017 Posts: 2
|
Posted: Wed Feb 08, 2017 12:10 pm Post subject: Filipe_Br |
|
|
| thanks Filipe_Br but where can i put this script ... sry im new
|
|
| Back to top |
|
 |
Filipe_Br Master Cheater
Reputation: 3
Joined: 07 Jan 2016 Posts: 272 Location: My house
|
Posted: Wed Feb 08, 2017 1:24 pm Post subject: Re: Filipe_Br |
|
|
You can put it in the Lua engine script. Or if you prefer in the auto assembly. To use in auto assemble you have to make this adjustment. | Code: | [ENABLE]
{$lua}
my_aob = "89 83 80 04 00 00 8D 55 D4"
result = AOBScan(my_aob, "-W*X-C")
for i=0, result.Count-1 do
writeBytes(result[i], 0x90, 0x90, 0x90, 0x90, 0x90, 0x90)
end
{$asm}
[DISABLE] |
_________________
... |
|
| Back to top |
|
 |
Friedeggs911 How do I cheat?
Reputation: 0
Joined: 05 Feb 2017 Posts: 2
|
Posted: Thu Feb 09, 2017 12:59 am Post subject: |
|
|
okay thanks will try this
|
|
| Back to top |
|
 |
|