Hello, I've a problem, my code make a file, but when I want to write in this file, it doesn't make this. Can you help me please ?
This is my code :
`Type file name
input "File name : ", SceneName$
`Create file and erase old
make file SceneName$+".sav"
make directory "Map saved"
if file exist("Map saved/"+SceneName$+".sav") then delete file "Map saved/"+SceneName$+".sav"
move file SceneName$+".sav", "Map saved/"+SceneName$+".sav"
open to write 1, "Map saved/"+SceneName$+".sav"
`Information to write
write string 1, "This is a test"
close file 1
Eternal suffering ...
I'm french