25.05.2012, 00:53
The dialog should be fine now. So I assume you just need this...
Change "/%s.txt" to your user account file type and location.
pawn Код:
stock USER_FILE(playerid)
{
new file[32], name[24];
GetPlayerName(playerid, name, 24);
format(file,sizeof(file), "/%s.txt", name); // Change //
return file;
}