Posted: Sat Oct 26, 2019 6:26 pm Post subject: AOB is found at this address script ?
Is is possible to make a LUA script that can search for an AOB, then locate where in memory that AOB was found then write it in a message-box displaying it's memory location where it can be copied, or back into the description as it's value?
I use this to find AoB addresses. This script wont work if there are more than 1 results from the scan aka AoB.Count > 1 and AoB[0] represents the first address from the scan. If you wanted to find and change 2 addresses you would do AoB[1] for the 2nd address etc.
Code:
local AoB = AOBScan("42 00 00 00 1E 01 00 00 53 30 30")
if (AoB == nil or AoB.Count > 1) then --> Ends function earlier if the AoB was not found, or if multiply aobs were found.
return
end
local AoBAddress = AoB[0]
As for displaying it in a message box I guess you would print it so
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum