SA-MP Forums Archive
Dialog wont showup if i put strings in the dialog description help me - 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: Dialog wont showup if i put strings in the dialog description help me (/showthread.php?tid=403495)



Dialog wont showup if i put strings in the dialog description help me - Safe - 30.12.2012

pawn Code:
public OnPlayerConnect(playerid)
{
    if(!fexist(pFiles(playerid)))
    {
        SendClientMessage(playerid,C_WHITE,"Fole");
        new r_string[500];
        format(r_string,sizeof(r_string),"____________| SAFE | Administration System |____________/n Good Day %s it seems that you are not registred /n please type your password bellow to register",pName(playerid));
        ShowPlayerDialog(playerid,D_REGISTER,INPUT,"Safe | Administration System |",r_string,"Proceed","Cancel");
       
    }
    else
    {
        INI_ParseFile(pFiles(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
    }
    return 1;
}



Re: Dialog wont showup if i put strings in the dialog description help me - Virus. - 30.12.2012

Show your OnDialogeResponse please.