feat(Pointers): NOP incompatible version check from net array

This commit is contained in:
Yimura 2021-05-19 00:23:04 +02:00
parent 95b0419ed4
commit 969a438274

View File

@ -106,6 +106,13 @@ namespace big
} }
}); });
main_batch.add("Incompatible Version", "48 89 5C 24 ? 55 56 57 41 54 41 55 41 56 41 57 48 8D AC 24 ? ? ? ? 48 81 EC ? ? ? ? 33 FF 48 8B DA", [this](memory::handle ptr)
{
uint8_t* incompatible_version = ptr.add(0x365).as<uint8_t*>();
memset(incompatible_version, 0x90, 0x1E);
});
main_batch.run(memory::module(nullptr)); main_batch.run(memory::module(nullptr));
m_hwnd = FindWindowW(L"grcWindow", nullptr); m_hwnd = FindWindowW(L"grcWindow", nullptr);