Dialog Problem
#1

Hello
I want to make /admins with dialogs
But i got some problems,with doing it
This is original /admins cmd wiht no dialogs
pawn Code:
dcmd_admins(playerid,params[])
{
    #pragma unused params
    new string[128],amt;
    string = "Admins: ";
    if(IsPlayerAdmin(playerid) || Variables[playerid][Level] > 12)
    {
        foreach(Player,i)
        {
            if(Variables[i][Level] < 12 && Variables[i][Level] > 0)
            {
                format(string,128,"%s  %s(%d)",string,RealName[i],Variables[i][Level]);
                amt++;
            }
        }
    }
    else
    {
        foreach(Player,i)
        {
            if(Variables[i][Level] < 12 && Variables[i][Level] > 0)
            {
                format(string,128,"%s  %s",string,RealName[i]);
                amt++;
            }
        }
    }
    if(amt > 0)return SendClientMessage(playerid,MAIN_COLOR_2,string);
    else return SendClientMessage(playerid,MAIN_COLOR_2,"No admins online.");
}
and i tried to make it with dialogs,but when i am typing /admins IG i am gettin only 1 admin line
pawn Code:
dcmd_admins(playerid,params[])
{
    #pragma unused params
    new string[256];
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(Variables[i][Level] >0 && Variables[i][Level] < 10)
        {
            format(string, sizeof(string), "{FF0000}ADMINISTRATOR: %s ID[%d]{15D4ED}[Level %d]\n", RealName[i],playerid, Variables[i][Level]);
            ShowPlayerDialog(playerid, 5591, 0, "{1B1BE0}Online Admins:", string, "Done", "");
        }
    }
    return 1;
}
Please help me
Reply


Messages In This Thread
Please help - by Hoss - 23.08.2011, 16:57
Re: Dialog Problem - by Jeffry - 23.08.2011, 17:08
Re: Dialog Problem - by Hiddos - 23.08.2011, 18:06
Re: Dialog Problem - by Jeffry - 23.08.2011, 18:12
AW: Dialog Problem - by Nero_3D - 23.08.2011, 19:35
Re: Dialog Problem - by PrawkC - 23.08.2011, 19:57
Re: Dialog Problem - by Hoss - 24.08.2011, 09:15
AW: Re: Dialog Problem - by Nero_3D - 24.08.2011, 10:34
Re: Dialog Problem - by Intoxicated - 24.08.2011, 10:39
Re: Dialog Problem - by iPLEOMAX - 24.08.2011, 11:00

Forum Jump:


Users browsing this thread: 1 Guest(s)