If anyone has trouble saving, I've figured out how to fix it.
Go to the directory to where the game is installed.
Go to Data > Scripts > UniverseState.lua
Open the file with Notepad or Notepad++
Search for the following string: Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData and then replace it with Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData, true
The game should now start saving your progress automatically. Note: This cannot restore previous games. Those games are lost forever, and you unfortunately have to restart from the beginning.
Go to the directory to where the game is installed.
Go to Data > Scripts > UniverseState.lua
Open the file with Notepad or Notepad++
Search for the following string: Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData and then replace it with Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData, true
The game should now start saving your progress automatically. Note: This cannot restore previous games. Those games are lost forever, and you unfortunately have to restart from the beginning.
Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData
and then replace it with
Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData, true
Note: This cannot restore previous games. Those games are lost forever, and you unfortunately have to restart from the beginning.
Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData
and then replace it with
Storage.saveData('Saves/' .. self.saveName .. '.sav', saveData, true
Note: This cannot restore previous games. Those games are lost forever, and you unfortunately have to restart from the beginning.