I am currently developing a adventure (think Monkey Island) game in Flash 5. The thing is that I am not sure if the game will end up being short and convient enough to play in one sitting.
My question, then, is this: assuming that the game is run on the player's computer as an .exe or an .swf accessed through .html on the player's computer, is there a way for Flash to read and write saved game files?
hi,
in flash 5, i think that you could save variables using the dasboardSave function: http://tutorials.flashguru.co.uk/?tid=000041
and to load variables, use the loadVariables function..
If you dont have to have items, then this can be simple.
You give the person a "passcode" that takes them to the correct scene in your flash program. A passcode of "L3D2" could be a code for Location 3 Day 2 of the game.
Even more simply you could just go by flash scene. A passcode of "beach5" could be used to take the person to the scene beach5.
If the character has to carry items this approach could be more difficult... you dont want to have 100 character passcodes to identify all the items.
But it is a simple technique that works for some cases.