Example Usage
int main() {
for(int i = 0; i < 30; ++i) {
if(i % 3 == 0 && i % 5 == 0) {
printf("fizzbuzz\n");
} else if(i % 3 == 0) {
printf("fizz\n");
} else if(i % 5 == 0) {
printf("buzz\n");
} else {
printf("%d\n", i);
}
}
}
See also
Zygisk-Il2CppDumper
Open Source
Using Zygisk to dump il2cpp data at runtime…
.NET-Deobfuscator
Open Source
Lists of .NET Deobfuscator and Unpacker (Open Source)…
.NET-Obfuscator
Open Source
Lists of .NET Obfuscator (Free, Freemium, Paid and Open Source )…
GH-Offset-Dumper
Free
Scan signatures and netvars. Dumps header files, cheat tables and ReClass files.…
toolkit
Free
The essential toolkit for reversing, malware analysis, and cracking…
AAIdrive
Open Source
Implementations of some Android Auto features as unofficial IDrive apps…