26.10.2014, 22:22
pawn Код:
for(new i; i < MAX_PLAYERS; i++)
{
new string[500];
format(string, 500, "%s%s (ID: %d) - Kills %d - Deaths X\n", string, GetName(i), i, PlayerInfo[i][pRKills]);
ShowPlayerDialog(i, DIALOG_ROUNDEND, DIALOG_STYLE_LIST, "Round end - Player stats", string, "Continue", "");
PlayerInfo[i][pRKills] = 0;
}
So, if there are 2 people in the server, for example, iPrivate and Gregory, it will show me name, while for Gregory, it will show his name.
I hope you understand, thanks,