How do I code save game data?
-
GML (Game Maker Language) example is
[code]
ini_open("Samus' Quest 1.ini")
ini_write_real("Samus.hp","Samus.hp","Samus.hp");
ini_close();
[/code]
How do I code saving variables and others please? Thank you. -
Currently only a single simple text files is supported.
You can download an example of storing an array to the text file and reading it back using code: NXKZ5XMMNN
-
Thank you very much