feat(Pointers): Added blame explode

This commit is contained in:
Yimura 2021-10-15 11:26:52 +02:00
parent f1332fbc06
commit 3a52c6aa2f
2 changed files with 7 additions and 0 deletions

View File

@ -203,6 +203,12 @@ namespace big
{
m_report_myself_sender = ptr.as<decltype(m_report_myself_sender)>();
});
// Blame Explode
main_batch.add("BE", "0F 85 ? ? ? ? 48 8B 05 ? ? ? ? 48 8B 48 08 E8", [this](memory::handle ptr)
{
m_blame_explode = ptr.as<decltype(m_blame_explode)>();
});
main_batch.run(memory::module(nullptr));

View File

@ -37,6 +37,7 @@ namespace big
IDXGISwapChain **m_swapchain{};
PVOID m_blame_explode;
PVOID m_model_spawn_bypass;
PVOID m_native_return;