It's would be really good for us, to have a WriteFile function to be able to print any raw data we want inside a file.
Currently it's only possible to read raw data but not write raw data. I see something like this :
/** Writes raw data from file. \param value data \param length Length of value in bytes \returns false if write failed */ proto bool WriteFile(FileHandle file, void value, int length);
That's could be really useful to write NUL char into a file, and be able to save an image from enscript side. So I can share some images between players from in-game, don't need any 3rd application.