27.08.2013, 22:01
Your registration system needs something similar to this.
That will store the users password in a string called 'hashPassword'.
Then just use your saving system to store the players password in a file.
Using Y_INI's.
Is that what you wanted?
pawn Код:
new hashPassword[129];
WP_Hash(hashPassword, 129, inputtext);
Then just use your saving system to store the players password in a file.
Using Y_INI's.
pawn Код:
INI_WriteString(File,"Password",hashPassword);

