SA-MP Forums Archive
How do I Dialog login with - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How do I Dialog login with (/showthread.php?tid=253083)



How do I Dialog login with - @Sakura - 04.05.2011

How do I Dialog login with


Re: How do I Dialog login with - park4bmx - 04.05.2011

doesnt make any sense


Re: How do I Dialog login with - Sascha - 04.05.2011

like that:
when the player connects:
pawn Код:
ShowPlayerDialog(playerid, dialogid, DIALOG_STYLE_INPUT, "heading", "text", "OK", "Cancel");
and ondialogresponse
pawn Код:
if(dialogid == yourid)
{
  if(response == 1)
  {
    if(!strcmp(inputtext, actualpassword, true))
    {
      Log In
    }
  }
}
before trying yourself on a login system, learn the basics of dialogs and scripting^^