11.06.2018, 22:07
No!!!
Do not show them password in plain text in message! Use dialog! because messages are logged.
You can do it like:
And use Whirlpool hash
Do not show them password in plain text in message! Use dialog! because messages are logged.
You can do it like:
PHP код:
RegisterDialog()
{
new wp_pass[129];
WP_Hash(inputtext, wp_pass, sizeof wp_pass);
format(string, sizeof string, "Your account has been successfully created. Password is: %s.", inputtext);
ShowPlayerDialog(playerid, 0, ...);
}