17.11.2009, 12:56
created by me 
Israel SA-MP Team

pawn Код:
stock GetNames(...) {
new names[29], pnames[MAX_PLAYER_NAME], num;
for(new i; i<numargs(); ++i) if(IsPlayerConnected(getarg(i))) {
GetPlayerName(getarg(i), pnames, MAX_PLAYER_NAME);
num++;
format(names, sizeof(names), "%s%d. %s\n", names, num, pnames);
}
return names;
}