Created
November 19, 2023 14:14
-
-
Save eybisi/28f05a3d0bfd7d12de3c5c947ea0e80f to your computer and use it in GitHub Desktop.
snippets for il2cpp-bridge-frida
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (const field of ItemBase.fields) { | |
if (field.isStatic) continue; | |
try{ | |
console.log(`${field} ${field.name} \x1b[32m${item_data.field(field.name).value}\x1B[0m`); | |
} catch (error) { | |
console.log(`${field} \x1b[31m${error}\x1B[0m`); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment