13.12.2013, 08:49
Well yes, but the difference is that most of the file functions are geared to reading separate lines. For example:
That would completely eliminate the need for split, strmid and who know whatever else.
pawn Код:
new count;
while(fread(file, PlayerInfo[playerid][pFriends][count], MAX_PLAYER_NAME) && count < c)
{
count++;
}


