25.05.2012, 12:59
That's because having the folder created or not has nothing to do with the errors. First, create a folder inside the scriptfiles folder called User_Accounts
Then add this at the very bottom of your script...
If you have any new errors after this, post them here.
Then add this at the very bottom of your script...
pawn Код:
stock USER_FILE(playerid)
{
new file[32], name[24];
GetPlayerName(playerid, name, 24);
format(file,sizeof(file), "/User_Accounts/%s.txt", name);
return file;
}