Quote:
Originally Posted by Reklez
i see why.
pawn Код:
INI_WriteString(File, string, inputtext);
STRING = RESULT.
You could just do this:
pawn Код:
new File:Creator = fopen("Commands/Commands.txt", io_append); format(string, sizeof(string), "CMD:%s(playerid, params[])\r\n", inputtext); fwrite(Creator, string); fclose(Creator);
|
Ahh. Thanks. Ive ALWAYS had a problem with file saving. So im forcing myself to learn it better.