03.12.2011, 08:40
Hey. I have a self made register / login system with dialogs. The thing is, if I enter a wrong password in the dialog, it spawns my character at 0 0 0 coords ... But the dialog doesn't disappear. How can I make it that if I enter a wrong password, it won't spawn me ?
pawn Код:
public OnPlayerConnect(playerid)
{
if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadPassword_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, 2, DIALOG_STYLE_PASSWORD,""CWH"Login",""CWH"Introdu parola mai jos pentru a te loga.","Login","Quit");
}
else
{
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT,""CWH"Inregistrare...",""CWH"Introdu o parola mai jos pentru a-ti crea un account.","Inregistreaza","Iesi");
}
return 1;
}