Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
в IEngine.h NetChannel* GetNetChannel().
И меняй на это:
NetChannel* GetNetChannel()
{
auto client_state = *reinterpret_cast<uintptr_t*>(uintptr_t(GetModuleHandle("engine.dll")) + 0x57E854);
if (!client_state)
return nullptr;
auto net_channel = *reinterpret_cast<uintptr_t*>(client_state + 0x9C);
return reinterpret_cast<NetChannel*>(net_channel);
}
в IEngine.h NetChannel* GetNetChannel().
И меняй на это:
NetChannel* GetNetChannel()
{
auto client_state = *reinterpret_cast<uintptr_t*>(uintptr_t(GetModuleHandle("engine.dll")) + 0x57E854);
if (!client_state)
return nullptr;
auto net_channel = *reinterpret_cast<uintptr_t*>(client_state + 0x9C);
return reinterpret_cast<NetChannel*>(net_channel);
}