PDA

Просмотр полной версии : [mod_sa] count streamed players


Uztor
15.11.2014, 00:30
hello, how can I count the streamed players?

NarutoUA
15.11.2014, 01:52
hello, how can I count the streamed players?


StreamedCount=0;

while (true

{

for (int i = 0; i iIsListed!= 1)

continue;

if (g_Players->pRemote_Player== NULL)

continue;

StreamedCount++;

}

}

Uztor
15.11.2014, 02:02
Thank you.