AFKLIST
#2

pawn Код:
CMD:afklist(playerid,params[])
{
        new count = 0, string[4096], pName[MAX_PLAYER_NAME];

    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if (GetPlayerName(i, pName,sizeof(pName)))
        {
            if(PlayerIsAFK[i] == 1)
            {
                format(string, sizeof(string), "%sPlayer: {99EE22}%s, {992233}ID: {99DDDD}%d\n",
                string, pName, i);
                count++;
            }
        }
    }
    if (count == 0)
    {
        SendClientMessage(playerid, COLOR_BLUE, "No one AFK!");

    } else ShowPlayerDialog(playerid,837,DIALOG_STYLE_LIST,"AFK PLAYERS:",string,"OK","Cancel");
    return 1;
}
Reply


Messages In This Thread
AFKLIST - by wumpyc - 22.10.2011, 11:49
Re: AFKLIST - by KoczkaHUN - 22.10.2011, 11:52
Re: AFKLIST - by wumpyc - 22.10.2011, 14:29
Re: AFKLIST - by Rafiko - 22.10.2011, 14:29

Forum Jump:


Users browsing this thread: 1 Guest(s)