ID:166724
 
Say for example I run a game and I ask to download the game manual.It CREATES a txt on my computer.What will I have to do so that text is inputted into the .txt?
You can create text files like this:

var/txtfile = file("whatever.txt")
txtfile << "Some text"


Of course, you can call the var walnuts or foo or not_a_text_file_OH_PSYCH_exclamation_point or whatever you want.
In response to PirateHead
Thanks. :)