17.09.2012, 15:58
Quote:
|
Are you sure there is file which you want to open? fread( EDIT: not fread but io_read in fopen) crashes the server if there is no file.
|
Код:
new File: UserFile = fopen(string2, io_read);
if ( UserFile )
{
.... and at the end
}//end while
fclose(UserFile);//close the file after everything has been read in the while
}
else
{
////new loginstring[512];
////new loginname[64];
////GetPlayerName(playerid,loginname,sizeof(loginname));
////format(loginstring,sizeof(loginstring),"GRESKA\nVnesete tocna lozinka:",loginname);
////ShowPlayerDialog(playerid,12347,DIALOG_STYLE_PASSWORD,"Login",loginstring,"Logiranje","Izlez");
////fclose(UserFile);
SCM(playerid, UC, "GRESKA:{FFFFFF}Vnesovte pogresna lozinka!");
gPlayerLogTries[playerid] += 1;
if(gPlayerLogTries[playerid] == 6) { Kick(playerid); }
return 1;
}
PlayerInfo[playerid][pAdjustable] = 0;
ResetPlayerMoney(playerid);
...........


