This is the AMP version of this page.
If you want to load the real page instead, click this text.

Tutorial monoString for unity Il2Cpp

Working il2cpp(mono) string for hacking unity il2cpp games.
Usage:
C++:
//Create
monoString *il2cpp_method = CreateMonoString("Through il2ccp_string_new", true); // true - il2cpp method
monoString *mono_method = CreateMonoString("Through CreateString", false); // Need offsets, false - mono method
monoString *edit_str = mono_method;
edit_str->set("Changed!");
//Output
LOGI("const char*: %s", from_const_char->get_const_char());
LOGI("std::string: %s", from_string->get_string().c_str());
LOGI("edit_str: %s", edit_str->get_const_char());;
GitHub link
 
Last edited: