Ich habe das problem, das wenn ich eingebe /afklist nur ein spieler angezeigt wird.
if(strcmp(cmdtext, "/afklist", true) == 0)
{
new i = 0, aname[256], string[64];
for(; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(Player[i][AFK] == 1)
{
GetPlayerName(i, aname, sizeof(aname));
format(string, 256, "%s", aname);
ShowPlayerDialog(playerid, DIALOG_AFKLIST, DIALOG_STYLE_MSGBOX, "AFK Spieler",string,"Schließen", ""); // und hier ist die Farbe (habe es Rot gemacht :))
}
else
{
SendClientMessage(playerid,0x0000FFFF,"Keine Spieler AFK.");
return 1;
}
}
}
return 1;
}