-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Put it in frame_render_start
Код:
for (int i = 1; i < SourceEngine::Interfaces::Engine()->GetMaxClients(); i++)
{
if (i == SourceEngine::Interfaces::Engine()->GetLocalPlayer()) continue;
auto pCurEntity = static_cast<C_CSPlayer*>(Interfaces::EntityList()->GetClientEntity(i));
if (!pCurEntity) continue;
*(int*)((uintptr_t)pCurEntity + 0xA30) = Interfaces::GlobalVars()->framecount; //we'll skip occlusion checks now
*(int*)((uintptr_t)pCurEntity + 0xA28) = 0;//clear occlusion flags
}