dubdive
Следопыт
- Сообщения
- 88
- Реакции
- 6
чот не выходит у меня радар хак из видоса дарвина средствами внутренней библиотеки. крашит.
C++:
if (radarhck)
{
uint32_t MyTeam = *(uint32_t*)(localPlayer + m_iTeamNum);
for (int x = 0; x < 32; x++)
{
uintptr_t Entity = *(uintptr_t*)(gameModule + dwEntityList + x * 0x10);
uint32_t EntityTeam = *(uint32_t*)(Entity + m_iTeamNum);
uintptr_t EntityDormant = *(uintptr_t*)(Entity + m_bDormant);
if (EntityTeam != MyTeam && !EntityDormant)
{
*(BOOL*)(Entity + m_bSpotted) = TRUE;
}
}
}