Players Faction Online
#7

Quote:
Originally Posted by Steveproxy5
Посмотреть сообщение
I want that it opens a menu (ShowPlayerDialog) with options, if i select an option for example Police it shows me the members online: [number] and under the names
So?

pawn Код:
#define ONLINE_FACTS 3246

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    switch(dialogid)
    {
        case ONLINE_FACTS:
        {
            if(response)
            {
                new string[16], name[24], count;
                switch(listitem)
                {
                    case 0:
                    {
                        foreach(Player, i)
                        {
                            if(PlayerInfo[i][Faction] == listitem+1 /*or FACTIONID */ && IsPlayerConnected(i)) count++;
                        }
                        format(string, sizeof(string), "---- %d members actives. ----", count);
                        SendClientMessage(playerid, -1, string);
                        foreach(Player,i)
                        {
                            if(PlayerInfo[i][Faction] == listitem+1 /*or FACTIONID */ && IsPlayerConnected(i))
                            {
                                GetPlayerName(i, name, 24), format(string, sizeof(string), "%d. %s", i, name);
                                if(strlen(string) > 0) SendClientMessage(playerid, -1, string);
                            }
                        }
                    }
                    //
                }
            }
        }
    }
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/fazioni", cmdtext, true, 10) == 0)
    {
        ShowPlayerDialog(playerid, ONLINE_FACTS, DIALOG_STYLE_LIST, "Online members of factions", "Polices\n", "See", "Back");
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
Players Faction Online - by Steveproxy5 - 02.08.2014, 21:01
Re: Players Faction Online - by babecka - 02.08.2014, 21:03
Re: Players Faction Online - by Steveproxy5 - 02.08.2014, 21:10
Re: Players Faction Online - by Abagail - 02.08.2014, 21:13
Respuesta: Re: Players Faction Online - by Zume - 02.08.2014, 21:24
Re: Players Faction Online - by Steveproxy5 - 02.08.2014, 21:29
Respuesta: Re: Players Faction Online - by Zume - 02.08.2014, 21:40
Re: Players Faction Online - by Steveproxy5 - 02.08.2014, 22:11

Forum Jump:


Users browsing this thread: 1 Guest(s)