SA-MP Forums Archive
Players online with dialog - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Players online with dialog (/showthread.php?tid=527039)



Players online with dialog - friezakinght - 20.07.2014

Hi guys, how can I count players online and display them in a dialog style list? Please help I will +rep


Re: Players online with dialog - IceBilizard - 20.07.2014

try

pawn Код:
new string[50], name[32];
new count=0;
for(new i=0; i<MAX_PLAYERS; i++)
{
    if(IsPlayerConnected(i))
    {
        GetPlayerName(i, name, sizeof(name));
        format(string,sizeof(string),"%s\n",name);
        count++;
    }
}
ShowPlayerDialog(playerid,723,DIALOG_STYLE_LIST,"online players",string,"Ok", "Cancel");



Re: Players online with dialog - friezakinght - 20.07.2014

Ty, +rep