-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
void CEsp::DrawChickenESP( )
{
for ( int i = 0; i < g_pEntList->GetHighestEntityIndex(); i++ )
{
if( i == g_pEngine->GetLocalPlayer() )
continue;
CBaseEntity* pEntity = g_pEntList->GetClientEntity(i);
if ( !pEntity )
continue;
if ( pEntity->IsDormant() )
continue;
const char* modelName = g_pModelInfo->GetModelName( pEntity->GetModel() );
if( !modelName ) continue;
if( strstr( modelName, "chicken" ) )
{
Vector min,max;
pEntity->GetRenderBounds( min, max );
g_pDebugOverlay->AddBoxOverlay( pEntity->GetAbsOrigin( ), min, max, pEntity->GetAbsAngles( ), rand()%255, rand()%255, rand()%255, 25, 0.05f );
}
}
}