Quote:
Originally Posted by PrO.GameR
You are not helping him get "alives" count, but Online counts, he simply wants to check how many players on server are alive, he is doing it wrong, and you are doing it worse
Buddy, you should make something like
PHP код:
new Alive[MAX_PLAYERS];
put these under mentioned callbacks:
PHP код:
OnPlayerConnect Alive[playerid]=0;
OnPlayerDisconnect Alive[playerid]=0;
OnPlayerDeath Alive[playerid]=0;
OnPlayerSpawn Alive[playerid]=1;
and under your GetPlayersOnServer
PHP код:
GetPlayersOnServer()
{
new count;
Alives=0;
for(new x=0; x< MAX_PLAYERS; x++)
{
if(IsPlayerConnected(x)))
{
count++;
if(Alive[playerid]==1) Alives++;
}
}
return count;
}
And now it does what you want it to do, count alives in the server while counting onlines too
|
Number of alive players will be the same as online players.