int ApexLegends::GetSpectatorsCount(uintptr_t pLocalPlayer)
{
if (!pLocalPlayer)
return 0;
int count = 0;
const int maxEntities = 61;
uintptr_t observerList = read<uintptr_t>(g_Base + 0x612e688 + 0x20C8 ); // Off::OBSERVER_LIST or without 0x20C8
if (!observerList)...