


void DrawChams(ChamStruct COLOR)
{
for (int i = 0; i <= 64; i++)
{
int Chplyr = realtime.Read<int>(Client + EntityList + (i * 0x10));
int ChCurPl = realtime.Read< int >(Chplyr + m_iTeamNum);
if (ChCurPl != InMyTeam)
{
realtime.Edit((Chplyr + m_clrRender), Color(0, 0, 0, 255)); /* use color.h of the source sdk */
}
}
}


