When i try to save it opens a window that says:
Apologies! An error has occurred. You may be able to continue, bus some parts may not work propely.
Error: localStorage quota exceeded.
Stack Trace:
Error: Failed to execute 'setItem' on 'Storage': Setting the value of 'secretary.saves' exceeded the quota.
The game uses the Local Storage area of your web-browser to store both your Progress and the Saves it makes. Your web-browser's Local Storage cache has a maximum size limit of around 5-10 MB's (1) per 'domain', and unfortunately a single 'domain' is shared between
all locally opened HTML files. This behaviour is controlled by the web-browser and not the developer.
eg. all Twine based stories/games share the same 'domain'
The error message you are seeing is indicating that the Local Storage area associated with this shared 'domain' is full. You would need to delete data from that area, and there are a limited number of ways you can do this:
a. You can 'flush' the Local Storage cache, the same way you do with Cookies, which will result in the lost of
ALL Saves for
ALL Twine based games you play.
b. You can open each/any of the Twine based games you play and manually delete any Saves you don't need/want.
c. You can use the Web Developer Tools of your web-browser to manual delete entries from the
file:// protocol related area of Local Storage.
(1) the actual maximum limit depends on things like: which brand of web-browser you are using; the device type you are using the web-browser on; etc..