24.06.2013, 14:47
so you use the file functions, you first need to create the Bug.txt file in scriptfiles then you replace SaveInFile with:
and you do the same with the sugestion, create Suggestions.txt and replace SaveInFile:
hope it helps, i never used these functions, i use Y_Ini for this...
Код:
new File:Bug = fopen("/Bugs.txt", mode = io_readwrite) if(Bug) { fwrite(Bug, bug) fclose(Bug) }
Код:
new File:Suggestion = fopen("/Suggestions.txt", mode = io_readwrite) if(Suggestion) { fwrite(Suggestion, sug) fclose(Suggestion) }