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 


get .NET method list for codefilter

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
Dark Byte
Site Admin
Reputation: 470

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

PostPosted: Sat Sep 02, 2023 11:44 pm    Post subject: get .NET method list for codefilter Reply with quote

Lets say you wish to get the list of all methods of Terraria for the codefilter
You can use this code for that:
Code:

waitforDotNet()
local d=getDotNetDataCollector()
modulehandle=d.enumModuleList(d.enumDomains()[1].DomainHandle)[1].ModuleHandle --adjust this if the code isn't in the main module, or loop this whole thing as well
local classlist=d.enumTypeDefs(modulehandle)

local addresslist=createStringList()

for i=1,#classlist do
  local methods=d.getTypeDefMethods(modulehandle, classlist[i].TypeDefToken)
  for j=1,#methods do
    if methods[j].NativeCode and methods[j].NativeCode~=0 then
      addresslist.add(string.format('%x', methods[j].NativeCode))
    end
  end
end

if addresslist.Count==0 then
  addresslist.destroy()
  error('No addresses found')
end

sd=createSaveDialog()
sd.defaultExt='.txt'
sd.Filter=[[Text File (*.txt)|*.txt]]
if sd.Execute() then
  addresslist.saveToFile(sd.FileName)
end
sd.destroy()
addresslist.destroy()

_________________
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 Lua Scripting 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