06.03.2016, 00:56
I notice that you are using "DIALOG_STYLE_INPUT" instead of "DIALOG_STYLE_PASSWORD" and why are you using colors in dialog.
PHP код:
public OnPlayerConnect(playerid)
{
if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD, "Login", "Type your password below to login.", "Login", "Quit");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "Registering...", "Type your password below to register a new account.", "Register", "Quit");
}
return 1;
}