26.09.2013, 12:44
hi,
anybody know how to fix it pls
when enter the password does not create the file
thanks
anybody know how to fix it pls
when enter the password does not create the file
thanks
Код:
if(dialogid == 10 && response == 1) { new s[50], name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name, sizeof(name)); format(s, sizeof(s),"/Users/%s.sav", name); if(strlen(inputtext) == 0) { ShowPlayerDialog(playerid,10,DIALOG_STYLE_PASSWORD,"{FF0000}Register","{FF0000}You must enter a password!\n{FFFFFF}Enter your password","Register","Close"); } if (strlen(inputtext) > 0) { if(!fexist(s)) { dini_Create(s); dini_IntSet(s, "Password", udb_hash(inputtext)); gPlayerLogged[playerid] = 1; } } }