Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


AOB Scan on module in Lua?

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine
View previous topic :: View next topic  
Author Message
Frouk
Grandmaster Cheater
Reputation: 5

Joined: 22 Jun 2021
Posts: 508

PostPosted: Sat Jun 07, 2025 12:28 pm    Post subject: AOB Scan on module in Lua? Reply with quote

After searching it through lua documentation, I haven't found any aob scan on module that would return a list of strings in Lua
There's some functions for AOBScanning but all they do either scan on all modules, only get the first result from one module, or just get a first result from AOB
Back to top
View user's profile Send private message
Dark Byte
Site Admin
Reputation: 470

Joined: 09 May 2003
Posts: 25764
Location: The netherlands

PostPosted: Sun Jun 08, 2025 3:39 am    Post subject: Reply with quote

Code:

function aobscanmodule(aob,modulename)
  local ms=createMemScan()
  ms.Scanvalue='90 90 90'
  ms.Hexadecimal=true
  ms.VariableType=vtByteArray
  ms.ScanExecutable='scanInclude'  --assuming you're looking for executable code

  ms.Startaddress=getAddress(modulename)
  ms.Stopaddress=ms.Startaddress+getModuleSize(modulename)


  ms.scan()
  ms.waitTillDone()
  local fl=createFoundList(ms)
  fl.initialize()

  local r={}
  for i=0,fl.Count-1 do
    table.insert(r, fl[i])
  end

  fl.destroy()
  ms.destroy()
  return r
end

return aobscanmodule('90 90 90','tutorial-x86_64.exe')

_________________
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
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
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


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites