Hey Liebes Comm,
Ich wollte eigentlich mein /afklist heute Fixen aber es geht nicht,
Wenn man Ingame /afklist macht steht da man "Niemand ist Afk" obwohl jemand Afk ist
kann mir das jemand Fixen ?
if(!strcmp(cmdtext, "/afklist", true))
{
new count = 0, stri[1024], pName[MAX_PLAYER_NAME];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(GetPlayerName(i, pName,sizeof(pName)))
{
if(SpielerIstAFK[i] == true)
{
format(stri, sizeof(stri), "%s[%d]{99EE22}%s\n", stri, i, pName);
count++;
}
}
if(count == 0)
{
SendClientMessage(playerid, COLOR_GRAU, "Niemand befindet sich im AFK-Modus!");
}else ShowPlayerDialog(playerid,DIALOG_AFKLIST,DIALOG_STYLE_LIST,"Folgende Spieler befinden sich im AFK-Modus:",stri,"Schließen","");
return 1;
}
}