ID:166725
 
What do I have to type in to make a file save on the client's computer?On The local disk.For example C://Program Files/Newgame/Blahlah.txt
You probably should have added this question to your other post. client.Export() can be used to save files on the user's computer.
In response to PirateHead
Can you give me a piece of coding to example client.Export() ?
In response to Metamorphman
Sure.

proc/export(client/c)
var/t = file("any file.txt")
t << "any text"
c.Export(t)
In response to PirateHead
Ok I understand that.What would I have to do so it would save to a specific directory on the harddrive?
In response to Metamorphman
You aren't given any specific control over your players' filesystems, since it could be a possible security risk. You'll need to just make do with the one space you've got.
In response to PirateHead
shoot.Are there any programs that would generate a custom made installation?