-
Notifications
You must be signed in to change notification settings - Fork 47
API
Kruvcraft edited this page Apr 29, 2023
·
2 revisions
This Module has 6 functions
Il2cpp()
Il2cpp.FindMethods()
Il2cpp.FindClass()
Il2cpp.PatchesAddress()
Il2cpp.FindObject()
Il2cpp.FindFields()
Il2cpp.String.From()-
Il2cpp()- This function takes one argument, only a table. Without this function, the module will not work correctly. -
Il2cpp.FindMethods()- Searches for a method, or rather information on the method, by name or by offset, you can also send an address in memory to it. -
Il2cpp.FindClass()- Searches for a class by name or by memory address. -
Il2cpp.PatchesAddress()- PatchBytescodestoadd -
Il2cpp.FindObject()- Searches for an object by name or by class address, in memory. In some cases, the function may return an incorrect result for certain classes. For example, sometimes the garbage collector may not have time to remove an object from memory and then afake objectwill appear or for a turnover, the object may still benot implementedornot created. -
Il2cpp.FindFields()- Searches for a field, or rather information about the field, by name or by address in memory. -
Il2cpp.String.From()- If you pass a pointer to a string, this function will return you a table that has the necessary tools to work with utf16 encoded strings.