Thanks for the reply.
I've read about storing level/stage number but this won't be possible in my situation because a level/stage system goes against the design of the game I'm making. It's more Sim-City and less Mario in that sense.
I suppose I can experiment with the WebStoage plugin to see how much data I can get saved before it starts hurting performance.
My game is essentially a tile based puzzle game and I need to store data such as XY Loc, tile type, and other values for every tile in the layout so that it can all be restored upon a load.
Preferably I'd like to keep all this data confined to an array. Would it be possible to quickly save/store an entire array's worth of data using WebStorage? Then upon load I make the game update the array with all the values that have been saved/stored?
Also, Is there a way to have an array load pre-defined data from a spreadsheet or TXT file?
Another question, what is the difference between the "WebStorage" and the "Storage" plugin (Storage Plugin)?
Sorry for all the questions. I'm still pretty new at Construct but am really enjoying it.