Hallo. Wie kann ich etwas z.B. einen String in eine .cfg datei speichern ? Ich hab es so probiert aber es wird nicht gespeichert:
public SaveInfos(string[])
{
new Textt[512];
format(Textt, sizeof(Textt), "%s\r\n",string);
new File:hFile;
hFile = fopen("informations.cfg", io_read);
fwrite(hFile, Textt);
fclose(hFile);
}