02.04.2013, 14:56
I want to use this loop :for(new i=0; i<MAX_PLAYERS; i++) but i want to make X loops where X is the connected players number and not the MAX_PLAYERS value, but not with this format:
My question is, is there any format to enter instead of "MAX_PLAYERS"?
pawn Код:
for(new i=0; i<MAX_PLAYERS; i++)
if (IsPlayerConnected(i))
{
}