BEHOLD! now, how do you load a save file from a text file? i want to be able to load like in pokemon, where you only have one file and new game. I currently have no idea how to show and load a save file
The easiest way to do this would be to save your values in a DAT file. However, you can only put numerical values into these files. To save values to a DAT file, make an array with as many dimensions as you need, and store save file variables to its individual elements. Then you tell it to save the data with 'SAVE"DAT:nameOfFile",nameOfArray'
This will store the data you saved to the array. Then you just need to declare your variables with what you saved. The elements of the array will be in the same way they were when you saved them too, so don't worry about that :)