14.01.2015, 01:23
Did you read the Whirlpool thread at all?
https://sampforum.blast.hk/showthread.php?tid=65290
If nobody answers your thread, it's probably because you're asking questions that you can answer yourself.
https://sampforum.blast.hk/showthread.php?tid=65290
If nobody answers your thread, it's probably because you're asking questions that you can answer yourself.
pawn Код:
if(!strlen(inputtext)) return ShowPlayerDialog(playerid, DIALOG_REGISTER_1, DIALOG_STYLE_INPUT, ""COLOR_WHITE"Registering...", ""COLOR_RED"You have entered an invalid password.\n"COLOR_WHITE"Type your password below to register a new account.", "Register", "Quit");
new buf[129];
WP_Hash(buf, sizeof(buf), inputtext);
new INI:File = INI_Open(UserPath(playerid));
INI_SetTag(File, "data");
INI_WriteString(File, "Password", buf);
INI_WriteInt(File, "Money", 0);
INI_WriteInt(File, "Admin", 0);
INI_WriteInt(File, "Gender", 0);
INI_WriteInt(File, "Age", 0);
INI_Close(File);